index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. <template>
  2. <view class="content u-skeleton">
  3. <!-- 骨架屏 -->
  4. <Skeleton el-color="#efefef" bg-color="#fff" :loading="loading && isFirstComeIn" :animation="true"></Skeleton>
  5. <!-- 我的 -->
  6. <view class="page-content">
  7. <!-- 用户未登录 -->
  8. <view class=" font-weight-bold">会员中心</view>
  9. <view
  10. v-if="userItem.name === undefined" class="user-info-box"
  11. @click="$jump('../../../pages_category_page2/userModule/login')"
  12. >
  13. <image class="user-image u-skeleton-circle" src="../../../static/images/origin/morentouxiang.png" mode="widthFix">
  14. </image>
  15. <view class="user-info">
  16. <view class="user-logoin-title u-skeleton-fillet">点击登录</view>
  17. <view class="user-logoin-lable u-skeleton-fillet">登录后享受更多权益~</view>
  18. </view>
  19. <image class="user-info-right" src="../../../static/images/origin/back.png"></image>
  20. <view class="notice">
  21. <tui-icon name="notice" :size="26"></tui-icon>
  22. <view v-if="userItem.notRead > 0" class="messNum">
  23. {{ userItem.notRead }}
  24. </view>
  25. </view>
  26. </view>
  27. <!-- 用户已登陆 -->
  28. <view v-else class="user-info-box">
  29. <image
  30. v-if="userItem.headImage" class="user-image u-skeleton-fillet" :src="userItem.headImage" mode="widthFix"
  31. style="border-radius: 50%;" @click="handleJump('../../../pages_category_page2/userModule/personalDetails')"
  32. >
  33. </image>
  34. <image v-else class="user-image" src="../../../static/images/origin/morentouxiang.png" mode="widthFix">
  35. </image>
  36. <view class="user-info">
  37. <view v-if="userItem.name" class="user-logoin-title font-weight-bold">
  38. <!-- <image class="userTypeIcon" :src="returnUserRole(userItem.type).iconUrl"></image> -->
  39. <span>{{ returnUserRole(userItem.type).name }}</span>{{ userItem.name }}
  40. </view>
  41. <view class="experience flex-items" @click="handleJump('../../../pages_category_page1/memberCenter/index')">
  42. <label>成长值</label>
  43. <view class="experienceValue">{{ userItem.growth || 0 }} / {{ userItem.nextLevelGrowth || 0 }}</view>
  44. </view>
  45. </view>
  46. <view class="notice" @click="handleJump('../../../pages_category_page2/userModule/messageCenter')">
  47. <tui-icon name="notice" :size="26"></tui-icon>
  48. <view v-if="userItem.notRead > 0" class="messNum">
  49. {{ userItem.notRead > 99 ? '99+' : userItem.notRead }}
  50. </view>
  51. </view>
  52. </view>
  53. <MyPurse></MyPurse>
  54. <!-- 订单卡片 -->
  55. <view class="order-box">
  56. <view
  57. v-for="orderCardItem in orderCardList" :key="orderCardItem.id" class="order-item"
  58. @click="handleJump(orderCardItem.jumpUrl)"
  59. >
  60. <image class="order-item-image u-skeleton-circle" :src="orderCardItem.icon" mode="widthFix">
  61. </image>
  62. <view class="order-item-text u-skeleton-fillet">{{ orderCardItem.label }}</view>
  63. <view v-if="userItem[orderCardItem.key] > 0" class="quan">
  64. {{ userItem[orderCardItem.key] }}
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 第一个卡片 -->
  69. <view class="backColorFFF mar-top-30 bor-rad-30">
  70. <view class="pad-left-20 pad-top-20 font-weight-bold fs30">我的工具</view>
  71. <view class="itemBox">
  72. <view v-for="item in fastCardOneList" :key="item.label" class="item-btn" @click="handleJump(item.jumpUrl)">
  73. <image class="item-btn-icon u-skeleton-circle" :src="item.icon" mode="widthFix"></image>
  74. <view class="item-btn-text u-skeleton-fillet">{{ item.label }}</view>
  75. </view>
  76. </view>
  77. <view style="display: flex;flex-flow: wrap;justify-content: space-evenly;padding-bottom: 14upx;">
  78. <view
  79. v-for="item in fastCardOneSpecialList" :key="item.label"
  80. style="display: flex;justify-content: space-between;align-items: center;width: 46%;margin-bottom: 20upx;padding: 20upx;background-color: #f8f5ed;border-radius: 10upx;"
  81. @click="handleJump(item.jumpUrl)"
  82. >
  83. <view>
  84. <view style="margin-bottom: 6upx;;font-size: 32upx;color: #8E6251;">{{ item.label }}</view>
  85. <view style="font-size: 22upx;color: #A29898;">{{ item.desc }}</view>
  86. </view>
  87. <image style="width: 92upx;height: 92upx;" :src="item.icon" mode="widthFix"></image>
  88. </view>
  89. </view>
  90. </view>
  91. <!-- 第二个卡片 -->
  92. <view class="backColorFFF mar-top-30 bor-rad-30">
  93. <view class="pad-left-20 pad-top-20 font-weight-bold fs30">我的服务</view>
  94. <view class="itemBox">
  95. <view v-for="item in fastCardTwoList" :key="item.label" class="item-btn" @click="handleJump(item.jumpUrl)">
  96. <image class="item-btn-icon u-skeleton-circle" :src="item.icon" mode="widthFix"></image>
  97. <view class="item-btn-text u-skeleton-fillet">{{ item.label }}</view>
  98. </view>
  99. </view>
  100. </view>
  101. <!-- 特殊卡片 -->
  102. <view>
  103. <view>
  104. <view v-for="item in fastCardSpecialList" :key="item.label" @click="handleJump(item.jumpUrl)">
  105. <template v-if="item.label === '平台客服'">
  106. <DragButton text="客服在线" :icon-src="item.icon" is-dock exist-tab-bar @btnClick="handleJump(item.jumpUrl)" />
  107. </template>
  108. </view>
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. </template>
  114. <script>
  115. import MyPurse from './components/myPurse.vue'
  116. import Skeleton from '../../../components/Skeleton'
  117. import { fastCardOneList, fastCardOneSpecialList, fastCardTwoList, fastCardSpecialList, orderCardList } from './index.data'
  118. import { Services } from '../../../utils/services'
  119. import { Encrypt } from '../../../utils/secret'
  120. import { J_STORAGE_KEY } from '../../../config/constant'
  121. const NET = require('../../../utils/request')
  122. const API = require('../../../config/api')
  123. export default {
  124. name: 'User',
  125. components: { Skeleton, MyPurse },
  126. data() {
  127. return {
  128. isFirstComeIn: true,
  129. loading: true,
  130. orderCardList,
  131. fastCardOneList,
  132. fastCardOneSpecialList,
  133. fastCardTwoList,
  134. fastCardSpecialList,
  135. cacheUserItem: {},
  136. userItem: {
  137. headImage: '',
  138. name: undefined
  139. }
  140. }
  141. },
  142. onShow() {
  143. this.isFirstComeIn = true
  144. if (uni.getStorageSync(J_STORAGE_KEY)) {
  145. this.cacheUserItem = uni.getStorageSync(J_STORAGE_KEY)
  146. }
  147. this.handleGetUser()
  148. },
  149. methods: {
  150. /**
  151. * 用户类型
  152. * @param { String, Number } type
  153. * @return { Object }
  154. */
  155. returnUserRole(type) { // 0-商家 1-策划师 2-分公司
  156. const userRoleType = [
  157. { name: '商家', iconUrl: require('@/static/images/user/userType/shangjia.png') },
  158. { name: '策划师', iconUrl: require('@/static/images/user/userType/cehuashi.png') },
  159. { name: '分公司', iconUrl: require('@/static/images/user/userType/fengongsi.png') },
  160. { name: '普通会员', iconUrl: require('@/static/images/user/userType/fengongsi.png') }
  161. ]
  162. return userRoleType[type]
  163. },
  164. /**
  165. * 处理跳转
  166. * @param url
  167. */
  168. handleJump(url) {
  169. if (JSON.stringify(this.cacheUserItem) === '{}') {
  170. return this.$jump('../../../pages_category_page2/userModule/login')
  171. }
  172. if (url.startsWith('function')) {
  173. const [key, funcName] = url.split(':')
  174. this[funcName]()
  175. } else {
  176. this.$jump(url)
  177. }
  178. },
  179. /**
  180. * 获取用户信息
  181. */
  182. handleGetUser() {
  183. this.loading = true
  184. NET.request(API.GetUser, {}, 'GET').then((res) => {
  185. this.userItem = res.data
  186. uni.setStorageSync('storage_userInfo', this.userItem)
  187. this.isFirstComeIn = false
  188. this.loading = true
  189. })
  190. },
  191. /**
  192. * 客服
  193. * @return {Promise<void>}
  194. */
  195. async flyToService() {
  196. (await Services()).flyToService()
  197. },
  198. /**
  199. * 商家入驻
  200. */
  201. handleApplySettle() {
  202. const res = uni.getStorageSync(J_STORAGE_KEY)
  203. const token = Encrypt(res.token)
  204. const username = this.userItem.name
  205. let url = null
  206. // #ifdef H5
  207. window.location.href = API.SettledMerchantPrefix + `/#/?username=${username}&user=${token}`
  208. // #endif
  209. // #ifdef APP
  210. plus.runtime.openURL(API.SettledMerchantPrefix + `/#/?username=${username}&user=${token}`, function (e) {
  211. })
  212. // #endif
  213. // #ifdef MP-WEIXIN
  214. url = API.SettledMerchantPrefix
  215. uni.navigateTo({
  216. url: `../../../pages_category_page1/linkOthers/index?url=${url}&username=${username}&user=${token}`
  217. // 此处的链接为小程序上面新建的webview页面路径,参数url为要跳转外链的地址
  218. // url: '../../../pages_category_page1/linkOthers/index?url=' + encodeURIComponent(url)
  219. // url:'../../../pages_category_page2/userModule/coupon'
  220. })
  221. // #endif
  222. // #ifdef MP-ALIPAY
  223. url = API.SettledMerchantPrefix
  224. uni.navigateTo({
  225. url: `../../../pages_category_page1/linkOthers/index?url=${url}&username=${username}&user=${token}`
  226. // 此处的链接为小程序上面新建的webview页面路径,参数url为要跳转外链的地址
  227. // url: '../../../pages_category_page1/linkOthers/index?url=' + encodeURIComponent(url)
  228. // url:'../../../pages_category_page2/userModule/coupon'
  229. })
  230. // #endif
  231. }
  232. }
  233. }
  234. </script>
  235. <style lang="scss" scoped>
  236. .content {
  237. min-height: 100vh;
  238. position: relative;
  239. padding: 50upx 32upx 150rpx;
  240. box-sizing: border-box;
  241. background: linear-gradient(180deg, #FEF7F1 14%, #F5F4F6 30%);
  242. .page-content {
  243. width: 100%;
  244. height: 100%;
  245. .user-info-box {
  246. width: 100%;
  247. box-sizing: border-box;
  248. padding: 30upx 0;
  249. display: flex;
  250. flex-direction: row;
  251. align-items: center;
  252. position: relative;
  253. .notice {
  254. width: 60rpx;
  255. height: 60rpx;
  256. position: absolute;
  257. top: 0;
  258. right: 50rpx;
  259. .messNum {
  260. position: absolute;
  261. top: -8upx;
  262. right: -8upx;
  263. background: #C83732;
  264. border-radius: 50%;
  265. color: #FFFFFF;
  266. text-align: center;
  267. width: 30rpx;
  268. height: 30rpx;
  269. line-height: 30rpx;
  270. font-size: 20rpx;
  271. }
  272. }
  273. .user-image {
  274. width: 112upx;
  275. height: 112upx;
  276. }
  277. .user-info {
  278. // flex: 1;
  279. display: flex;
  280. flex-direction: column;
  281. padding-left: 20upx;
  282. box-sizing: border-box;
  283. z-index: 10;
  284. .user-logoin-title {
  285. font-size: 36upx;
  286. display: inline-flex;
  287. align-items: center;
  288. > span {
  289. margin: 0 8rpx;
  290. padding: 4rpx 15rpx;
  291. border-radius: 15rpx;
  292. box-sizing: border-box;
  293. background-color: #c6c6c666;
  294. color: #234184b5;
  295. }
  296. .userTypeIcon {
  297. margin: 0 8rpx;
  298. width: 46rpx;
  299. height: 46rpx;
  300. }
  301. }
  302. .user-logoin-lable {
  303. font-size: 24upx;
  304. font-weight: 400;
  305. margin-top: 20upx;
  306. }
  307. .experience {
  308. margin-top: 10rpx;
  309. margin-left: 8rpx;
  310. label {
  311. font-size: 26rpx;
  312. opacity: 0.7;
  313. }
  314. .experienceValue {
  315. width: auto;
  316. padding: 0 28rpx;
  317. height: 40rpx;
  318. font-weight: 400;
  319. border-radius: 25rpx;
  320. line-height: 40rpx;
  321. border: 2rpx solid rgba(0, 0, 0, 0);
  322. background: linear-gradient(88deg, #C5AA7B 0%, #F5DEB2 100%);
  323. font-size: 20rpx;
  324. margin-left: 20rpx;
  325. }
  326. }
  327. }
  328. .user-info-right {
  329. width: 30upx;
  330. height: 30upx;
  331. }
  332. }
  333. .order-box {
  334. display: flex;
  335. flex-direction: row;
  336. align-items: center;
  337. padding: 20upx 0;
  338. background: rgba(255, 255, 255, 1);
  339. border-radius: 24upx;
  340. box-shadow: 0px 0px 10upx 0px rgba(51, 51, 51, 0.1);
  341. z-index: 10;
  342. .order-item {
  343. flex: 1;
  344. display: flex;
  345. flex-direction: column;
  346. align-items: center;
  347. justify-content: center;
  348. position: relative;
  349. .quan {
  350. position: absolute;
  351. right: 40upx;
  352. top: 10upx;
  353. border: 1px solid red;
  354. color: #FFFFFF;
  355. background-color: red;
  356. border-radius: 50%;
  357. font-size: 16rpx;
  358. width: 30upx;
  359. height: 30upx;
  360. line-height: 30upx;
  361. text-align: center;
  362. }
  363. .order-item-image {
  364. width: 90upx;
  365. height: 90upx;
  366. }
  367. .order-item-text {
  368. font-size: 28upx;
  369. margin-top: 10upx;
  370. font-weight: bold;
  371. }
  372. }
  373. }
  374. .itemBox {
  375. display: flex;
  376. flex-flow: wrap;
  377. padding-top: 30rpx;
  378. .item-btn {
  379. width: 25%;
  380. background-color: #fff;
  381. text-align: center;
  382. margin-bottom: 40rpx;
  383. .item-btn-icon {
  384. width: 72upx;
  385. height: 72upx !important;
  386. }
  387. .item-btn-text {
  388. font-size: 28upx;
  389. font-weight: 500;
  390. flex: 1;
  391. color: rgba(102, 102, 102, 1);
  392. }
  393. }
  394. }
  395. }
  396. }
  397. </style>