mine.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view class="page-mine" :style="{'backgroundImage': 'url('+bg+')'}">
  3. <view class="status_bar"></view>
  4. <view class="user-info">
  5. <view class="title">个人中心</view>
  6. <div class="user">
  7. <img class="head" src="./image/head.png" alt="">
  8. <text class="name">李飞翔</text>
  9. </div>
  10. </view>
  11. <button type="default" class="btn-submit">退出登陆</button>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. bg:require('./image/bg.png')
  19. }
  20. },
  21. methods: {
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .page-mine{
  27. background-size: 100% 504rpx;
  28. background-repeat: no-repeat;
  29. .user-info{
  30. padding-left:30upx;
  31. .user{
  32. display: flex;
  33. align-items: center;
  34. padding:106upx 0 140upx;
  35. .head{
  36. display: block;
  37. width: 112upx;
  38. height: 112upx;
  39. }
  40. .name{
  41. font-family: 'Abhaya Libre';
  42. font-style: normal;
  43. font-weight: 700;
  44. font-size: 38rpx;
  45. line-height: 54upx;
  46. color: #151515;
  47. padding-left: 30upx;
  48. }
  49. }
  50. }
  51. .title{
  52. font-family: 'Abhaya Libre';
  53. font-style: normal;
  54. font-weight: 700;
  55. font-size: 34upx;
  56. line-height: 40upx;
  57. color: #151515;
  58. }
  59. .btn-submit{
  60. width: 654upx;
  61. height: 88upx;
  62. font-family: 'Abhaya Libre';
  63. font-style: normal;
  64. font-weight: 400;
  65. font-size: 32upx;
  66. line-height: 88upx;
  67. text-align: center;
  68. color: #999999;
  69. background: #F2F2F2;
  70. border-radius: 4px;
  71. text-align: center;
  72. margin-top: 48vh;
  73. }
  74. }
  75. </style>