ypzycp/pages/examinee/service/service.js

20 lines
394 B
JavaScript
Raw Permalink Normal View History

2022-01-17 10:27:44 +00:00
Component({
mixins: [],
data: {
evaluateArray: ['10分钟', '20分钟', '30分钟'],
evaluateIndex: 0
},
props: {},
didMount() {},
didUpdate() {},
didUnmount() {},
methods: {
bindEvaluateChange(e) {
// console.log('picker发送选择改变携带值为', e.detail.value);
this.setData({
evaluateIndex: e.detail.value,
});
},
},
});