ypzycp/pages/examinee/service/answer/answer.js

19 lines
403 B
JavaScript
Raw Normal View History

2022-01-17 18:27:44 +08:00
Page({
data: {
evaluateArray: ['10分钟', '20分钟', '30分钟'],
evaluateIndex: 0
},
onLoad() {
dd.setNavigationBar({
title: '免费咨询',
backgroundColor: '#FFFFFF',
});
},
bindEvaluateChange(e) {
// console.log('picker发送选择改变携带值为', e.detail.value);
this.setData({
evaluateIndex: e.detail.value,
});
},
});