personal.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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.sex == 1?'男':'女'}}</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.business.User/user_info',
  58. // method: 'POST'
  59. }, function(res) {
  60. if(res.code == 1) {
  61. that.user = res.data
  62. }
  63. })
  64. },
  65. // 选择头像
  66. chooseImg() {
  67. uni.chooseImage({
  68. count: 1, //默认9
  69. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  70. sourceType: ['album','camera'], //从相册选择
  71. success: function (res) {
  72. // console.log(JSON.stringify(res.tempFilePaths));
  73. const tempFilePaths = res.tempFilePaths
  74. uni.uploadFile({
  75. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  76. filePath: tempFilePaths[0],
  77. name: 'file',
  78. header: {
  79. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  80. 'api-name': 'iosapp'
  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.business.User/user_edit',
  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('/pages/mine/service/setting/bind_eMail?type=username')
  114. },
  115. setSex() {
  116. $api.jump('/pages/mine/service/setting/bind_eMail?type=sex')
  117. },
  118. // 去实名认证
  119. toReal() {
  120. $api.jump('/page_mine/pages/setting/real_name?state=' + that.user.is_auth)
  121. }
  122. },
  123. }
  124. </script>
  125. <style lang="scss" scoped>
  126. .content {
  127. background-color: #f5f5f5;
  128. .cell-group {
  129. width: 100%;
  130. background-color: #fff;
  131. margin-top: 20rpx;
  132. padding: 0 30rpx;
  133. box-sizing: border-box;
  134. .cell {
  135. box-sizing: border-box;
  136. padding: 36rpx 0;
  137. border-bottom: 1rpx solid #f5f5f5;
  138. .left {
  139. font-size: 30rpx;
  140. color: #222;
  141. }
  142. .right {
  143. padding: 0 5rpx;
  144. font-size: 30rpx;
  145. color: #444;
  146. }
  147. .red {
  148. width: 12rpx;
  149. height: 12rpx;
  150. border-radius: 50%;
  151. background-color: #fb3e32;
  152. }
  153. .avatar {
  154. width: 88rpx;
  155. height: 88rpx;
  156. border-radius: 50%;
  157. }
  158. }
  159. .button {
  160. font-size: 36rpx;
  161. color: #506dff;
  162. padding: 20rpx 0;
  163. }
  164. }
  165. }
  166. </style>