ypzycp/pages/examinee/expert/questions/questions.js

18 lines
365 B
JavaScript
Raw Normal View History

2022-01-17 18:27:44 +08:00
Page({
data: {
array: ['赵晓冬', '江新', '王丽菊'],
index: 0
},
onLoad() {
dd.setNavigationBar({
title: '我的问题',
backgroundColor: '#FFFFFF',
});
},
bindPickerChange(e) {
// console.log('picker发送选择改变携带值为', e.detail.value);
this.setData({
index: e.detail.value,
});
}
});