memberinfo.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <template>
  2. <view class="pages">
  3. <u-navbar
  4. title="个人信息"
  5. :placeholder="true"
  6. :autoBack="true"
  7. :safeAreaInsetTop="true"
  8. >
  9. </u-navbar>
  10. <view class="page-wrap">
  11. <u-cell-group>
  12. <!-- <u-cell title="头像">
  13. <u-avatar slot="right-icon" :src="memberInfo.avatar" size="80rpx"></u-avatar>
  14. </u-cell> -->
  15. <view class="avatar u-flex u-row-between u-border-bottom">
  16. <text>头像</text>
  17. <view class="right">
  18. <u--image :src="memberInfo.avatar" shape="circle" width="80rpx" height="80rpx"></u--image>
  19. <u-upload
  20. width="80rpx"
  21. height="80rpx"
  22. :fileList="fileList"
  23. @afterRead="afterRead"
  24. :previewImage="false"
  25. multiple
  26. name="name"
  27. :maxCount="2"
  28. ></u-upload>
  29. </view>
  30. </view>
  31. <u-cell title="昵称" @click="nameShow=true" :value="memberInfo.name"></u-cell>
  32. <u-cell title="性别" @click="handleChangeSex" :value="memberInfo.sex|filterSex"></u-cell>
  33. <u-cell title="生日" :value="memberInfo.birthdayTime||'未设置'" @click="handleChangeBirthday" :isLink="true"></u-cell>
  34. <u-cell title="会员等级" :value="memberInfo.levelName"></u-cell>
  35. <u-cell title="实名制认证" @click="factorAuth" :value="memberInfo.isAuth==1?'已认证':'去认证'"></u-cell>
  36. </u-cell-group>
  37. <u-button text="取消登录" type="warning" @click="logOut" :customStyle="{'margin-top': '120rpx'}"></u-button>
  38. <u-datetime-picker
  39. :show="timeShow"
  40. :minDate="new Date().getTime()-365*100*24*3600*1000"
  41. v-model="birthday"
  42. :maxDate="new Date().getTime()"
  43. @confirm="updateBirthday"
  44. mode="date"
  45. :closeOnClickOverlay="true"
  46. @close="timeShow = false"
  47. @cancel="timeShow = false"
  48. ></u-datetime-picker>
  49. </view>
  50. <u-modal :show="nameShow" title="修改昵称" @confirm="changeName" @cancel="nameShow=false" :showCancelButton="true" >
  51. <view class="slot-content">
  52. <u--input
  53. placeholder="请输入内容"
  54. border="surround"
  55. v-model="tempName"
  56. maxlength="8"
  57. >
  58. </u--input>
  59. </view>
  60. </u-modal>
  61. <u-action-sheet
  62. :show="showSex"
  63. :actions="actions"
  64. title="请选择性别"
  65. @close="showSex = false"
  66. @select="sexSelect"
  67. >
  68. </u-action-sheet>
  69. <u-toast ref="uToast"></u-toast>
  70. </view>
  71. </template>
  72. <script>
  73. import {uploadImg} from '../utils/uploadImg.js'
  74. export default {
  75. components:{
  76. },
  77. data() {
  78. return {
  79. showSex:false,
  80. sex:'',
  81. nameShow:false,
  82. tempName:'',
  83. uploadFileUrl:this.$commonConfig.uploadFileUrl,
  84. timeShow:false,
  85. birthday:'',
  86. memberInfo:{},
  87. fileList:[],
  88. avatarUrl:'',
  89. actions: [
  90. {name: '男',val:1},
  91. {name: '女',val:2},
  92. {name: '保密',val:0},
  93. ],
  94. }
  95. },
  96. onShow() {
  97. this.getMemberInfo();
  98. // console.log('1111',this.uploadFileUrl);
  99. },
  100. onLoad() {
  101. },
  102. methods: {
  103. logOut(){
  104. this.$u.vuex('vuex_member_info', {});
  105. this.$u.vuex('vuex_user_info', {});
  106. uni.$u.route('/pages/index/index')
  107. // this.getMemberInfo()
  108. },
  109. getMemberInfo(){
  110. this.$u.api.memberInfo({id:this.vuex_user_info.userid}).then(res=>{
  111. this.memberInfo = res.data;
  112. this.avatar = res.data.avatar;
  113. // console.log('memberInfo',this.memberInfo);
  114. }).catch(err=>{
  115. console.log('memberInfo',err);
  116. })
  117. },
  118. handleChangeSex(){
  119. if(this.memberInfo.isAuth==1){
  120. this.$refs.uToast.show({
  121. type: 'default',
  122. message: "实名信息不能修改!",
  123. })
  124. }else{
  125. this.showSex = true
  126. }
  127. },
  128. handleChangeBirthday(){
  129. if(this.memberInfo.isAuth==1){
  130. this.$refs.uToast.show({
  131. type: 'default',
  132. message: "实名信息不能修改!",
  133. })
  134. }else{
  135. this.timeShow = true
  136. }
  137. },
  138. updateBirthday(e){
  139. // console.log('000',e);
  140. let birthday = uni.$u.timeFormat(e.value, 'yyyy-mm-dd');
  141. this.birthday = birthday;
  142. this.updateMemberInfo('birthday');
  143. this.timeShow = false;
  144. },
  145. // 新增图片
  146. async afterRead(event){
  147. //使用这个封装
  148. const result = await uploadImg(event,this.fileList)
  149. let parseResult = JSON.parse(result.data).data;
  150. console.log('urlurl',parseResult.url);
  151. this.avatarUrl = parseResult.url;
  152. if(!this.avatarUrl){
  153. uni.showToast({
  154. title: '上传失败!',
  155. icon: "error"
  156. });
  157. return
  158. };
  159. this.updateMemberInfo('avatar');
  160. let item = this.fileList[result.fileListLen]
  161. this.fileList.splice(result.fileListLen, 1, Object.assign(item, {
  162. status: 'success',
  163. message: '成功',
  164. url: JSON.parse(result.data).data
  165. }));
  166. },
  167. updateMemberInfo(type){
  168. let params ={
  169. id:this.vuex_user_info.userid
  170. };
  171. if(type == 'avatar'){
  172. params.avatar = this.avatarUrl;
  173. }else if(type == 'birthday'){
  174. params.birthdayTime = this.birthday;
  175. }else if(type == 'name'){
  176. if(!this.tempName){
  177. uni.showToast({
  178. title:'请输入昵称',
  179. icon:'error'
  180. })
  181. return
  182. }
  183. params.name = this.tempName;
  184. }else if(type == 'sex'){
  185. params.sex = this.sex;
  186. }
  187. this.$u.api.updateMemberInfo(params).then(res=>{
  188. this.getMemberInfo();
  189. this.nameShow = false;
  190. }).catch(err=>{
  191. console.log('err',err);
  192. })
  193. },
  194. changeName(){
  195. this.updateMemberInfo('name');
  196. console.log('memberInfo',this.memberInfo);
  197. },
  198. sexSelect(e){
  199. this.sex = e.val;
  200. this.updateMemberInfo('sex')
  201. console.log('sexSelect',e);
  202. },
  203. factorAuth(){
  204. if(this.memberInfo.isAuth==1){
  205. uni.showToast({
  206. title:'已认证',
  207. icon:'none'
  208. })
  209. return
  210. }
  211. uni.$u.route('/center/factorauth', {
  212. backUrl: '/center/center'
  213. });
  214. }
  215. }
  216. }
  217. </script>
  218. <style>
  219. page{
  220. background-color: #fff;
  221. }
  222. </style>
  223. <style lang="scss" scoped>
  224. .avatar{
  225. padding: 10px 15px;
  226. font-size: 15px;
  227. color: #303133;
  228. .right{
  229. position: relative;
  230. /deep/ .u-upload{
  231. position: absolute;
  232. left: 0;
  233. top: 0;
  234. opacity: 0;
  235. }
  236. }
  237. }
  238. </style>