index.js 805 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // pages/coupon-list/index.js
  2. import { getUserCoupons } from '../../api/api.js';
  3. const app=getApp();
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. parameter: {
  10. 'navbar': '1',
  11. 'return': '1',
  12. 'title': '我的优惠券',
  13. 'color': false
  14. },
  15. couponsList:[],
  16. loading:false,
  17. },
  18. /**
  19. * 授权回调
  20. */
  21. onLoadFun:function(){
  22. this.getUseCoupons();
  23. },
  24. /**
  25. * 生命周期函数--监听页面加载
  26. */
  27. onLoad: function (options) {
  28. },
  29. /**
  30. * 获取领取优惠券列表
  31. */
  32. getUseCoupons:function(){
  33. var that = this;
  34. getUserCoupons(0).then(res=>{
  35. that.setData({ loading: true, couponsList: res.data });
  36. })
  37. },
  38. /**
  39. * 页面上拉触底事件的处理函数
  40. */
  41. onReachBottom: function () {
  42. },
  43. })