couponlist.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <view class="">
  3. <u-navbar
  4. title="活动中心"
  5. :placeholder="true"
  6. :autoBack="false"
  7. @leftClick="leftClick"
  8. :safeAreaInsetTop="true"
  9. >
  10. </u-navbar>
  11. <view class="tabs-wrap">
  12. <u-tabs
  13. :list="tabsList"
  14. lineColor="#ED0000"
  15. :activeStyle="{color:'#ED0000','font-weight': '600','font-size':'30rpx'}"
  16. :inactiveStyle="{color:'#999'}"
  17. :itemStyle="{width:'28%','padding-bottom':'20rpx'}"
  18. @click="tabsClick"></u-tabs>
  19. </view>
  20. <u-empty mode="data" v-if="tabsList.length<1" >
  21. </u-empty>
  22. <mescroll-body class="" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption" :up="upOption">
  23. <view class="page-wrap" v-if="dataList.length>0" >
  24. <view class="coupon-list">
  25. <view class="item"
  26. :class="{disable:item.status==2,ifReceive:item.ifReceive==1}"
  27. :style="{backgroundImage:`url(${staticUrl}/img/coupon-active-bg.png)`}" v-for="item in dataList" :key="item.couponId">
  28. <view class="content u-flex">
  29. <view class="left">
  30. <view class="quota">
  31. <text v-if="item.type == 1">¥</text>
  32. <text class="number" :class="{'small': String(item.quota).length>=3}">{{item.quota}}</text>
  33. <text v-if="item.type == 2">%</text>
  34. </view>
  35. <view class="condition" v-if="item.useThresholdType == 2">
  36. 消费满{{item.useThresholdAmount}}可用
  37. </view>
  38. </view>
  39. <view class="center">
  40. <view class="name" :class="{'small': String(item.couponName).length>=9}">{{item.couponName}}</view>
  41. <view class="tip">
  42. <view class="" v-if="item.useType==1">
  43. <!-- <view class="">{{item.useStartDate}}</view>
  44. <view class="">{{item.useEndDate}}</view> -->
  45. 有效期至 {{item.useEndDate}}
  46. </view>
  47. <view class="" v-if="item.useType==2">
  48. 领取后{{item.useDay}}天内有效
  49. </view>
  50. </view>
  51. </view>
  52. <view class="right">
  53. <text class="btn" @click="receiveCoupon(item)" v-if="item.ifReceive!==1">立即领取</text>
  54. <text class="btn" v-else>立即领取</text>
  55. <!-- <view class="time">
  56. <view class="">{{item.issuseStartDate}}</view>
  57. <view class="">{{item.issuseEndDate}}</view>
  58. </view> -->
  59. </view>
  60. </view>
  61. <view class="type" v-if="item.type == 1">满减券</view>
  62. <view class="type" v-else-if="item.type == 2">折扣卷</view>
  63. <!-- <image class="status-img" :src="staticUrl+'/img/coupon-status-shiyong.png'"></image> -->
  64. </view>
  65. </view>
  66. </view>
  67. </mescroll-body>
  68. <u-popup :show="receiveCouponSuccessShow" @close="receiveCouponSuccessClose" mode="center" bgColor="transparent">
  69. <view class="receive-coupon-success">
  70. <view class="content" :style="{backgroundImage:`url(${staticUrl}/img/receive-coupon-success.png)`}">
  71. <view class="title">领取成功</view>
  72. <view class="con">恭喜您!优惠券领取成功!</view>
  73. </view>
  74. <u-icon @click="receiveCouponSuccessClose" name="close-circle" color="#B5B5B5" size="80rpx"></u-icon>
  75. </view>
  76. </u-popup>
  77. </view>
  78. </template>
  79. <script>
  80. // 引入mescroll-mixins.js
  81. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  82. export default {
  83. mixins: [MescrollMixin], // 使用mixin
  84. data() {
  85. return {
  86. staticUrl:this.$commonConfig.staticUrl,
  87. downOption: {},
  88. // 上拉加载的配置(可选, 绝大部分情况无需配置)
  89. upOption: {
  90. page: {
  91. size: 10 // 每页数据的数量,默认10
  92. },
  93. noMoreSize: 5, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
  94. empty: {
  95. tip: '暂无相关数据'
  96. }
  97. },
  98. tabsList:[],
  99. params:{
  100. actId:''
  101. },
  102. activeIndex:0,
  103. dataList: [],
  104. receiveCouponSuccessShow:false,
  105. }
  106. },
  107. onShow() {
  108. },
  109. onLoad() {
  110. this.goodsClassify();
  111. // this.params.type = this.tabsList[this.activeIndex].actId;
  112. // console.log('1111', this.tabsList[this.activeIndex]);
  113. },
  114. methods: {
  115. leftClick(e){
  116. let pages = getCurrentPages();
  117. if(pages.length==1){
  118. uni.$u.route('/pages/index/index')
  119. }else{
  120. uni.navigateBack()
  121. };
  122. },
  123. goodsClassify(){
  124. this.$u.api.validActList().then(res=>{
  125. this.tabsList = res.data.list.map(item=>{
  126. return {name:item.activityName,actId:item.id}
  127. });
  128. // this.tabsList.unshift({label:'全部',value:''});
  129. console.log('this.tabsList',this.tabsList);
  130. this.reloadList();
  131. }).catch(err=>{
  132. console.log('goodsClassify',err);
  133. })
  134. },
  135. /*下拉刷新的回调, 重置列表为第一页 (此处可删,mixins已默认)
  136. downCallback(){
  137. this.mescroll.resetUpScroll();
  138. },
  139. /*上拉加载的回调*/
  140. upCallback(page) {
  141. // 此处可以继续请求其他接口
  142. // if(page.num == 1){
  143. // // 请求其他接口...
  144. // }
  145. // 如果希望先请求其他接口,再触发upCallback,可参考以下写法
  146. this.params.actId = this.tabsList[this.activeIndex]?.actId;
  147. if(!this.params.actId){
  148. this.mescroll.endErr();
  149. return // 此处return,先获取xx
  150. }
  151. let pageNum = page.num; // 页码, 默认从1开始
  152. let pageSize = page.size; // 页长, 默认每页10条isAsc:0//时间排序 0:降序 1:升序 (默认星级降序排序)
  153. this.params = Object.assign(this.params,{pageNum:pageNum,pageSize:pageSize});
  154. this.$u.api.couponList(this.params).then(data => {
  155. console.log('data',JSON.parse(JSON.stringify(data)));
  156. // 接口返回的当前页数据列表 (数组)
  157. let curPageData = data.data.list;
  158. console.log('curPageData',JSON.parse(JSON.stringify(curPageData)));
  159. // 接口返回的当前页数据长度 (如列表有26个数据,当前页返回8个,则curPageLen=8)
  160. let curPageLen = curPageData.length;
  161. // 接口返回的总页数 (如列表有26个数据,每页10条,共3页; 则totalPage=3)
  162. // let totalPage = data.data.data.totalPage;
  163. // 接口返回的总数据量(如列表有26个数据,每页10条,共3页; 则totalSize=26)
  164. let totalSize = data.data.total;
  165. // 接口返回的是否有下一页 (true/false)
  166. // let hasNext = data.xxx;
  167. // console.log('totalPage',totalPage,'curPageLen',curPageLen);
  168. //设置列表数据
  169. if(page.num == 1) this.dataList = []; //如果是第一页需手动置空列表
  170. this.dataList = this.dataList.concat(curPageData); //追加新数据
  171. // 请求成功,隐藏加载状态
  172. //方法一(推荐): 后台接口有返回列表的总页数 totalPage
  173. // this.mescroll.endByPage(curPageLen, totalPage);
  174. //方法二(推荐): 后台接口有返回列表的总数据量 totalSize
  175. this.mescroll.endBySize(curPageLen, totalSize);
  176. }).catch(err => {
  177. this.mescroll.endErr()
  178. console.log(err)
  179. });
  180. },
  181. /*若希望重新加载列表,只需调用此方法即可(内部会自动page.num=1,再主动触发up.callback)*/
  182. reloadList() {
  183. this.mescroll.resetUpScroll();
  184. },
  185. tabsClick(item){
  186. this.activeIndex = item.index;
  187. this.reloadList()
  188. console.log('item',item);
  189. },
  190. receiveCoupon(item){
  191. // console.log('receiveCoupon',item);
  192. let param ={
  193. actId:this.tabsList[this.activeIndex].actId,
  194. couponId:item.couponId
  195. }
  196. this.$u.api.receiveCoupon(param).then(res=>{
  197. this.receiveCouponSuccessShow = true;
  198. setTimeout(()=>{
  199. uni.$u.route('/center/mycoupon')
  200. },2000);
  201. }).catch(err=>{
  202. console.log('receiveCoupon',err);
  203. })
  204. },
  205. receiveCouponSuccessClose(){
  206. this.receiveCouponSuccessShow = false;
  207. uni.$u.route('/center/mycoupon')
  208. // this.reloadList();
  209. }
  210. }
  211. }
  212. </script>
  213. <style>
  214. page{
  215. background-color: #f5f5f5;
  216. }
  217. </style>
  218. <style lang="scss" scoped>
  219. .credit{
  220. padding: 20rpx;
  221. background-color: #fff;
  222. border-radius: 8rpx;
  223. margin: 0 20rpx 20rpx;
  224. font-size: 36rpx;
  225. font-weight: 600;
  226. color: #00A447;
  227. }
  228. .tabs-wrap{
  229. background-color: #fff;
  230. margin-bottom: 10rpx;
  231. }
  232. .list{
  233. border-radius: 8rpx;
  234. padding: 0 20rpx 20rpx;
  235. background-color: #fff;
  236. .item{
  237. padding: 20rpx 0;
  238. border-bottom: 0.5px solid #ddd;
  239. .name{
  240. font-size: 30rpx;
  241. font-weight: 400;
  242. color: #333333;
  243. line-height: 42rpx;
  244. margin-bottom: 8rpx;
  245. }
  246. .time{
  247. font-size: 24rpx;
  248. font-weight: 400;
  249. color: #999999;
  250. line-height: 33rpx;
  251. }
  252. .num{
  253. font-size: 30rpx;
  254. font-weight: 600;
  255. color: #FFB100;
  256. &.plus{
  257. color: #00A447;
  258. }
  259. }
  260. }
  261. }
  262. .receive-coupon-success{
  263. position: relative;
  264. .content{
  265. width: 477rpx;
  266. height: 499rpx;
  267. background-size: 100% 100%;
  268. text-align: center;
  269. padding: 0 24rpx;
  270. font-weight: bold;
  271. overflow: hidden;
  272. }
  273. .title{
  274. font-size: 40rpx;
  275. color: #FF1212;
  276. line-height: 60rpx;
  277. margin-top: 290rpx;
  278. margin-bottom: 32rpx;
  279. }
  280. .con{
  281. font-size: 28rpx;
  282. color: #4E4E4E;
  283. }
  284. /deep/ .u-icon{
  285. justify-content: center;
  286. }
  287. }
  288. </style>