personal.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view class="content">
  3. <view class="cell-group">
  4. <view class="hflex acenter jbetween cell" @click="chooseImg">
  5. <view class="left">头像</view>
  6. <view class="hflex acenter">
  7. <image :src="user.headimg" mode="aspectFill" class="avatar"></image>
  8. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  9. </view>
  10. </view>
  11. <view class="hflex acenter jbetween cell" @click="setName">
  12. <view class="left">昵称</view>
  13. <view class="hflex acenter">
  14. <view class="right">{{user.nickname}}</view>
  15. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  16. </view>
  17. </view>
  18. <view class="hflex acenter jbetween cell" @click="setSex">
  19. <view class="left">性别</view>
  20. <view class="hflex acenter">
  21. <view class="right">{{user.base_sex?user.base_sex:''}}</view>
  22. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="cell-group">
  27. <view class="hflex acenter jbetween cell" @click="toReal">
  28. <view class="left">实名认证</view>
  29. <view class="hflex acenter">
  30. <view class="red" v-if="user.is_auth == 0"></view>
  31. <view class="right">{{user.is_auth?'已实名认证':'未实名认证'}}</view>
  32. <u-icon name="arrow-right" color="#000" size="10"></u-icon>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. import $api from '@/static/js/api.js'
  40. var that = ''
  41. export default {
  42. data() {
  43. return {
  44. user: {}
  45. }
  46. },
  47. onLoad() {
  48. that = this
  49. },
  50. onShow() {
  51. that.getUser()
  52. },
  53. methods: {
  54. // 获取个人信息
  55. getUser() {
  56. $api.req({
  57. url: '/data/api.auth.Center/get',
  58. }, function(res) {
  59. if(res.code == 1) {
  60. that.user = res.data
  61. }
  62. })
  63. },
  64. // 选择头像
  65. chooseImg() {
  66. uni.chooseImage({
  67. count: 1, //默认9
  68. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  69. sourceType: ['album','camera'], //从相册选择
  70. success: function (res) {
  71. // console.log(JSON.stringify(res.tempFilePaths));
  72. const tempFilePaths = res.tempFilePaths
  73. uni.uploadFile({
  74. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  75. filePath: tempFilePaths[0],
  76. name: 'file',
  77. header: {
  78. 'content-type': 'application/x-www-form-urlencoded',
  79. 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
  80. 'api-name': 'wxapp'
  81. },
  82. formData: {
  83. 'user': 'test'
  84. },
  85. success: (res) => {
  86. const data = JSON.parse(res.data)
  87. if (data.code == 1) {
  88. that.user.headimg = data.data.url
  89. $api.req({
  90. url: '/data/api.auth.Center/set',
  91. method: 'POST',
  92. data:{
  93. headimg: that.user.headimg,
  94. }
  95. },function(res) {
  96. console.log(res);
  97. let options = {
  98. avatarurl: that.user.headimg,
  99. }
  100. uni.WebIM.conn.updateOwnUserInfo(options).then((res) => {
  101. console.log(res)
  102. })
  103. $api.info(res.info)
  104. })
  105. }
  106. }
  107. });
  108. }
  109. });
  110. },
  111. // 修改
  112. setName() {
  113. $api.jump('/page_mine/pages/setting/bind_eMail?type=username')
  114. },
  115. setSex() {
  116. $api.jump('/page_mine/pages/setting/bind_eMail?type=sex')
  117. },
  118. // 去实名认证
  119. toReal() {
  120. console.log(that.user.realState);
  121. $api.jump('/page_mine/pages/setting/real_name?state=' + that.user.realState)
  122. }
  123. },
  124. }
  125. </script>
  126. <style lang="scss" scoped>
  127. .content {
  128. background-color: #f5f5f5;
  129. .cell-group {
  130. width: 100%;
  131. background-color: #fff;
  132. margin-top: 20rpx;
  133. padding: 0 30rpx;
  134. box-sizing: border-box;
  135. .cell {
  136. box-sizing: border-box;
  137. padding: 36rpx 0;
  138. border-bottom: 1rpx solid #f5f5f5;
  139. .left {
  140. font-size: 30rpx;
  141. color: #222;
  142. }
  143. .right {
  144. padding: 0 5rpx;
  145. font-size: 30rpx;
  146. color: #444;
  147. }
  148. .red {
  149. width: 12rpx;
  150. height: 12rpx;
  151. border-radius: 50%;
  152. background-color: #fb3e32;
  153. }
  154. .avatar {
  155. width: 88rpx;
  156. height: 88rpx;
  157. border-radius: 50%;
  158. }
  159. }
  160. .button {
  161. font-size: 36rpx;
  162. color: #506dff;
  163. padding: 20rpx 0;
  164. }
  165. }
  166. }
  167. </style>