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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| const statusMap = {
| default: { text: '去使用', theme: 'primary' },
| useless: { text: '已使用', theme: 'default' },
| disabled: { text: '已过期', theme: 'default' },
| };
| Component({
| options: {
| addGlobalClass: true,
| multipleSlots: true, // 在组件定义时的选项中启用多slot支持
| },
|
| externalClasses: ['coupon-class'],
|
| properties: {
| couponDTO: {
| type: Object,
| value: {}, // 优惠券数据
| },
| },
|
| data: {
| btnText: '',
| btnTheme: '',
| },
|
| observers: {
| couponDTO: function (couponDTO) {
| if (!couponDTO) {
| return;
| }
| const statusInfo = statusMap[couponDTO.status];
|
| this.setData({
| btnText: statusInfo.text,
| btnTheme: statusInfo.theme,
| });
| },
| },
|
| attached() {},
|
| methods: {
| // 跳转到详情页
| gotoDetail() {
| wx.navigateTo({
| url: `/pages/coupon/coupon-detail/index?id=${this.data.couponDTO.key}`,
| });
| },
|
| // 跳转到商品列表
| gotoGoodsList() {
| wx.navigateTo({
| url: `/pages/coupon/coupon-activity-goods/index?id=${this.data.couponDTO.key}`,
| });
| },
| },
| });
|
|