info.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <template>
  2. <view >
  3. <image mode="widthFix" src="/static/wd_bg_login.jpg" class="login_full_img"></image>
  4. <u-navbar title="我的资料" :border-bottom="false" background="{ background: '#ffffff',opacity:0.4; }" title-color="#ffffff" back-icon-color="#ffffff">
  5. </u-navbar>
  6. <view class="loginBox">
  7. <view style="display: flex;height: 160rpx;justify-content: center;" >
  8. <view style="text-align: center;">
  9. <image src="https://file-dev.xyyxt.net/oss/images/avatar/20210623/1624414559368_44562477.png" class="avatar"></image>
  10. <view class="nick">倪虹洁</view>
  11. <view>
  12. <view class="item">
  13. <view>我的昵称</view>
  14. <view>倪虹洁<u-icon name="arrow-right" color="#999999" size="28"></u-icon></view>
  15. </view>
  16. <view class="item">
  17. <view>性别</view>
  18. <view>请选择性别<u-icon name="arrow-right" color="#999999" size="28"></u-icon></view>
  19. </view>
  20. <view class="item">
  21. <view>年龄</view>
  22. <view>请填写年龄<u-icon name="arrow-right" color="#999999" size="28"></u-icon></view>
  23. </view>
  24. <view class="item">
  25. <view>关联学员身份</view>
  26. <view>012345678987654321<u-icon name="arrow-right" color="#999999" size="28"></u-icon></view>
  27. </view>
  28. <view class="item">
  29. <view>所在城市</view>
  30. <view>广东省广州市天河区<u-icon name="arrow-right" color="#999999" size="28"></u-icon></view>
  31. </view>
  32. <view class="item">
  33. <view>手机号码</view>
  34. <view>13800138000<u-icon name="arrow-right" color="#999999" size="28"></u-icon></view>
  35. </view>
  36. <view class="item">
  37. <view>微信绑定</view>
  38. <view>nihongjiewechat<u-icon name="arrow-right" color="#999999" size="28"></u-icon></view>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import {mapGetters} from 'vuex';
  48. export default {
  49. data() {
  50. return {
  51. };
  52. },
  53. onReady() {
  54. },
  55. onLoad(option) {
  56. },
  57. methods: {
  58. }
  59. };
  60. </script>
  61. <style >
  62. page{
  63. background-color: #F0F1F5;
  64. }
  65. </style>
  66. <style scope>
  67. .item{
  68. width: 686rpx;
  69. height: 80rpx;
  70. background: #FFFFFF;
  71. border-radius: 24rpx;
  72. display: flex;
  73. color: #666666;
  74. align-items: center;
  75. justify-content: space-between;
  76. padding: 0 20rpx;
  77. margin-top: 30rpx;
  78. }
  79. .nick{
  80. font-size: 36rpx;
  81. font-weight: bold;
  82. color: #007AFF;
  83. margin-top: 20rpx;
  84. }
  85. .loginBox{
  86. position: relative;
  87. top: -108px;
  88. }
  89. .avatar{
  90. width: 80px;
  91. height: 80px;
  92. }
  93. .login_full_img {
  94. display: block;
  95. width: 100%;
  96. height: 280rpx !important;
  97. z-index: -999;
  98. top: 0;
  99. }
  100. .full_img {
  101. display: block;
  102. width: 100%;
  103. z-index: -999;
  104. top: 0;
  105. }
  106. .loginBtn{
  107. width: 526rpx;
  108. height: 80rpx;
  109. background: linear-gradient(90deg, #015EEA, #00C0FA);
  110. box-shadow: 0rpx 10rpx 16rpx 4rpx rgba(1, 99, 235, 0.04);
  111. border-radius: 40rpx;
  112. color: #FFFFFF;
  113. line-height: 80rpx;
  114. margin: 0 auto;
  115. margin-top: 50rpx;
  116. }
  117. </style>