prize-item.js
1.07 KB
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
58
59
60
61
62
63
64
// page/subPackage/pages/zeroSell/components/prize-item.js
import router from '../router/router'
const PRODUCT_STATUS = {
UNKNOWN: 0, // 活动关闭
}
Component({
/**
* 组件的属性列表
*/
properties: {
item: {
type: Object
}
},
/**
* 组件的初始数据
*/
data: {
show: false,
text: ''
},
/**
* 组件的方法列表
*/
methods: {
goFellow(e) {
let text = JSON.parse(e.target.dataset.text || "{}");
debugger;
this.setData({
show: true,
text:text.miniapp || ''
})
},
goShare() {
this.triggerEvent('share', this.properties.item);
},
onOk() {
this.setData({
show: false
})
},
goDetail() {
if (this.properties.item.status === PRODUCT_STATUS.UNKNOWN) {
wx.showModal({
title: 'OOPS',
content: '活动已下线',
showCancel: false
});
} else {
router.go('detail', {
actPrizeId: this.properties.item.act_prize_id
});
}
}
},
ready() {
}
})