couponCenter.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. import {
  2. get,
  3. post
  4. } from "../../utils/http";
  5. // pages/couponCentre/couponCentre.js
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. store_id: '', //店铺id
  12. page: 1, //页数
  13. limit: 10, //页面大小
  14. CouponList: [], //优惠券列表
  15. couponType: ['抵扣券', '满减券', '全额减免券', '卡券'], //优惠券类型
  16. total: '', //优惠券总数
  17. },
  18. /**
  19. * 生命周期函数--监听页面加载
  20. */
  21. onLoad(options) {
  22. // 获取商品id
  23. this.setData({
  24. store_id: wx.getStorageSync('store_id')
  25. })
  26. // 获取优惠券列表
  27. this.getCouponList()
  28. },
  29. /**
  30. * 生命周期函数--监听页面初次渲染完成
  31. */
  32. onReady() {
  33. },
  34. /**
  35. * 生命周期函数--监听页面显示
  36. */
  37. onShow() {
  38. },
  39. /**
  40. * 生命周期函数--监听页面隐藏
  41. */
  42. onHide() {
  43. },
  44. /**
  45. * 生命周期函数--监听页面卸载
  46. */
  47. onUnload() {
  48. },
  49. /**
  50. * 页面相关事件处理函数--监听用户下拉动作
  51. */
  52. onPullDownRefresh() {
  53. },
  54. /**
  55. * 页面上拉触底事件的处理函数
  56. */
  57. onReachBottom() {
  58. if (this.data.CouponList.length < this.data.total) {
  59. this.getCouponList(++this.data.page)
  60. } else {
  61. return
  62. }
  63. },
  64. /**
  65. * 用户点击右上角分享
  66. */
  67. onShareAppMessage() {
  68. },
  69. // 获取优惠券列表
  70. getCouponList(_page) {
  71. let {
  72. CouponList
  73. } = this.data
  74. get('/v2/api/activity/coupon', {
  75. store_id: this.data.store || wx.getStorageSync('store_id'),
  76. page: _page || this.data.page,
  77. limit: this.data.limit
  78. }, (res) => {
  79. // 点击领取后刷新页面
  80. if (_page == 'no') {
  81. this.setData({
  82. CouponList: res.data.list,
  83. total: res.data.total
  84. })
  85. }
  86. // 获取页面时判断是否刷新页面
  87. if (res.code == 200 && _page != 'no') {
  88. CouponList.push(...res.data.list)
  89. this.setData({
  90. CouponList,
  91. total: res.data.total
  92. })
  93. }
  94. })
  95. },
  96. // 领取优惠券发起请求
  97. getCoupon(e) {
  98. let activeId = e.currentTarget.dataset.activeid
  99. post('/v2/api/activity/receive', {
  100. id: activeId,
  101. store_id: wx.getStorageSync('store_id')
  102. }, (res) => {
  103. let coupon_id = res.data
  104. this.getCouponList("no") //刷新数据不添加
  105. // 发起订阅请求 下发权限
  106. wx.requestSubscribeMessage({
  107. tmplIds: ['1c7uBFGMQYBAFRiJIk2IoyKFhC7En3ElONwm8Nwl5HQ'],
  108. success(res) {
  109. console.log(res);
  110. let status = ''
  111. // 判断是否发起订阅请求 1是确认发送 2不发
  112. if (res['1c7uBFGMQYBAFRiJIk2IoyKFhC7En3ElONwm8Nwl5HQ'] == 'reject') {
  113. status = 2
  114. } else {
  115. status = 1
  116. }
  117. get('/v2/api/activity/push', {
  118. type: 1,
  119. status,
  120. coupon_id,
  121. }, res => {})
  122. },
  123. })
  124. })
  125. },
  126. // 领取过的优惠券跳转到项目列表
  127. goProject(){
  128. wx.switchTab({
  129. url: '/pages/orderBy/orderBy',
  130. })
  131. }
  132. })