usercenter.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view class="pages">
  3. <view class="myinfo-wrap">
  4. <view class="myinfo">
  5. <view class="myinfo-photo">
  6. <image class="myinfo-photo-img" :src="user.icon" mode=""></image>
  7. </view>
  8. <view class="myinfo-text">
  9. <view class="myinfo-text-name">{{user.nickname || '登录/注册'}}</view>
  10. <view class="myinfo-text-identity">{{user.type}} <text v-if="user.companyInfo">| {{user.companyInfo}}</text></view>
  11. </view>
  12. </view>
  13. <view class="myinfo-focus">
  14. <view class="myinfo-focus-item myinfo-focus-myfocus">
  15. <navigator url="/pages/usercenter/myfocus/myfocus">
  16. <view class="number">{{pre.want||0}}</view>
  17. </navigator>
  18. <view class="text">我有意向的</view>
  19. </view>
  20. <view class="myinfo-focus-item myinfo-focus-focusme">
  21. <navigator url="/pages/usercenter/focusme/focusme">
  22. <view class="number">{{pre.own||0}}</view>
  23. </navigator>
  24. <view class="text">有意向我的</view>
  25. </view>
  26. </view>
  27. </view>
  28. <!-- myinfo-wrap end -->
  29. <view class="wrap">
  30. <navigator url="/pages/usercenter/mypublish/mypublish">
  31. <view class="select-bar">
  32. <svg class="icon select-bar-icon" aria-hidden="true">
  33. <use xlink:href="#iconwodedingdan"></use>
  34. </svg>
  35. <view class="select-bar-text">我的信息发布</view>
  36. <view class="select-bar-arrow"></view>
  37. </view>
  38. </navigator>
  39. <navigator url="/pages/usercenter/authentication/authentication">
  40. <view class="select-bar">
  41. <svg class="icon select-bar-icon" aria-hidden="true">
  42. <use xlink:href="#iconwodetuandui"></use>
  43. </svg>
  44. <view class="select-bar-text">企业认证</view>
  45. <view class="select-bar-arrow"></view>
  46. </view>
  47. </navigator>
  48. <navigator url="/pages/usercenter/feedback/feedback">
  49. <view class="select-bar">
  50. <svg class="icon select-bar-icon" aria-hidden="true">
  51. <use xlink:href="#iconbangzhu"></use>
  52. </svg>
  53. <view class="select-bar-text">帮助反馈</view>
  54. <view class="select-bar-arrow"></view>
  55. </view>
  56. </navigator>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. import { mapState, mapMutations } from 'vuex';
  62. export default {
  63. data() {
  64. return {
  65. params:{
  66. token:'',
  67. tokenhead:'',
  68. },
  69. info:'',
  70. name:'',
  71. usertype:'',
  72. usercompany:'',
  73. myfocus:0,
  74. focusme:1,
  75. pre:[],
  76. user:[],
  77. wxuser:[],
  78. thispage:'',
  79. }
  80. },
  81. onShow() {
  82. this.thispage = `/pages/usercenter/usercenter`;
  83. let serf = this;
  84. let locationLocaturl = window.location.search;
  85. function getUrlParams(url) {
  86. if (decodeURIComponent(url).indexOf('?') > -1) {
  87. var result = [];
  88. var urlParamsArr = decodeURIComponent(url).split('?');
  89. urlParamsArr.shift();
  90. let newUrlParamsArr = urlParamsArr.join('&').split('&');
  91. for (var i = 0; i < newUrlParamsArr.length; i++) {
  92. var paramKey = newUrlParamsArr[i].split('=')[0];
  93. var paramValue = newUrlParamsArr[i].split('=')[1];
  94. result.push({
  95. key: paramKey,
  96. value: paramValue
  97. });
  98. }
  99. return result;
  100. } else {
  101. console.log('该URL中不含参数');
  102. }
  103. };
  104. let locationArr = getUrlParams(locationLocaturl);
  105. if(!locationArr){
  106. let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=/pages/usercenter/usercenter`
  107. window.location.replace(loginurl);
  108. return
  109. };
  110. let itemtoken = locationArr.find(function(locationArr) {
  111. return locationArr.key === 'token';
  112. });
  113. let itemtokenHead = locationArr.find(function(locationArr) {
  114. return locationArr.key === 'tokenHead';
  115. });
  116. if (itemtoken) {
  117. this.params.token = itemtoken.value;
  118. }
  119. if (itemtokenHead) {
  120. this.params.tokenhead = itemtokenHead.value;
  121. }
  122. if(this.params.tokenhead&&this.params.token){
  123. let thetoken = this.params.tokenhead+this.params.token;
  124. this.$api.http.get(this.config.apiBaseurl+'/wechat/h5/info', {header: {Authorization:thetoken}}).then(res => {
  125. let userInfo = res.data;
  126. this.info = userInfo;
  127. this.pre = this.info.data.pre;
  128. this.user = this.info.data.user;
  129. this.wxuser = this.info.data.wxUsers;
  130. console.log('this.info',JSON.parse(JSON.stringify(this.info)));
  131. userInfo.accessToken = this.params.token;
  132. userInfo.tokenhead = this.params.tokenhead;
  133. this.setLogin(userInfo);
  134. }).catch(err => {
  135. if(err.data.message =='暂未登录或token已经过期'){
  136. let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=${this.thispage}`
  137. console.log('loginurl',loginurl);
  138. window.location.replace(loginurl);
  139. return
  140. }
  141. console.log(err)
  142. });
  143. };
  144. //获取会员信息
  145. let thetoken = this.params.tokenhead + this.params.token;
  146. // this.$api.http.get(this.config.apiBaseurl+'/sso/info',{header: {Authorization:thetoken}}).then(res => {
  147. // this.userinfo = res.data.data;
  148. // console.log('this.userinfo',JSON.parse(JSON.stringify(this.userinfo)));
  149. // }).catch(err => {
  150. // });
  151. },
  152. onLoad() {
  153. },
  154. methods: {
  155. ...mapMutations(['setLogin']),
  156. },
  157. // computed:{
  158. // ...mapState(['hasLogin','userInfo'])
  159. // }
  160. }
  161. </script>
  162. <style scoped>
  163. @import url("./usercenter.css");
  164. </style>