myInfo.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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="headPhoto" 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);">{{data.status==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="facePhoto" 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. status:0,
  64. facePhoto:'',
  65. headPhoto:''
  66. }
  67. },
  68. onLoad() {
  69. this.getUserData()
  70. },
  71. methods: {
  72. // 获取用户数据
  73. getUserData(){
  74. uni.showLoading({
  75. title:'加载中',
  76. 'icon':'none'
  77. })
  78. this.http.httpRequest('/wxapplet/ownersid/getUser','get',{
  79. userId:uni.getStorageSync('userId')
  80. },true).then((res)=>{
  81. console.log(res)
  82. if(res.code==0){
  83. // 判断当前返回值是否是网络路径图片
  84. if(res.data.avatar.indexOf('https://')==-1){
  85. this.headPhoto=this.getBase64ImageUrl(res.data.avatar)
  86. uni.setStorageSync("headImg",this.headPhoto)
  87. this.headImg=res.data.avatar
  88. }else{
  89. this.getImageToBase64(res.data.avatar)
  90. this.headPhoto=res.data.avatar
  91. uni.setStorageSync("headImg",res.data.avatar)
  92. }
  93. this.phone=res.data.phoneNum
  94. this.userName=res.data.loginName
  95. uni.setStorageSync('userName',res.data.loginName)
  96. uni.setStorageSync('userPhone',res.data.phoneNum)
  97. this.status=res.data.status
  98. this.photo=res.data.facePhoto
  99. this.facePhoto=this.getBase64ImageUrl(res.data.facePhoto)
  100. uni.hideLoading()
  101. }else{
  102. uni.hideLoading()
  103. uni.showToast({
  104. title:res.msg,
  105. 'icon':'none'
  106. })
  107. }
  108. }).catch(()=>{
  109. uni.hideLoading()
  110. })
  111. },
  112. // 网络图片转base64
  113. getImageToBase64(img){
  114. uni.downloadFile({
  115. url: img,
  116. success:(res)=>{
  117. console.log(res)
  118. wx.getFileSystemManager().readFile({
  119. filePath:res.tempFilePath, //微信小程序图片默认路径
  120. encoding: 'base64', //编码格式
  121. success: (res) => {
  122. this.headImg=res.data
  123. },
  124. fail() {
  125. }
  126. })
  127. }
  128. })
  129. },
  130. //把base64转换成图片
  131. getBase64ImageUrl(data) {
  132. /// 获取到base64Data
  133. var base64Data = data;
  134. /// 通过微信小程序自带方法将base64转为二进制去除特殊符号,再转回base64
  135. base64Data = uni.arrayBufferToBase64(uni.base64ToArrayBuffer(base64Data))
  136. /// 拼接请求头,data格式可以为image/png或者image/jpeg等,看需求
  137. const base64ImgUrl = "data:image/png;base64," + base64Data;
  138. // 刷新数据
  139. return base64ImgUrl
  140. },
  141. // 修改信息方法
  142. updateInfo() {
  143. this.http.httpRequest('/wxapplet/ownersid/update/user', 'post', {
  144. CardNo: uni.getStorageSync('idNumber'),
  145. userId: String(uni.getStorageSync('userId')),
  146. loginName: this.userName,
  147. avatar: this.headImg,
  148. facePic: this.photo,
  149. ComtyId: uni.getStorageSync('comtyId'),
  150. }, true).then((res) => {
  151. if (res.code == 0) {
  152. uni.showToast({
  153. title:'修改成功',
  154. 'icon':'success'
  155. })
  156. setTimeout(()=>{
  157. this.getUserData()
  158. },500)
  159. } else {
  160. uni.showToast({
  161. title: res.msg,
  162. 'icon': 'none'
  163. })
  164. }
  165. }).catch((res) => {
  166. })
  167. },
  168. // 修改头像
  169. changeHeadPhoto() {
  170. uni.chooseImage({
  171. count: 1, //默认9
  172. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  173. // sourceType: ['album'], //从相册选择
  174. success: (res) => {
  175. this.headPhoto=res.tempFiles[0].path
  176. wx.getFileSystemManager().readFile({
  177. filePath: res.tempFiles[0].path, //微信小程序图片默认路径
  178. encoding: 'base64', //编码格式
  179. success: (res) => {
  180. this.headImg = res.data
  181. this.updateInfo()
  182. },
  183. fail() {
  184. }
  185. })
  186. }
  187. })
  188. },
  189. // 修改人脸图片
  190. changeFacePhoto() {
  191. uni.chooseImage({
  192. count: 1, //默认9
  193. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  194. // sourceType: ['album'], //从相册选择
  195. success: (res) => {
  196. uni.showLoading({
  197. mask:true,
  198. title:'上传中'
  199. })
  200. this.facePhoto=res.tempFiles[0].path
  201. wx.getFileSystemManager().readFile({
  202. filePath: res.tempFiles[0].path, //微信小程序图片默认路径
  203. encoding: 'base64', //编码格式
  204. success: (res) => {
  205. this.photo = res.data
  206. uni.hideLoading()
  207. this.updateInfo()
  208. },
  209. fail() {
  210. }
  211. })
  212. }
  213. });
  214. },
  215. //微信授权登录
  216. wxLogin() {
  217. // uni.navigateTo({
  218. // url:"../login/authorization"
  219. // })
  220. },
  221. // 修改昵称
  222. changeName() {
  223. this.updateInfo()
  224. },
  225. //修改手机号
  226. changePhone() {
  227. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  228. if (!phoneReg.test(this.phone)) {
  229. uni.showToast({
  230. 'icon': 'none',
  231. title: "手机号码格式不正确"
  232. })
  233. } else {
  234. this.updateInfo()
  235. }
  236. }
  237. }
  238. }
  239. </script>
  240. <style>
  241. .item {
  242. width: 698rpx;
  243. height: 88rpx;
  244. margin: 0 auto;
  245. display: flex;
  246. justify-content: space-between;
  247. }
  248. .left {
  249. width: 64rpx;
  250. height: 44rpx;
  251. font-size: 32rpx;
  252. font-family: PingFang SC;
  253. font-weight: 400;
  254. color: rgba(51, 51, 51, 1);
  255. margin-top: 22rpx;
  256. opacity: 1;
  257. }
  258. .right {
  259. width: 110rpx;
  260. margin-top: 10rpx;
  261. }
  262. </style>