myInfo.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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" @bulr="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;">
  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. }
  63. },
  64. methods:{
  65. // 修改头像
  66. changeHeadPhoto(){
  67. uni.chooseImage({
  68. count: 1, //默认9
  69. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  70. sourceType: ['album'], //从相册选择
  71. success: (res)=> {
  72. this.headImg=res.tempFiles[0].path
  73. }
  74. });
  75. },
  76. //微信授权登录
  77. wxLogin(){
  78. uni.navigateTo({
  79. url:"../login/authorization"
  80. })
  81. },
  82. // 修改昵称
  83. changeName(){
  84. },
  85. //修改手机号
  86. changePhone(){
  87. let phoneReg = /^1[3|4|5|7|8][0-9]{9}$/; //手机号正则校验
  88. if(!phoneReg.test(this.phone)){
  89. uni.showToast({
  90. 'icon':'none',
  91. title:"手机号码格式不正确"
  92. })
  93. }else{
  94. }
  95. }
  96. }
  97. }
  98. </script>
  99. <style>
  100. .item{
  101. width:698rpx;
  102. height: 88rpx;
  103. margin: 0 auto;
  104. display: flex;
  105. justify-content: space-between;
  106. }
  107. .left{
  108. width:64rpx;
  109. height:44rpx;
  110. font-size:32rpx;
  111. font-family:PingFang SC;
  112. font-weight:400;
  113. color:rgba(51,51,51,1);
  114. margin-top: 22rpx;
  115. opacity:1;
  116. }
  117. .right{
  118. width:110rpx;
  119. margin-top: 10rpx;
  120. }
  121. </style>