ypzycp/pages/counselor/free/freedetail/freedetail.js

19 lines
392 B
JavaScript
Raw Normal View History

2022-01-17 18:27:44 +08:00
Page({
data: {
timeArray: ['约10分钟', '约20分钟', '约30分钟'],
timeIndex: 0
},
onLoad() {
dd.setNavigationBar({
title: '北京-李保田-01',
backgroundColor: '#FFFFFF',
});
},
bindTimeChange(e) {
// console.log('picker发送选择改变携带值为', e.detail.value);
this.setData({
timeIndex: e.detail.value,
});
}
});