index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <template>
  2. <view>
  3. <global-loading />
  4. <view v-if="isShow" class="memberCenter">
  5. <view
  6. class="memberBg"
  7. :style="{ 'backgroundImage': 'url(' + memberListData[activeIndex].memberLevelBackground + ')', 'padding-top': paddingTop + 'px' }"
  8. >
  9. <view class="member-top" :style="{ 'top': topHeight + 'px' }">
  10. <view class="memberTopInfo">
  11. <view class="backBox">
  12. <image src="../../static/images/origin/back_img04.png" class="back" @click="back"></image>
  13. </view>
  14. <view class="memberTit fs30 font-color-FFF">会员中心</view>
  15. </view>
  16. </view>
  17. <view class="memberBox">
  18. <view class="posBox">
  19. <view class="memberBoxTop">
  20. <view class="memberTopPos">
  21. <swiper
  22. class="swiper pro-box" next-margin="30rpx" previous-margin="30rpx" :current="activeIndex"
  23. :indicator-dots="false" :autoplay="false" @change="swiperChange"
  24. >
  25. <swiper-item v-for="(item, index) in memberListData" :key="index" class="pro-item-warp">
  26. <view class="box">
  27. <view class="memberTopBg" :style="{ backgroundImage: 'url(' + item.memberLevelBackground + ')' }">
  28. <view class="flex-display flex-sp-between">
  29. <view class="nameBox">
  30. <view class="name fs36">{{ memberData.name }}</view>
  31. <view class="level">
  32. <image :src="item.memberLevelIcon"></image>
  33. </view>
  34. </view>
  35. <view class="avatarBox">
  36. <image :src="memberData.headImage"></image>
  37. </view>
  38. </view>
  39. <view class="growing">
  40. <view class="growingValue flex-display flex-sp-between">
  41. <label class="fs24 fs-weight-400 font-color-333">
  42. 当前会员成长值
  43. {{ memberData.growth }}
  44. </label>
  45. <label
  46. v-if="nextGrowth !== 0 && nextGrowth !== item.growth"
  47. class="fs24 fs-weight-400 font-color-333 mar-left-20"
  48. >
  49. {{ nextGrowth }}
  50. </label>
  51. </view>
  52. <view v-if="memberData.growth < nextGrowth" class="progressBar">
  53. <view style="width: 100%">
  54. <progress
  55. activeColor="#FFEBC4" :percent="getPercent(memberData.growth, nextGrowth)" active
  56. stroke-width="2"
  57. />
  58. </view>
  59. </view>
  60. <view v-else class="currentName">
  61. 以超越该等级
  62. </view>
  63. <!-- <view class="flex-display flex-sp-between"> -->
  64. <!-- <label class="fs24 font-color-71521B">{{memberData.memberLevelName}}</label> -->
  65. <!-- <label class="fs24 font-color-71521B">{{memberData.nextLevelName}}</label> -->
  66. <!-- </view> -->
  67. </view>
  68. </view>
  69. </view>
  70. </swiper-item>
  71. </swiper>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="equity">
  77. <view class="equityBox">
  78. <view class="equityTit">我的权益</view>
  79. <view class="equityList">
  80. <view v-for="item in equityList" :key="item.memberId" class="equityItem">
  81. <image :src="item.memberIcon"></image>
  82. <view class="fs26">{{ item.memberName }}</view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. <view class="signIn">
  88. <view class="signInList">
  89. <view class="signTit fs30 font-color-333">快速成长</view>
  90. <view class="signInBox">
  91. <view class="signItem flex-items flex-sp-between">
  92. <view class="itemLeft flex-items">
  93. <view class="leftIcon">
  94. <image src="../../static/images/origin/memberList2.png"></image>
  95. </view>
  96. <view class="leftInfo">
  97. <label class="fs28 font-color-333">购物</label>
  98. <view class="fs24 font-color-999">购买商品获取相应成长值</view>
  99. </view>
  100. </view>
  101. <view class="rightBtn" @click="goToShopping">
  102. 去购物
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. </view>
  109. </view>
  110. </view>
  111. </template>
  112. <script>
  113. const NET = require('../../utils/request')
  114. const API = require('../../config/api')
  115. export default {
  116. name: 'Index',
  117. data() {
  118. return {
  119. memberData: {},
  120. equityList: [],
  121. levelInfo: {},
  122. isShow: false,
  123. memberListData: [],
  124. nextGrowth: 0,
  125. activeIndex: 0,
  126. topHeight: 10,
  127. paddingTop: 50
  128. }
  129. },
  130. onLoad() {
  131. // #ifdef MP-WEIXIN || MP-BAIDU || MP-TOUTIAO || MP-QQ
  132. const menuButtonInfo = uni.getMenuButtonBoundingClientRect()
  133. this.topHeight = menuButtonInfo.top
  134. this.paddingTop = this.paddingTop + this.topHeight
  135. // #endif
  136. // #ifdef APP
  137. this.topHeight = 50
  138. this.paddingTop = 100
  139. // #endif
  140. // 定时器防止app一开始进入时页面混乱问题
  141. setTimeout(() => {
  142. this.getMemberShipList()
  143. }, 200)
  144. this.memberData = uni.getStorageSync('storage_userInfo')
  145. this.getMemberByMemberLevel()
  146. this.getMemberList()
  147. },
  148. methods: {
  149. swiperChange(item) {
  150. this.activeIndex = item.detail.current
  151. let num = 0
  152. num = this.activeIndex + 1
  153. if (num === this.memberListData.length) {
  154. this.nextGrowth = this.memberListData[this.activeIndex].growth
  155. } else {
  156. this.nextGrowth = this.memberListData[this.activeIndex + 1].growth
  157. }
  158. this.equityList = this.memberListData[this.activeIndex].membershipList
  159. },
  160. getMemberList() {
  161. NET.request(API.memberList, {}, 'GET').then((res) => {
  162. this.memberListData = res.data
  163. this.memberListData.forEach((item, index) => {
  164. if (item.memberLevelId === this.memberData.memberLevelId) {
  165. this.activeIndex = index
  166. let num = 0
  167. num = this.activeIndex + 1
  168. if (num === this.memberListData.length) {
  169. this.nextGrowth = this.memberListData[this.activeIndex].growth
  170. } else {
  171. this.nextGrowth = this.memberListData[this.activeIndex + 1].growth
  172. }
  173. this.equityList = this.memberListData[this.activeIndex].membershipList
  174. }
  175. })
  176. })
  177. },
  178. getMemberShipList() {
  179. // 获取会员信息
  180. // uni.showLoading({
  181. // mask: true,
  182. // title: '加载中...',
  183. // })
  184. NET.request(API.getMemberShipList, {}, 'GET').then((res) => {
  185. uni.hideLoading()
  186. this.equityList = res.data
  187. this.isShow = true
  188. })
  189. },
  190. // 去首页
  191. goToShopping() {
  192. this.$switchTab('/pages/tabbar/index/index')
  193. },
  194. getPercent(num, total) {
  195. num = parseFloat(num)
  196. total = parseFloat(total)
  197. if (isNaN(num) || isNaN(total)) {
  198. return '-'
  199. }
  200. return total <= 0 ? '0%' : Math.round((num / total) * 10000) / 100.0
  201. },
  202. // 获取会员等级
  203. getMemberByMemberLevel() {
  204. NET.request(`${API.getMemberByMemberLevel}/${this.memberData.memberLevelId}`, {}, 'GET').then((res) => {
  205. this.levelInfo = res.data
  206. uni.setStorageSync('storage_levelInfo', this.levelInfo)
  207. })
  208. },
  209. // 返回上一级
  210. back() {
  211. uni.navigateBack()
  212. }
  213. }
  214. }
  215. </script>
  216. <style lang="scss" scoped>
  217. .memberCenter {
  218. background-size: contain;
  219. min-height: 800rpx;
  220. .memberBg {
  221. background-repeat: no-repeat;
  222. padding-top: 50rpx;
  223. }
  224. .memberBox {
  225. width: 100%;
  226. //background: #523e3a;
  227. border-radius: 25rpx;
  228. background-size: contain;
  229. position: relative;
  230. box-sizing: border-box;
  231. .memberBoxTop {
  232. position: relative;
  233. .memberTopPos {
  234. overflow: hidden;
  235. .pro-box {
  236. height: 300rpx;
  237. }
  238. .swiper {
  239. .box {
  240. height: 300rpx;
  241. padding: 4rpx 10rpx;
  242. }
  243. }
  244. }
  245. .memberTopBg {
  246. background-size: cover;
  247. background-repeat: no-repeat;
  248. border-radius: 30rpx;
  249. padding: 40rpx 30rpx 30rpx 30rpx;
  250. box-shadow: 0 0 5rpx rgba(90, 90, 90, .5);
  251. height: 290rpx;
  252. .currentName {
  253. font-size: 26rpx;
  254. margin-top: 50rpx;
  255. color: #71521B;
  256. }
  257. }
  258. }
  259. .avatarBox {
  260. image {
  261. width: 110rpx;
  262. height: 110rpx;
  263. border: 5rpx solid #FFFFFF;
  264. border-radius: 50%;
  265. }
  266. }
  267. .nameBox {
  268. .name {
  269. color: #333333;
  270. margin-right: 30rpx;
  271. margin-bottom: 10rpx;
  272. }
  273. .level {
  274. image {
  275. width: 172rpx;
  276. height: 50rpx;
  277. }
  278. }
  279. }
  280. .growing {
  281. .growingValue {
  282. margin-top: 30rpx;
  283. }
  284. .progressBar {
  285. height: 20rpx;
  286. width: 100%;
  287. margin: 20rpx 0;
  288. }
  289. }
  290. }
  291. .equity {
  292. border-radius: 25rpx 25rpx 0 0;
  293. padding: 30rpx;
  294. background: #F8F8F8;
  295. margin-top: 50rpx;
  296. .equityBox {
  297. background: #FFFFFF;
  298. min-height: 326rpx;
  299. border-radius: 20rpx;
  300. padding: 10rpx 30rpx 30rpx 30rpx;
  301. .equityTit {
  302. font-weight: bold;
  303. height: 92rpx;
  304. line-height: 92rpx;
  305. }
  306. .equityList {
  307. border-top: 2rpx solid #F3F4F5;
  308. display: flex;
  309. flex-flow: wrap;
  310. padding-top: 30rpx;
  311. text-align: center;
  312. .equityItem {
  313. width: 25%;
  314. color: #666666;
  315. image {
  316. width: 92rpx;
  317. height: 92rpx;
  318. }
  319. }
  320. }
  321. }
  322. }
  323. .signIn {
  324. padding: 0 30rpx 30rpx 30rpx;
  325. background: #F8F8F8;
  326. .signInList {
  327. background: #FFFFFF;
  328. border-radius: 20rpx;
  329. padding: 0 30rpx 30rpx 30rpx;
  330. .signTit {
  331. font-weight: bold;
  332. height: 92rpx;
  333. line-height: 92rpx;
  334. }
  335. .signInBox {
  336. .signItem {
  337. border-top: 2rpx solid #F3F4F5;
  338. padding: 30rpx 0;
  339. .itemLeft {
  340. image {
  341. width: 92rpx;
  342. height: 92rpx;
  343. margin-right: 30rpx;
  344. }
  345. }
  346. }
  347. .rightBtn {
  348. width: 160rpx;
  349. height: 58rpx;
  350. line-height: 58rpx;
  351. background: #333333;
  352. border-radius: 10rpx;
  353. color: #FFEBC4;
  354. text-align: center;
  355. }
  356. }
  357. }
  358. }
  359. .member-top {
  360. width: 100%;
  361. position: fixed;
  362. z-index: 99;
  363. left: 0;
  364. .memberTopInfo {
  365. position: relative;
  366. width: 100%;
  367. height: 60rpx;
  368. display: flex;
  369. align-items: center;
  370. justify-content: center;
  371. }
  372. .backBox {
  373. position: absolute;
  374. left: 10rpx;
  375. top: 0rpx;
  376. .back {
  377. width: 50rpx;
  378. height: 50rpx;
  379. padding: 0rpx 10rpx;
  380. }
  381. }
  382. }
  383. }
  384. </style>
  385. <style>
  386. page {
  387. background: #F8F8F8;
  388. }
  389. .progressBar /deep/ .uni-progress-bar {
  390. background-color: rgb(235, 235, 235, 0.6) !important;
  391. height: 5rpx !important;
  392. border-radius: 22rpx;
  393. }
  394. .progressBar /deep/ .uni-progress-bar .uni-progress-inner-bar {
  395. border-radius: 22rpx;
  396. }
  397. </style>