12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- var util = require('../../../utils/util.js');
- var api = require('../../../config/api.js');
- var app = getApp();
- Page({
- data: {
- couponList: null,
- buyType: ''
- },
- onLoad: function (options) {
- this.data.buyType = options.buyType
- this.loadListData()
- },
- loadListData: function () {
- let that = this;
- util.request(api.GoodsCouponList, { type: this.data.buyType }).then(function (res) {
- if (res.errno === 0) {
- that.setData({
- couponList: res.data
- });
- }
- });
- },
- /**
- * 点击不使用优惠券
- * 返回上一页
- */
- noUseCoupon: function () {
- app.globalData.userCoupon = 'NO_USE_COUPON'
- wx.navigateBack({
- })
- },
- tapCoupon: function (event) {
- let item = event.currentTarget.dataset.item
- if (item.enabled==0) {
- return
- }
- app.globalData.userCoupon = 'USE_COUPON'
- app.globalData.courseCouponCode = item
- wx.navigateBack({
- })
- }
- })
|