seckill-order-comp.js
2.13 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
let app = getApp();
Component({
options: {
styleIsolation: 'apply-shared'
},
properties: {
// 这里定义了innerText属性,属性值可以在组件使用时指定
// cid 用户区分组件
cid: {
type: String,
value: '1',
},
innerTitle: {
type: String,
value: '',
},
innerText: {
type: String,
value: '',
},
innerButton: {
type: String,
value: '确定',
},
userInfo: {
type: Object,
value: {}
},
productInfo: {
type: Object,
value: {}
},
// 订单状态
orderStatus: {
type: Number,
value: 0,
},
// 是否售罄
isSellOut: {
type: Boolean,
value: false,
}
},
data: {
// 这里是一些组件内部数据
someData: {},
num: 1,
remark: "",
},
methods: {
// 这里是一个自定义方法
customMethod() {
this.triggerEvent('evtcomp', {
name: "_evt_custom"
})
},
onStepperChange(e) {
let val = e.detail;
if(val > this.properties.productInfo.maxNum) val = this.properties.productInfo.maxNum;
if(val < this.properties.productInfo.minNum) val = this.properties.productInfo.minNum;
this.setNum(val);
},
bindRemarkInput(e) {
this.setData({
remark: e.detail.value
});
},
setNum(val) {
this.setData({
num: val
})
},
setRemark(val) {
this.setData({
remark: val
})
},
// 隐藏蒙层
hideMask() {
this.triggerEvent('evtcomp', {
name: "_evt_hide_mask"
});
},
// 点击自定义按钮
onInnerButtonHandler(evt) {
this.triggerEvent('evtcomp', {
name: "_evt_hide_mask"
});
},
// 确认下单
onSubmitOrderHandler(evt) {
this.triggerEvent('evtcomp', {
name: "_evt_submit_order",
data: {
num: this.data.num,
remark: this.data.remark,
}
});
},
// 返回个人中心
onReturnUserCenterHandler(evt) {
this.triggerEvent('evtcomp', {
name: "_evt_return_user_center"
});
}
}
})