list.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  1. <template>
  2. <view class="app-container">
  3. <view class="tab-container">
  4. <view class="item" :class="tabCurrent == 0 ? 'current':''" @tap="changeTab(0)">未使用({{count.wsy ? count.wsy : 0}})</view>
  5. <view class="item" :class="tabCurrent == 1 ? 'current':''" @tap="changeTab(1)">已使用({{count.ysy ? count.ysy : 0}})</view>
  6. <view class="item" :class="tabCurrent == 2 ? 'current':''" @tap="changeTab(2)">已过期({{count.ygq ? count.ygq : 0}})</view>
  7. </view>
  8. <view class="list-container">
  9. <block v-for="(item, index) in couponList" :key='index'>
  10. <view class="item">
  11. <view class="bg">
  12. <image src="@/static/mine/coupon/bg_1.png" v-if="tabCurrent == 0"></image>
  13. <image src="@/static/mine/coupon/bg_0.png" v-if="tabCurrent != 0"></image>
  14. </view>
  15. <view class="content">
  16. <view class="left">
  17. <view class="price">{{item.couponValue}}<text>元</text></view>
  18. <view class="text" v-if="item.couponType == 'SATISFY'">满{{item.orderAmount}}可用</view>
  19. </view>
  20. <view class="right">
  21. <view class="main">
  22. <view class="row1 ellipsis-2" :class="tabCurrent == 0 ? '':'width'">{{item.couponName}}</view>
  23. <view class="row2">
  24. <view>使用时间:</view>
  25. <view>{{item.activeStartTime | dateToYYmmdd2}}-{{item.activeEndTime | dateToYYmmdd2}}</view>
  26. </view>
  27. </view>
  28. <view class="btn-group" v-if="tabCurrent == 0">
  29. <view class="button white" @tap="toUseCoupon">去使用</view>
  30. <view class="button red" @tap="shareCoupon(item.id)" v-if="userInfo.type == 'SERVICE'"><image src="@/static/icon/code.png"></image>分享</view>
  31. </view>
  32. <view class="tag" v-if="tabCurrent != 0">
  33. <image src="@/static/mine/coupon/status_1.png" v-if="tabCurrent == 1"></image>
  34. <image src="@/static/mine/coupon/status_2.png" v-if="tabCurrent == 2"></image>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </block>
  40. </view>
  41. <no-data v-if="!couponList.length" :showText="'空空如也'"></no-data>
  42. <loading-text v-if="couponList.length" :loading="loading" :noMore="noMore" ></loading-text>
  43. <!-- <view class="bottom-container">
  44. <view class="button">兑换优惠码</view>
  45. </view> -->
  46. <view class="global-mask" v-show="isShareDialog"></view>
  47. <view class="share-dialog" v-show="isShareDialog">
  48. <view class="content">
  49. <image src="@/static/icon/close3.png" class="close" @tap="isShareDialog = false"></image>
  50. <image src="@/static/mine/coupon/share.png" class="bg"></image>
  51. <image :src="shareDetail.qrcode" class="code" @longpress="handleLongpress"></image>
  52. <view class="logo">
  53. <image :src="configInfo.minLogo2" mode="heightFix"></image>
  54. </view>
  55. <view class="tips" v-if="shareDetail.leftShareTimes > 0 && shareDetail.qrcode">长按二维码保存到手机</view>
  56. <view class="noData" v-if="shareDetail.leftShareTimes <= 0">
  57. <image src="@/static/mine/coupon/noData.png"></image>
  58. <view>已超过可分享次数</view>
  59. <view>该优惠券不可再分享</view>
  60. </view>
  61. <view class="text">可分享次数:{{shareDetail.leftShareTimes}}/{{shareDetail.shareTimes}}</view>
  62. </view>
  63. </view>
  64. </view>
  65. </template>
  66. <script>
  67. import {mapState} from 'vuex';
  68. export default {
  69. data() {
  70. return {
  71. configInfo: uni.getStorageSync('configInfo'),
  72. count: {}, // 优惠券数量统计
  73. tabCurrent: 0, // 当前选择值
  74. couponList: [], // 优惠券列表
  75. pageNum: 1,
  76. pageSize: 8,
  77. noMore: false,
  78. loading: false,
  79. isShareDialog: false,
  80. shareDetail: {},
  81. }
  82. },
  83. computed:{
  84. ...mapState(['userInfo', 'isLogin', 'userId'])
  85. },
  86. onLoad() {
  87. this.getCount();
  88. this.getCouponList();
  89. },
  90. // 下拉刷新
  91. onPullDownRefresh() {
  92. this.pageNum = 1;
  93. this.getCouponList();
  94. },
  95. // 上拉加载
  96. onReachBottom() {
  97. this.getCouponList(1);
  98. },
  99. methods: {
  100. getCount() {
  101. this.$axios({
  102. url: '/coupon/count',
  103. method: 'get',
  104. params: {
  105. userId: this.userId
  106. },
  107. }).then(res => {
  108. this.count = res.data;
  109. })
  110. },
  111. getCouponList(loadMore) {
  112. if(this.noMore && loadMore)return;
  113. this.noMore = false
  114. if(!loadMore){
  115. this.pageNum = 1;
  116. }else{
  117. this.loading = true;
  118. }
  119. this.$axios({
  120. url: '/coupon/list/page',
  121. method: 'get',
  122. params: {
  123. pageNum: this.pageNum,
  124. pageSize: this.pageSize,
  125. type: this.tabCurrent,
  126. userId: this.userId
  127. },
  128. isLoading: !loadMore
  129. }).then(res => {
  130. let _list = res.data.records;
  131. let pageTotal = res.data.pages;
  132. if(this.pageNum >= pageTotal){
  133. this.noMore = true;
  134. }
  135. if (_list.length) {
  136. this.pageNum += 1
  137. }
  138. if (loadMore) {
  139. this.couponList = this.couponList.concat(_list);
  140. this.loading = false;
  141. } else {
  142. this.couponList = _list;
  143. }
  144. uni.stopPullDownRefresh();
  145. })
  146. },
  147. changeTab(tab) {
  148. this.tabCurrent = tab;
  149. this.getCouponList();
  150. },
  151. // 去使用优惠券
  152. toUseCoupon() {
  153. uni.switchTab({
  154. url: '/pages/goods/classify'
  155. });
  156. },
  157. // 分享优惠券
  158. shareCoupon(id) {
  159. this.$axios({
  160. url: '/coupon/transfer/qrcode',
  161. method: 'get',
  162. params: {
  163. userId: this.userId,
  164. userCouponId: id
  165. },
  166. }).then(res => {
  167. this.shareDetail = res.data;
  168. this.isShareDialog = true;
  169. })
  170. },
  171. handleLongpress() {
  172. let that = this;
  173. uni.showActionSheet({
  174. itemList: ['保存二维码'],
  175. success: function (res) {
  176. if(res.tapIndex == 0) {
  177. uni.downloadFile({
  178. url: that.shareDetail.qrcode,
  179. success: (res) => {
  180. if (res.statusCode === 200) {
  181. uni.saveImageToPhotosAlbum({
  182. filePath: res.tempFilePath,
  183. success: function () {
  184. that.$successToast('保存成功');
  185. }
  186. });
  187. }
  188. }
  189. });
  190. }
  191. },
  192. fail: function (res) {
  193. console.log(res.errMsg);
  194. }
  195. });
  196. }
  197. }
  198. }
  199. </script>
  200. <style lang="scss">
  201. .app-container {
  202. background: #F4F2F2;
  203. padding: 108rpx 20rpx 120rpx;
  204. box-sizing: border-box;
  205. }
  206. .tab-container {
  207. position: fixed;
  208. top: 0;
  209. left: 0;
  210. width: 100%;
  211. display: flex;
  212. background: #FFFFFF;
  213. .item {
  214. flex: 1;
  215. height: 88rpx;
  216. display: flex;
  217. align-items: center;
  218. justify-content: center;
  219. position: relative;
  220. &.current {
  221. color: #FF3F42;
  222. &::after {
  223. content: '';
  224. display: block;
  225. width: 80rpx;
  226. height: 6rpx;
  227. background: #FF3F42;
  228. position: absolute;
  229. bottom: 0;
  230. left: 50%;
  231. margin-left: -40rpx;
  232. }
  233. }
  234. }
  235. }
  236. .list-container {
  237. .item {
  238. position: relative;
  239. margin-bottom: 20rpx;
  240. .bg {
  241. image {
  242. width: 710rpx;
  243. height: 160rpx;
  244. display: block;
  245. }
  246. }
  247. .content {
  248. position: absolute;
  249. left: 0;
  250. top: 0;
  251. width: 710rpx;
  252. height: 160rpx;
  253. display: flex;
  254. align-items: center;
  255. .left {
  256. width: 240rpx;
  257. display: flex;
  258. align-items: center;
  259. justify-content: center;
  260. flex-direction: column;
  261. .price {
  262. font-size: 60rpx;
  263. color: #FFFFFF;
  264. text {
  265. font-size: 28rpx;
  266. margin-top: 20rpx;
  267. }
  268. }
  269. .text {
  270. color: #FFFFFF;
  271. font-size: 28rpx;
  272. }
  273. }
  274. .right {
  275. display: flex;
  276. justify-content: space-between;
  277. padding: 15rpx 20rpx;
  278. width: 470rpx;
  279. height: 160rpx;
  280. box-sizing: border-box;
  281. .main {
  282. width: 300rpx;
  283. height: 130rpx;
  284. box-sizing: border-box;
  285. display: flex;
  286. flex-direction: column;
  287. justify-content: space-between;
  288. .row1 {
  289. font-size: 28rpx;
  290. line-height: 32rpx;
  291. &.width{
  292. width: 330rpx;
  293. }
  294. }
  295. .row2 {
  296. font-size: 24rpx;
  297. color: #999999;
  298. line-height: 28rpx;
  299. }
  300. }
  301. .btn-group {
  302. display: flex;
  303. flex-direction: column;
  304. justify-content: center;
  305. padding-right: 8rpx;
  306. .button {
  307. width: 100rpx;
  308. height: 40rpx;
  309. border-radius: 40rpx;
  310. font-size: 24rpx;
  311. flex-shrink: 0;
  312. display: flex;
  313. align-items: center;
  314. justify-content: center;
  315. image {
  316. width: 22rpx;
  317. height: 22rpx;
  318. display: block;
  319. margin-right: 6rpx;
  320. }
  321. &.white {
  322. color: #FF3F42;
  323. border: 1px solid #FF3F42;
  324. }
  325. &.red {
  326. color: #FFFFFF;
  327. border: 1px solid #FE781F;
  328. background: #FE781F;
  329. }
  330. &:last-child {
  331. margin-top: 20rpx;
  332. }
  333. }
  334. }
  335. .tag {
  336. image {
  337. width: 80rpx;
  338. height: 80rpx;
  339. display: block;
  340. }
  341. }
  342. }
  343. }
  344. }
  345. }
  346. .bottom-container {
  347. position: fixed;
  348. bottom: 0;
  349. left: 0;
  350. width: 100%;
  351. padding: 0 20rpx;
  352. box-sizing: border-box;
  353. background: #FFFFFF;
  354. display: flex;
  355. align-items: center;
  356. height: 100rpx;
  357. .button {
  358. width: 100%;
  359. height: 68rpx;
  360. line-height: 68rpx;
  361. border-radius: 68rpx;
  362. text-align: center;
  363. font-size: 28rpx;
  364. color: #666666;
  365. border: 1px solid #B0B0B0;
  366. }
  367. }
  368. .share-dialog {
  369. position: fixed;
  370. top: calc(50vh - 500rpx);
  371. left: 55rpx;
  372. z-index: 999;
  373. .content {
  374. position: relative;
  375. .bg {
  376. width: 640rpx;
  377. height: 1000rpx;
  378. display: block;
  379. }
  380. .close {
  381. position: absolute;
  382. right: 20rpx;
  383. top: 20rpx;
  384. width: 30rpx;
  385. height: 30rpx;
  386. display: block;
  387. }
  388. .code {
  389. position: absolute;
  390. top: 300rpx;
  391. left: 120rpx;
  392. width: 400rpx;
  393. height: 400rpx;
  394. display: block;
  395. z-index: 9;
  396. }
  397. .logo {
  398. width: 100%;
  399. position: absolute;
  400. bottom: 60rpx;
  401. left: 0;
  402. display: flex;
  403. justify-content: center;
  404. image {
  405. height: 60rpx;
  406. display: block;
  407. }
  408. }
  409. .tips {
  410. position: absolute;
  411. left: 0;
  412. top: 700rpx;
  413. line-height: 50rpx;
  414. font-size: 24rpx;
  415. color: #f5f5f5;
  416. width: 640rpx;
  417. text-align: center;
  418. }
  419. .text {
  420. position: absolute;
  421. left: 0;
  422. bottom: 0;
  423. line-height: 60rpx;
  424. font-size: 24rpx;
  425. color: #666666;
  426. width: 640rpx;
  427. text-align: center;
  428. }
  429. .noData {
  430. position: absolute;
  431. top: 300rpx;
  432. left: 120rpx;
  433. width: 400rpx;
  434. height: 400rpx;
  435. display: block;
  436. z-index: 10;
  437. background: #FFFFFF;
  438. display: flex;
  439. flex-direction: column;
  440. align-items: center;
  441. justify-content: center;
  442. image {
  443. width: 197rpx;
  444. height: 146rpx;
  445. display: block;
  446. margin-bottom: 20rpx;
  447. }
  448. view {
  449. font-size: 28rpx;
  450. color: #333333;
  451. line-height: 48rpx;
  452. }
  453. }
  454. }
  455. }
  456. </style>