account_info.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <template>
  2. <view class="content">
  3. <view class="cell-group">
  4. <view class="hflex acenter jbetween cell">
  5. <view class="left">手机号码</view>
  6. <view class="hflex acenter">
  7. <view class="right">{{user.phone}}</view>
  8. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  9. </view>
  10. </view>
  11. <view class="hflex acenter jbetween cell" @click="bindEmail">
  12. <view class="left">邮箱</view>
  13. <view class="hflex acenter">
  14. <view class="right">{{user.e_mail}}</view>
  15. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="cell-group">
  20. <view class="hflex acenter jbetween cell" @click="editPwd">
  21. <view class="left">密码</view>
  22. <view class="hflex acenter">
  23. <view class="right">修改密码</view>
  24. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  25. </view>
  26. </view>
  27. <view class="hflex acenter jbetween cell">
  28. <view class="left">账号注销</view>
  29. <view class="hflex acenter">
  30. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. import $api from '@/static/js/api.js'
  38. var that = ''
  39. export default {
  40. data() {
  41. return {
  42. user: {
  43. phone: '13412341234',
  44. e_mail: '1377642262@qq.com',
  45. }
  46. }
  47. },
  48. onLoad() {
  49. that = this
  50. },
  51. methods: {
  52. // 绑定邮箱
  53. bindEmail() {
  54. $api.jump('/page_mine/pages/setting/bind_eMail')
  55. },
  56. // 修改密码
  57. editPwd() {
  58. $api.jump('/page_mine/pages/setting/edit_pwd')
  59. }
  60. },
  61. }
  62. </script>
  63. <style lang="scss" scoped>
  64. .content {
  65. background-color: #f5f5f5;
  66. .cell-group {
  67. width: 100%;
  68. background-color: #fff;
  69. margin-top: 20rpx;
  70. padding: 0 30rpx;
  71. box-sizing: border-box;
  72. .cell {
  73. box-sizing: border-box;
  74. padding: 36rpx 0;
  75. border-bottom: 1rpx solid #f5f5f5;
  76. .left {
  77. font-size: 30rpx;
  78. color: #222;
  79. }
  80. .right {
  81. padding: 0 5rpx;
  82. font-size: 30rpx;
  83. color: #444;
  84. }
  85. .red {
  86. width: 12rpx;
  87. height: 12rpx;
  88. border-radius: 50%;
  89. background-color: #fb3e32;
  90. }
  91. .avatar {
  92. width: 88rpx;
  93. height: 88rpx;
  94. border-radius: 50%;
  95. }
  96. }
  97. .button {
  98. font-size: 36rpx;
  99. color: #506dff;
  100. padding: 20rpx 0;
  101. }
  102. }
  103. }
  104. </style>