couponlist.vue 9.0 KB

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