set.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <template>
  2. <view class="userinfo">
  3. <view class="item-box u-flex u-col-center u-row-between">
  4. <text class="text1">头像</text>
  5. <view class="" >
  6. <image :src="userInfo.headimg" mode="" @tap="changeHeadImg"></image>
  7. </view>
  8. </view>
  9. <view class="item-box u-flex u-col-center u-row-between">
  10. <text class="text1" style="flex: 1;">昵称</text>
  11. <view class=" u-flex" @click="show=true">
  12. {{userInfo.nickname}}<u-icon name="arrow-right"></u-icon>
  13. </view>
  14. </view>
  15. <view class="item-box u-flex u-col-center u-row-between" >
  16. <text class="text1" style="flex: 1;">会员号</text>
  17. <view class=" u-flex">
  18. {{userInfo.vip_number}}
  19. </view>
  20. </view>
  21. <!-- <view class="item-box u-flex u-col-center u-row-between" @click="tobangding" v-show="!userInfo.phone">
  22. <text class="text1" style="flex: 1;">手机号</text>
  23. <view class=" u-flex">
  24. 去绑定<u-icon name="arrow-right"></u-icon>
  25. </view>
  26. </view> -->
  27. <!-- <view class="item-box u-flex u-col-center u-row-between" @click="tochange" v-show="userInfo.phone">
  28. <text class="text1" style="flex: 1;">手机号</text>
  29. <view class=" u-flex" style="color: #888888;">
  30. {{userInfo.phone}}<u-icon name="arrow-right"></u-icon>
  31. </view>
  32. </view> -->
  33. <view class="item-box u-flex u-col-center u-row-between" @click="tosuqiu">
  34. <text class="text1" style="flex: 1;">个人诉求</text>
  35. <u-icon name="arrow-right"></u-icon>
  36. </view>
  37. <view class="item-box u-flex u-col-center u-row-between">
  38. <text class="text1" style="flex: 1;" @click="tozhuxiao">账号注销</text>
  39. <u-icon name="arrow-right"></u-icon>
  40. </view>
  41. <u-popup :show="show" @close="show=false" mode="center" :round="40">
  42. <view style="width: 650rpx;
  43. background: #FFFFFF;
  44. border-radius: 20rpx;padding: 80rpx 86rpx;color: #222;box-sizing: border-box;" class="u-flex-col">
  45. <view class="" style="margin: 0 auto 50rpx;border-radius: 5rpx;border: 2rpx solid #A890FE;padding: 10rpx 20rpx;">
  46. <input type="text" placeholder="请输入新昵称" v-model="newName">
  47. </view>
  48. <u-button text="确认修改" shape="circle" color="linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%)"
  49. @click="submit"></u-button>
  50. </view>
  51. </u-popup>
  52. <!-- <view class="save" @tap="storage">
  53. 保存
  54. </view> -->
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. data() {
  60. return {
  61. newName:'',
  62. show:false,
  63. userInfo: {},
  64. ossdata: {}
  65. }
  66. },
  67. onLoad(option) {
  68. // this.getOssData()
  69. },
  70. onShow() {
  71. this.getInfo()
  72. },
  73. methods: {
  74. submit(){
  75. if(!this.newName){
  76. this.$u.toast('请输入新昵称')
  77. return
  78. }
  79. uni.$u.http.post('/api/user/user_nickname',{nickname:this.newName}).then(res => {
  80. if(res.code==1){
  81. this.$u.toast(res.msg)
  82. this.newName=''
  83. this.show=false
  84. this.getInfo()
  85. }
  86. })
  87. },
  88. getInfo(){
  89. uni.$u.http.post('/api/user/userinfo').then(res => {
  90. if(res.code==1){
  91. this.userInfo=res.data
  92. }
  93. })
  94. },
  95. tochange(){
  96. uni.navigateTo({
  97. url:'./changephone'
  98. })
  99. },
  100. tobangding(){
  101. uni.navigateTo({
  102. url:'./bangding'
  103. })
  104. },
  105. tozhuxiao(){
  106. uni.navigateTo({
  107. url:'./zhuxiao'
  108. })
  109. },
  110. tosuqiu(){
  111. uni.navigateTo({
  112. url:'./suqiu'
  113. })
  114. },
  115. storage(){
  116. this.request({
  117. url:'/api/Member/edit_member_info',
  118. methods:'POST',
  119. data:{
  120. headimg:this.userInfo.headImg,
  121. name:this.userInfo.nickName,
  122. phone:this.userInfo.phone
  123. }
  124. }).then(res=>{
  125. if(res.code==1){
  126. this.$u.toast(res.msg)
  127. setTimeout(()=>{
  128. uni.navigateBack()
  129. },1000)
  130. }
  131. })
  132. },
  133. changeHeadImg() {
  134. var that=this
  135. uni.chooseImage({
  136. success: (chooseImageRes) => {
  137. const tempFilePaths = chooseImageRes.tempFilePaths;
  138. uni.uploadFile({
  139. url: this.$url+'/api/Publics/uploadLocality', //仅为示例,非真实的接口地址
  140. filePath: tempFilePaths[0],
  141. name: 'file',
  142. success: (uploadFileRes) => {
  143. var url=JSON.parse(uploadFileRes.data).data.url
  144. uni.$u.http.post('/api/user/user_headimg',{headimg:url}).then(res => {
  145. if(res.code==1){
  146. this.getInfo()
  147. }
  148. })
  149. }
  150. });
  151. }
  152. });
  153. // uni.chooseImage({
  154. // count: 1,
  155. // success: (img) => {
  156. // var key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png'
  157. // uni.uploadFile({
  158. // url: this.ossdata.host, //输入你的bucketname.endpoint
  159. // filePath: img.tempFilePaths[0],
  160. // name: 'file',
  161. // formData: {
  162. // key: key,
  163. // policy: this.ossdata.policy, // 输入你获取的的policy
  164. // OSSAccessKeyId: this.ossdata.OSSAccessKeyId, // 输入你的AccessKeyId
  165. // success_action_status: '200', // 让服务端返回200,不然,默认会返回204
  166. // signature: this.ossdata.Signature, // 输入你获取的的signature
  167. // },
  168. // success: (res) => {
  169. // if (res.statusCode == 200) {
  170. // this.userInfo.headImg = this.ossdata.host + '/' + key
  171. // }
  172. // },
  173. // fail: (err) => {
  174. // console.log(err);
  175. // }
  176. // })
  177. // }
  178. // })
  179. },
  180. getOssData() {
  181. this.request({
  182. url: '/api/Upload/getSignedUrl'
  183. }).then(res => {
  184. this.ossdata = res.data
  185. })
  186. }
  187. }
  188. }
  189. </script>
  190. <style lang="scss">
  191. .userinfo {
  192. min-height: 100vh;
  193. background-color: rgba(248, 248, 248, 1);
  194. .save {
  195. width: 660rpx;
  196. height: 96rpx;
  197. background: #D85340;
  198. opacity: 1;
  199. border-radius: 16rpx;
  200. margin: 108rpx auto;
  201. text-align: center;
  202. line-height: 96rpx;
  203. font-size: 34rpx;
  204. font-family: SF Pro;
  205. font-weight: 500;
  206. color: #FFFFFF;
  207. }
  208. .item-box {
  209. background-color: #fff;
  210. padding: 30rpx 36rpx;
  211. .text1 {
  212. font-size: 28rpx;
  213. font-family: SF Pro;
  214. font-weight: 500;
  215. color: #333333;
  216. }
  217. image {
  218. width: 116rpx;
  219. height: 116rpx;
  220. border-radius: 100rpx;
  221. }
  222. input {
  223. flex: 1;
  224. text-align: right;
  225. }
  226. }
  227. }
  228. </style>