1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| 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}`,
| });
| },
| });
|
|