myInfo.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <!-- 个人资料 -->
  2. <template>
  3. <view class="">
  4. <view style="width: 100%;border-bottom:2rpx solid rgba(247,247,247,1);height:88rpx;margin-top: 30rpx;overflow: hidden;">
  5. <view class="item" @tap="changeHeadPhoto">
  6. <view class="left">头像</view>
  7. <view class="right">
  8. <image :src="headImg" style="width: 72rpx;height: 72rpx;border-radius: 50%;margin-right: 20rpx;"></image>
  9. <image src="../../static/icon_more@2x.png" style="width: 15rpx;height: 23rpx;margin-bottom:30rpx ;"></image>
  10. </view>
  11. </view>
  12. </view>
  13. <!-- 昵称 -->
  14. <view style="width: 100%;border-bottom:2rpx solid rgba(247,247,247,1);height:88rpx;margin-top: 30rpx;overflow: hidden;">
  15. <view class="item">
  16. <view class="left">昵称</view>
  17. <view class="right" style="width:500rpx;position: relative;">
  18. <input type="text" @blur="changeName" v-model="userName" style="max-width: 400rpx;height: 40rpx;text-align: right;position: absolute;right: 37rpx;top: 10rpx;color:rgba(153,153,153,1);">
  19. <image src="../../static/icon_more@2x.png" style="width: 15rpx;height: 23rpx;position: absolute;right: 0;bottom:35rpx ;"></image>
  20. </view>
  21. </view>
  22. </view>
  23. <!-- 手机号 -->
  24. <view style="width: 100%;border-bottom:2rpx solid rgba(247,247,247,1);height:88rpx;margin-top: 30rpx;overflow: hidden;">
  25. <view class="item">
  26. <view class="left" style="width: 98rpx;">手机号</view>
  27. <view class="right" style="width:500rpx;position: relative;">
  28. <input type="number" @blur="changePhone" v-model="phone" style="max-width: 400rpx;height: 40rpx;text-align: right;position: absolute;right: 37rpx;top: 10rpx;color:rgba(153,153,153,1);">
  29. <image src="../../static/icon_more@2x.png" style="width: 15rpx;height: 23rpx;position: absolute;right: 0;bottom:35rpx ;"></image>
  30. </view>
  31. </view>
  32. </view>
  33. <!-- 微信 -->
  34. <view style="width: 100%;border-bottom:2rpx solid rgba(247,247,247,1);height:88rpx;margin-top: 30rpx;overflow: hidden;">
  35. <view class="item" @tap="wxLogin">
  36. <view class="left" style="width: 98rpx;">微信</view>
  37. <view class="right" style="width:500rpx;position: relative;">
  38. <text style="max-width: 400rpx;height: 40rpx;text-align: right;position: absolute;right: 37rpx;top: 10rpx;color:rgba(153,153,153,1);">已绑定</text>
  39. <image src="../../static/icon_more@2x.png" style="width: 15rpx;height: 23rpx;position: absolute;right: 0;bottom:35rpx ;"></image>
  40. </view>
  41. </view>
  42. </view>
  43. <!-- 人脸模板 -->
  44. <view style="width: 100%;border-bottom:2rpx solid rgba(247,247,247,1);height:300rpx;margin-top: 30rpx;overflow: hidden;">
  45. <view class="item" style="height: 100%;">
  46. <view class="left" style="width: 132rpx;margin-top: 128rpx;">人脸模板</view>
  47. <view class="right" style="width:500rpx;position: relative;" @tap="changeFacePhoto">
  48. <image src="../../static/care_family.png" style="width: 256rpx;height:256rpx;position: absolute;right: 37rpx;color:rgba(153,153,153,1);"></image>
  49. <image src="../../static/icon_more@2x.png" style="width: 15rpx;height: 23rpx;position: absolute;right: 0;bottom:142rpx ;"></image>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. export default {
  57. data() {
  58. return {
  59. userName: '呵呵', //昵称
  60. phone: 15855391987, //手机号
  61. headImg: '', //头像
  62. photo: '', //人脸
  63. }
  64. },
  65. methods: {
  66. // 修改信息方法
  67. updateInfo() {
  68. uni.showLoading({
  69. mask: true,
  70. title: '加载中'
  71. })
  72. this.http.httpRequest('/wxapplet/ownersid/update/user', 'post', {
  73. CardNo: uni.getStorageSync('idNumber'),
  74. userId: uni.getStorageSync('userId'),
  75. loginName: this.userName,
  76. avatar: this.headImg,
  77. facePic: this.photo,
  78. ComtyId: uni.getStorageSync('comtyId'),
  79. }, true).then((res) => {
  80. if (res.code == 0) {
  81. uni.hideLoading()
  82. } else {
  83. uni.hideLoading()
  84. uni.showToast({
  85. title: res.msg,
  86. 'icon': 'none'
  87. })
  88. }
  89. }).catch((res) => {
  90. uni.hideLoading()
  91. })
  92. },
  93. // 修改头像
  94. changeHeadPhoto() {
  95. uni.chooseImage({
  96. count: 1, //默认9
  97. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  98. // sourceType: ['album'], //从相册选择
  99. success: (res) => {
  100. wx.uploadFile({
  101. filePath: res.tempFiles[0].path,
  102. url: 'https://www.szdeao.com/wxapplet/upload/imgPhoto ', //仅为示例,非真实的接口地址
  103. name: 'photo',
  104. method: 'post',
  105. success: (res) => {
  106. let data = JSON.parse(res.data)
  107. let reg = /,$/gi;
  108. this.headImg = data.data.imagesPath.replace(reg, "");
  109. console.log(this.headImg)
  110. this.updateInfo()
  111. }
  112. })
  113. }
  114. })
  115. },
  116. // 修改人脸图片
  117. changeFacePhoto() {
  118. uni.chooseImage({
  119. count: 1, //默认9
  120. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  121. // sourceType: ['album'], //从相册选择
  122. success: (res) => {
  123. wx.getFileSystemManager().readFile({
  124. filePath: res.tempFiles[0].path, //微信小程序图片默认路径
  125. encoding: 'base64', //编码格式
  126. success: (res) => {
  127. this.photo = res.data
  128. this.updateInfo()
  129. },
  130. fail() {
  131. }
  132. })
  133. }
  134. });
  135. },
  136. //微信授权登录
  137. wxLogin() {
  138. // uni.navigateTo({
  139. // url:"../login/authorization"
  140. // })
  141. },
  142. // 修改昵称
  143. changeName() {
  144. this.updateInfo()
  145. },
  146. //修改手机号
  147. changePhone() {
  148. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  149. if (!phoneReg.test(this.phone)) {
  150. uni.showToast({
  151. 'icon': 'none',
  152. title: "手机号码格式不正确"
  153. })
  154. } else {
  155. this.updateInfo()
  156. }
  157. }
  158. }
  159. }
  160. </script>
  161. <style>
  162. .item {
  163. width: 698rpx;
  164. height: 88rpx;
  165. margin: 0 auto;
  166. display: flex;
  167. justify-content: space-between;
  168. }
  169. .left {
  170. width: 64rpx;
  171. height: 44rpx;
  172. font-size: 32rpx;
  173. font-family: PingFang SC;
  174. font-weight: 400;
  175. color: rgba(51, 51, 51, 1);
  176. margin-top: 22rpx;
  177. opacity: 1;
  178. }
  179. .right {
  180. width: 110rpx;
  181. margin-top: 10rpx;
  182. }
  183. </style>