| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <view class="page-mine" :style="{'backgroundImage': 'url('+bg+')'}">
- <view class="status_bar"></view>
- <view class="user-info">
- <view class="title">个人中心</view>
- <div class="user">
- <img class="head" src="./image/head.png" alt="">
- <text class="name">李飞翔</text>
- </div>
- </view>
- <button type="default" class="btn-submit">退出登陆</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- bg:require('./image/bg.png')
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .page-mine{
- background-size: 100% 504rpx;
- background-repeat: no-repeat;
- .user-info{
- padding-left:30upx;
- .user{
- display: flex;
- align-items: center;
- padding:106upx 0 140upx;
- .head{
- display: block;
- width: 112upx;
- height: 112upx;
- }
- .name{
- font-family: 'Abhaya Libre';
- font-style: normal;
- font-weight: 700;
- font-size: 38rpx;
- line-height: 54upx;
- color: #151515;
- padding-left: 30upx;
- }
- }
- }
- .title{
- font-family: 'Abhaya Libre';
- font-style: normal;
- font-weight: 700;
- font-size: 34upx;
- line-height: 40upx;
- color: #151515;
- }
- .btn-submit{
- width: 654upx;
- height: 88upx;
- font-family: 'Abhaya Libre';
- font-style: normal;
- font-weight: 400;
- font-size: 32upx;
- line-height: 88upx;
- text-align: center;
- color: #999999;
- background: #F2F2F2;
- border-radius: 4px;
- text-align: center;
- margin-top: 48vh;
- }
- }
- </style>
|