| 1234567891011121314151617181920212223242526272829303132 |
- import { fetchCouponDetail } from '../../../services/coupon/index';
- Page({
- data: {
- detail: null,
- storeInfoList: [],
- storeInfoStr: '',
- showStoreInfoList: false,
- },
- id: '',
- onLoad(query) {
- const id = parseInt(query.id);
- this.id = id;
- this.getGoodsList(id);
- },
- getGoodsList(id) {
- fetchCouponDetail(id).then(({ detail }) => {
- this.setData({
- detail,
- });
- });
- },
- navGoodListHandle() {
- wx.navigateTo({
- url: `/pages/coupon/coupon-activity-goods/index?id=${this.id}`,
- });
- },
- });
|