usercenter.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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"><!-- {{company.type}} --><text v-if="company.compName">供应商 | {{company.compName}}</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" v-if="!company.compName">
  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. company:[],
  78. wxuser:[],
  79. thispage:'',
  80. }
  81. },
  82. onShow() {
  83. this.thispage = `/pages/usercenter/usercenter`;
  84. let serf = this;
  85. let locationLocaturl = window.location.search;
  86. function getUrlParams(url) {
  87. if (decodeURIComponent(url).indexOf('?') > -1) {
  88. var result = [];
  89. var urlParamsArr = decodeURIComponent(url).split('?');
  90. urlParamsArr.shift();
  91. let newUrlParamsArr = urlParamsArr.join('&').split('&');
  92. for (var i = 0; i < newUrlParamsArr.length; i++) {
  93. var paramKey = newUrlParamsArr[i].split('=')[0];
  94. var paramValue = newUrlParamsArr[i].split('=')[1];
  95. result.push({
  96. key: paramKey,
  97. value: paramValue
  98. });
  99. }
  100. return result;
  101. } else {
  102. console.log('该URL中不含参数');
  103. }
  104. };
  105. let locationArr = getUrlParams(locationLocaturl);
  106. if(!locationArr){
  107. let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=/pages/usercenter/usercenter`
  108. window.location.replace(loginurl);
  109. return
  110. };
  111. let itemtoken = locationArr.find(function(locationArr) {
  112. return locationArr.key === 'token';
  113. });
  114. let itemtokenHead = locationArr.find(function(locationArr) {
  115. return locationArr.key === 'tokenHead';
  116. });
  117. if (itemtoken) {
  118. this.params.token = itemtoken.value;
  119. }
  120. if (itemtokenHead) {
  121. this.params.tokenhead = itemtokenHead.value;
  122. }
  123. if(this.params.tokenhead&&this.params.token){
  124. let thetoken = this.params.tokenhead+this.params.token;
  125. this.$api.http.get(this.config.apiBaseurl+'/wechat/h5/info', {header: {Authorization:thetoken}}).then(res => {
  126. let userInfo = res.data;
  127. this.info = userInfo;
  128. this.pre = this.info.data.pre || '';
  129. this.user = this.info.data.user || '';
  130. this.company = this.info.data.company || '';
  131. this.wxuser = this.info.data.wxUsers;
  132. console.log('this.info',JSON.parse(JSON.stringify(this.info)));
  133. userInfo.accessToken = this.params.token;
  134. userInfo.tokenhead = this.params.tokenhead;
  135. this.setLogin(userInfo);
  136. }).catch(err => {
  137. if(err.data.message =='暂未登录或token已经过期'){
  138. let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=${this.thispage}`
  139. console.log('loginurl',loginurl);
  140. window.location.replace(loginurl);
  141. return
  142. }
  143. console.log(err)
  144. });
  145. };
  146. //获取会员信息
  147. let thetoken = this.params.tokenhead + this.params.token;
  148. // this.$api.http.get(this.config.apiBaseurl+'/sso/info',{header: {Authorization:thetoken}}).then(res => {
  149. // this.userinfo = res.data.data;
  150. // console.log('this.userinfo',JSON.parse(JSON.stringify(this.userinfo)));
  151. // }).catch(err => {
  152. // });
  153. },
  154. onLoad() {
  155. },
  156. methods: {
  157. ...mapMutations(['setLogin']),
  158. },
  159. // computed:{
  160. // ...mapState(['hasLogin','userInfo'])
  161. // }
  162. }
  163. </script>
  164. <style scoped>
  165. @import url("./usercenter.css");
  166. </style>