account_info.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.contact_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.contact_mail?user.contact_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. }
  44. },
  45. onLoad() {
  46. that = this
  47. },
  48. onShow() {
  49. that.getUser()
  50. },
  51. methods: {
  52. // 获取账户信息
  53. getUser() {
  54. $api.req({
  55. url: '/data/api.business.User/user_info',
  56. method: 'POST'
  57. }, function(res) {
  58. if(res.code == 1) {
  59. that.user = res.data
  60. }
  61. })
  62. },
  63. // 绑定邮箱
  64. bindEmail() {
  65. $api.jump('/pages/mine/service/setting/bind_eMail?type=email')
  66. },
  67. // 修改密码
  68. editPwd() {
  69. $api.jump('/pages/mine/service/setting/edit_pwd')
  70. }
  71. },
  72. }
  73. </script>
  74. <style lang="scss" scoped>
  75. .content {
  76. background-color: #f5f5f5;
  77. .cell-group {
  78. width: 100%;
  79. background-color: #fff;
  80. margin-top: 20rpx;
  81. padding: 0 30rpx;
  82. box-sizing: border-box;
  83. .cell {
  84. box-sizing: border-box;
  85. padding: 36rpx 0;
  86. border-bottom: 1rpx solid #f5f5f5;
  87. .left {
  88. font-size: 30rpx;
  89. color: #222;
  90. }
  91. .right {
  92. padding: 0 5rpx;
  93. font-size: 30rpx;
  94. color: #444;
  95. }
  96. .red {
  97. width: 12rpx;
  98. height: 12rpx;
  99. border-radius: 50%;
  100. background-color: #fb3e32;
  101. }
  102. .avatar {
  103. width: 88rpx;
  104. height: 88rpx;
  105. border-radius: 50%;
  106. }
  107. }
  108. .button {
  109. font-size: 36rpx;
  110. color: #506dff;
  111. padding: 20rpx 0;
  112. }
  113. }
  114. }
  115. </style>