vip.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. <template>
  2. <view class="content">
  3. <u-navbar title="会员福利" bgColor="rgba(0,0,0,0)" safeAreaInsetTop placeholder autoBack height="44px"></u-navbar>
  4. <image src="static/jifen-bg.png" mode="aspectFill" class="top_bg"></image>
  5. <view class="top">
  6. <yxVip :user="user" :showsign="false" :showlevel="true"></yxVip>
  7. </view>
  8. <view class="content-bg">
  9. <view class="box">
  10. <view class="title">升级领福利</view>
  11. <view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  12. <view class="item-left hflex acenter">
  13. <image :src="item.prize_image" mode="aspectFill" v-if="item.prize_type != 'integral'"></image>
  14. <image src="@/static/images/jifen.png" mode="aspectFill" v-else></image>
  15. <view class="img-right vflex">
  16. <text>当前等级达到{{item.level}}级</text>
  17. <text>奖励:{{item.prize_name}}</text>
  18. </view>
  19. <!-- <view class="img-right vflex" v-if="item.prize_type == 'coupon'">
  20. <text>当前等级达到{{item.level}}级</text>
  21. <text>奖励:{{item.prize_name}}</text>
  22. </view> -->
  23. </view>
  24. <view class="item-right">
  25. <view class="button1" v-if="item.is_qualified == 0">
  26. 未达成
  27. </view>
  28. <view class="button2" v-if="item.is_qualified != 0 && item.is_received != 0"
  29. @click="toadd(item)" :style="'color: ' + item.prize_type == 'goods' ? '#00B0B0;' : ''">
  30. {{item.prize_type == 'goods' ? '添加客服' : '已领取'}}
  31. </view>
  32. <view class="button3" v-if="item.is_qualified != 0 && item.is_received == 0"
  33. @click="toprize(item)">
  34. 领取奖励
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <u-popup :show="show_address" @close="toclose" mode="bottom" :round="13">
  41. <addressBox @close="toclose" @select="selectAddress"></addressBox>
  42. </u-popup>
  43. <u-popup :show="show_submit" @close="toclose" mode="center" :round="10">
  44. <view class="popu1 vflex acenter">
  45. <image src="static/success.png" mode="aspectFill"></image>
  46. <view class="success">领取成功</view>
  47. <view class="success-text">请前往添加客服微信</view>
  48. <view class="hflex acenter btns">
  49. <view class="btn1" @click="toclose">稍后添加</view>
  50. <view class="btn2" @click="show_wx = true">添加客服</view>
  51. </view>
  52. </view>
  53. </u-popup>
  54. <u-popup :show="show_wx" @close="toclose" mode="center" :round="10">
  55. <kefu-wx :wxcode="wxcode" @submit="toclose"></kefu-wx>
  56. </u-popup>
  57. </view>
  58. </template>
  59. <script>
  60. import yxVip from '@/components/yx-vip/index.vue'
  61. import addressBox from './components/addressbox.vue'
  62. import kefuWx from './components/kefu-wx.vue'
  63. import $api from '@/static/js/api.js'
  64. export default {
  65. components: {
  66. yxVip,
  67. addressBox,
  68. kefuWx
  69. },
  70. data() {
  71. return {
  72. user: {},
  73. list: [],
  74. address_id: '',
  75. show_address: false,
  76. prize: {},
  77. show_submit: false,
  78. show_wx: false,
  79. wxcode: '',
  80. page: 1,
  81. last_page: 1,
  82. }
  83. },
  84. onLoad() {
  85. },
  86. onShow() {
  87. this.getuser()
  88. this.list = []
  89. this.getlist()
  90. },
  91. onReachBottom() {
  92. if (this.page < this.last_page) {
  93. this.page++
  94. this.getlist()
  95. } else {
  96. uni.$u.toast('已经到底了')
  97. return
  98. }
  99. },
  100. methods: {
  101. getcode() {
  102. var that = this
  103. $api.req({
  104. url: 'config',
  105. data: {
  106. module: 'basic'
  107. }
  108. }, function(res) {
  109. that.wxcode = res.data.customer_service_qrcode
  110. })
  111. },
  112. toadd(item) {
  113. if (item.prize_type == 'goods') {
  114. this.show_submit = true
  115. this.getcode()
  116. } else {
  117. return
  118. }
  119. },
  120. selectAddress(e) {
  121. console.log(e, '---------');
  122. this.address_id = e
  123. this.toreceive(this.prize.id)
  124. this.toclose()
  125. },
  126. toclose() {
  127. this.show_address = false
  128. this.show_submit = false
  129. this.show_wx = false
  130. },
  131. toprize(item) {
  132. var _this = this
  133. if (item.prize_type == 'goods') {
  134. this.prize = item
  135. this.show_address = true
  136. } else {
  137. this.toreceive((item.id))
  138. }
  139. },
  140. toreceive(id) {
  141. var _this = this
  142. $api.req({
  143. url: 'level/prize/' + id + '/receive',
  144. method: 'POST',
  145. data: {
  146. address_id: _this.address_id ? _this.address_id : '0'
  147. }
  148. }, function(res) {
  149. if (res.code == 10000) {
  150. $api.info('领取成功')
  151. _this.getlist()
  152. }
  153. })
  154. },
  155. getlist() {
  156. var _this = this
  157. $api.req({
  158. url: 'level/prize',
  159. method: 'GET',
  160. data: {
  161. page: _this.page,
  162. limit: 10,
  163. is_page: 1
  164. }
  165. }, function(res) {
  166. if (res.code == 10000) {
  167. _this.list = _this.list.concat(res.data.list)
  168. _this.last_page = res.data.last_page
  169. }
  170. })
  171. },
  172. getuser() {
  173. var _this = this
  174. $api.req({
  175. url: 'user/info',
  176. methos: 'GET'
  177. }, function(res) {
  178. if (res.code == 10000) {
  179. _this.user = res.data
  180. }
  181. })
  182. },
  183. }
  184. }
  185. </script>
  186. <style lang="scss">
  187. .content {
  188. background: unset;
  189. .popu1 {
  190. width: 510rpx;
  191. padding: 46rpx 0;
  192. .top {
  193. width: 100%;
  194. .top-title {
  195. font-size: 32rpx;
  196. font-family: PingFangSC, PingFang SC;
  197. font-weight: 600;
  198. color: #000000;
  199. text-align: center;
  200. padding-left: 100rpx;
  201. }
  202. image {
  203. width: 36rpx;
  204. height: 36rpx;
  205. }
  206. }
  207. .center {
  208. image {
  209. width: 310rpx;
  210. height: 310rpx;
  211. }
  212. text {
  213. font-size: 22rpx;
  214. font-family: PingFangSC, PingFang SC;
  215. font-weight: 400;
  216. color: rgba(0, 0, 0, .42);
  217. }
  218. }
  219. image {
  220. width: 78rpx;
  221. height: 78rpx;
  222. margin: 12rpx 36rpx;
  223. }
  224. .success {
  225. font-size: 30rpx;
  226. font-family: PingFangSC, PingFang SC;
  227. font-weight: 400;
  228. color: #000000;
  229. }
  230. .success-text {
  231. font-size: 24rpx;
  232. font-family: PingFangSC, PingFang SC;
  233. font-weight: 400;
  234. color: rgba(0, 0, 0, .6);
  235. padding: 8rpx 0 42rpx;
  236. }
  237. .btns {
  238. .btn1 {
  239. width: 204rpx;
  240. height: 72rpx;
  241. background: #E7E7E7;
  242. border-radius: 40rpx;
  243. font-size: 28rpx;
  244. font-family: PingFangSC, PingFang SC;
  245. font-weight: 400;
  246. color: #666666;
  247. line-height: 72rpx;
  248. text-align: center;
  249. }
  250. .btn2 {
  251. width: 204rpx;
  252. height: 72rpx;
  253. background: #00B0B0;
  254. border-radius: 40rpx;
  255. font-size: 28rpx;
  256. font-family: PingFangSC, PingFang SC;
  257. font-weight: 400;
  258. color: #FFFFFF;
  259. line-height: 72rpx;
  260. text-align: center;
  261. margin: 0 0 0 26rpx;
  262. }
  263. }
  264. }
  265. .content-bg {
  266. background: #f5f5f5;
  267. min-height: 80vh;
  268. }
  269. .box {
  270. margin: 20rpx auto;
  271. width: 694rpx;
  272. background: #FFFFFF;
  273. border-radius: 16rpx;
  274. box-sizing: border-box;
  275. padding: 28rpx;
  276. .title {
  277. font-size: 32rpx;
  278. font-family: PingFangSC, PingFang SC;
  279. font-weight: 600;
  280. color: #333333;
  281. }
  282. .list-item {
  283. margin-top: 40rpx;
  284. .item-left {
  285. image {
  286. width: 100rpx;
  287. height: 100rpx;
  288. }
  289. .img-right {
  290. padding-left: 20rpx;
  291. text:first-child {
  292. font-size: 28rpx;
  293. font-family: SFPro, SFPro;
  294. font-weight: 500;
  295. color: #333333;
  296. }
  297. text:last-child {
  298. font-size: 24rpx;
  299. font-family: PingFangSC, PingFang SC;
  300. font-weight: 400;
  301. color: #666666;
  302. padding-top: 12rpx;
  303. }
  304. }
  305. }
  306. .item-right {
  307. .button1 {
  308. width: 128rpx;
  309. height: 56rpx;
  310. font-family: PingFangSC, PingFang SC;
  311. font-weight: 400;
  312. font-size: 28rpx;
  313. color: #999999;
  314. line-height: 56rpx;
  315. text-align: center;
  316. }
  317. .button2 {
  318. width: 128rpx;
  319. height: 56rpx;
  320. background: #D8D8D8;
  321. border-radius: 28rpx;
  322. font-weight: 400;
  323. font-size: 24rpx;
  324. color: #FFFFFF;
  325. line-height: 56rpx;
  326. text-align: center;
  327. }
  328. .button3 {
  329. width: 128rpx;
  330. height: 56rpx;
  331. background: rgba(0, 176, 176, .1);
  332. border-radius: 28rpx;
  333. font-weight: 400;
  334. font-size: 24rpx;
  335. color: #00B0B0;
  336. line-height: 56rpx;
  337. text-align: center;
  338. }
  339. }
  340. }
  341. }
  342. .top_bg {
  343. position: absolute;
  344. width: 100%;
  345. top: 0;
  346. left: 0;
  347. z-index: -1;
  348. }
  349. .top {
  350. width: 694rpx;
  351. margin: 108rpx auto 0;
  352. }
  353. }
  354. </style>