usercenter.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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/myorder/myorder">
  49. <view class="select-bar">
  50. <svg class="icon select-bar-icon" aria-hidden="true">
  51. <use xlink:href="#icondizhi"></use>
  52. </svg>
  53. <view class="select-bar-text">我的订单</view>
  54. <view class="select-bar-arrow"></view>
  55. </view>
  56. </navigator> -->
  57. <!-- <navigator url="/pages/usercenter/addrs/addrs">
  58. <view class="select-bar">
  59. <svg class="icon select-bar-icon" aria-hidden="true">
  60. <use xlink:href="#icondizhi1"></use>
  61. </svg>
  62. <view class="select-bar-text">收货地址</view>
  63. <view class="select-bar-arrow"></view>
  64. </view>
  65. </navigator> -->
  66. <navigator url="/pages/usercenter/feedback/feedback">
  67. <view class="select-bar">
  68. <svg class="icon select-bar-icon" aria-hidden="true">
  69. <use xlink:href="#iconbangzhu"></use>
  70. </svg>
  71. <view class="select-bar-text">帮助反馈</view>
  72. <view class="select-bar-arrow"></view>
  73. </view>
  74. </navigator>
  75. </view>
  76. </view>
  77. </template>
  78. <script>
  79. import { mapState, mapMutations } from 'vuex';
  80. export default {
  81. data() {
  82. return {
  83. params:{
  84. token:'',
  85. tokenhead:'',
  86. },
  87. info:'',
  88. name:'',
  89. usertype:'',
  90. usercompany:'',
  91. myfocus:0,
  92. focusme:1,
  93. pre:[],
  94. user:[],
  95. company:[],
  96. wxuser:[],
  97. thispage:'',
  98. }
  99. },
  100. onShow() {
  101. this.thispage = `/pages/usercenter/usercenter`;
  102. let serf = this;
  103. let locationLocaturl = window.location.search;
  104. function getUrlParams(url) {
  105. if (decodeURIComponent(url).indexOf('?') > -1) {
  106. var result = [];
  107. var urlParamsArr = decodeURIComponent(url).split('?');
  108. urlParamsArr.shift();
  109. let newUrlParamsArr = urlParamsArr.join('&').split('&');
  110. for (var i = 0; i < newUrlParamsArr.length; i++) {
  111. var paramKey = newUrlParamsArr[i].split('=')[0];
  112. var paramValue = newUrlParamsArr[i].split('=')[1];
  113. result.push({
  114. key: paramKey,
  115. value: paramValue
  116. });
  117. }
  118. return result;
  119. } else {
  120. console.log('该URL中不含参数');
  121. }
  122. };
  123. let locationArr = getUrlParams(locationLocaturl);
  124. if(!locationArr){
  125. let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=/pages/usercenter/usercenter`
  126. window.location.replace(loginurl);
  127. return
  128. };
  129. let itemtoken = locationArr.find(function(locationArr) {
  130. return locationArr.key === 'token';
  131. });
  132. let itemtokenHead = locationArr.find(function(locationArr) {
  133. return locationArr.key === 'tokenHead';
  134. });
  135. if (itemtoken) {
  136. this.params.token = itemtoken.value;
  137. }
  138. if (itemtokenHead) {
  139. this.params.tokenhead = itemtokenHead.value;
  140. }
  141. if(this.params.tokenhead&&this.params.token){
  142. let thetoken = this.params.tokenhead+this.params.token;
  143. this.$api.http.get(this.config.apiBaseurl+'/wechat/h5/info', {header: {Authorization:thetoken}}).then(res => {
  144. let userInfo = res.data;
  145. this.info = userInfo;
  146. this.pre = this.info.data.pre || '';
  147. this.user = this.info.data.user || '';
  148. this.company = this.info.data.company || '';
  149. this.wxuser = this.info.data.wxUsers;
  150. console.log('this.info',JSON.parse(JSON.stringify(this.info)));
  151. userInfo.accessToken = this.params.token;
  152. userInfo.tokenhead = this.params.tokenhead;
  153. this.setLogin(userInfo);
  154. }).catch(err => {
  155. if(err.data.message =='暂未登录或token已经过期'){
  156. let loginurl = `${this.config.apiBaseurl}/wechat/h5/authorize?returnUrl=${this.thispage}`
  157. console.log('loginurl',loginurl);
  158. window.location.replace(loginurl);
  159. return
  160. }
  161. console.log(err)
  162. });
  163. };
  164. //获取会员信息
  165. let thetoken = this.params.tokenhead + this.params.token;
  166. // this.$api.http.get(this.config.apiBaseurl+'/sso/info',{header: {Authorization:thetoken}}).then(res => {
  167. // this.userinfo = res.data.data;
  168. // console.log('this.userinfo',JSON.parse(JSON.stringify(this.userinfo)));
  169. // }).catch(err => {
  170. // });
  171. },
  172. onLoad() {
  173. },
  174. methods: {
  175. ...mapMutations(['setLogin']),
  176. },
  177. // computed:{
  178. // ...mapState(['hasLogin','userInfo'])
  179. // }
  180. }
  181. </script>
  182. <style scoped>
  183. @import url("./usercenter.css");
  184. </style>