...
|
...
|
@@ -18,7 +18,7 @@ Page({ |
|
|
description: '',
|
|
|
session_list: {},
|
|
|
show_submit_btn: false,
|
|
|
student_num: 0,
|
|
|
student_num: 1,
|
|
|
areaTest: [],
|
|
|
test: {},
|
|
|
},
|
...
|
...
|
@@ -45,16 +45,42 @@ Page({ |
|
|
currentTest: current,
|
|
|
current_test_id: current_id,
|
|
|
});
|
|
|
// return this.data.areaTest.forEach((item, index) => {
|
|
|
// console.log('index', index);
|
|
|
// if (item.lab_list.length > 0 && item.lab_list[current] !== undefined) {
|
|
|
// console.log(current, item.lab_list, item.lab_list[current].id, current_id);
|
|
|
// if (item.lab_list.length > 0 && (item.lab_list[current].id === current_id)) {
|
|
|
// this.setData({
|
|
|
// description: item.lab_list.length > 0 && item.lab_list[current].description ? item.lab_list[current].description : '',
|
|
|
// session_list: item.lab_list.length > 0 && item.lab_list[current].session_list.length > 0 ? item.lab_list[current].session_list : '',
|
|
|
// });
|
|
|
// // return
|
|
|
// }
|
|
|
// } else if (item.lab_list.length > 0 && item.lab_list[current] === undefined) {
|
|
|
// console.log('item.lab_list[current]', item.lab_list[current]);
|
|
|
// if (item.lab_list.length > 0 && (item.lab_list[index].id === current_id)) {
|
|
|
// this.setData({
|
|
|
// description: item.lab_list.length > 0 && item.lab_list[index].description ? item.lab_list[index].description : '',
|
|
|
// session_list: item.lab_list.length > 0 && item.lab_list[index].session_list.length > 0 ? item.lab_list[index].session_list : '',
|
|
|
// });
|
|
|
// // return
|
|
|
// }
|
|
|
// }
|
|
|
// });
|
|
|
|
|
|
return this.data.areaTest.forEach((item, index) => {
|
|
|
// console.log(item.lab_list[current].id, current_id);
|
|
|
if (item.lab_list && (item.lab_list[current].id === current_id)) {
|
|
|
this.setData({
|
|
|
description: item.lab_list && item.lab_list[current].description ? item.lab_list[current].description : '',
|
|
|
session_list: item.lab_list && item.lab_list[current].session_list ? item.lab_list[current].session_list : '',
|
|
|
});
|
|
|
// return
|
|
|
if( item.lab_list.length>0) {
|
|
|
item.lab_list.forEach((i, idx) => {
|
|
|
if (i.id === current_id) {
|
|
|
this.setData({
|
|
|
description: item.lab_list.length > 0 && item.lab_list[idx].description ? item.lab_list[idx].description : '',
|
|
|
session_list: item.lab_list.length > 0 && item.lab_list[idx].session_list.length > 0 ? item.lab_list[idx].session_list : '',
|
|
|
});
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
});
|
|
|
|
|
|
})
|
|
|
},
|
|
|
|
|
|
//选择场次
|
...
|
...
|
@@ -100,17 +126,18 @@ Page({ |
|
|
//提交
|
|
|
submit() {
|
|
|
if (this.data.is_choose_session) {
|
|
|
console.log(this.data.experiment_id, this.data.current_session_id, this.data.student_num);
|
|
|
let url = '/portal/Experiment/submit_session';
|
|
|
let header = {
|
|
|
"XX-token": wx.getStorageSync('token')
|
|
|
};
|
|
|
let params = {
|
|
|
experiment_id: this.data.experiment_id,
|
|
|
session_id: this.data.current_session_id,
|
|
|
student_num: this.data.student_num,
|
|
|
experiment_id: +this.data.experiment_id,
|
|
|
session_id: +this.data.current_session_id,
|
|
|
student_num: +this.data.student_num,
|
|
|
};
|
|
|
app.post(url, params, header).then((res) => {
|
|
|
// console.log(res);
|
|
|
console.log(res);
|
|
|
wx.navigateTo({
|
|
|
url: '/pages/index/confirm-appointment-info/confirm-appointment-info?experiment_id=' + this.data.experiment_id
|
|
|
+ '&session_id=' + this.data.current_session_id
|
...
|
...
|
@@ -156,13 +183,14 @@ Page({ |
|
|
"XX-token": wx.getStorageSync('token')
|
|
|
};
|
|
|
app.post(url, params, header).then((res) => {
|
|
|
// console.log('实验',res);
|
|
|
// console.log(res.list,res.list[0],res.list[0].lab_list,res.list[0].lab_list[0],);
|
|
|
this.setData({
|
|
|
areaTest: res.list,
|
|
|
student_num: res.student_num,
|
|
|
current_test_id: res.list && res.list[0].lab_list && res.list[0].lab_list.length>0 ? res.list[0].lab_list[0].id:'',
|
|
|
description: res.list && res.list[0].lab_list && res.list[0].lab_list.length>0 ? res.list[0].lab_list[0].description : '',//默认显示第一个实验室的描述
|
|
|
session_list: res.list && res.list[0].lab_list.length>0 ? res.list[0].lab_list[0].session_list : ''//默认显示第一个实验室的实验时间
|
|
|
student_num: res.student_num == 0?1:res.student_num,
|
|
|
current_test_id: res.list.length>0 && res.list[0].lab_list && res.list[0].lab_list.length>0 ? res.list[0].lab_list[0].id:'',
|
|
|
description: res.list.length>0 && res.list[0].lab_list && res.list[0].lab_list.length>0 ? res.list[0].lab_list[0].description : '',//默认显示第一个实验室的描述
|
|
|
session_list: res.list.length>0 && res.list[0].lab_list.length>0 ? res.list[0].lab_list[0].session_list : ''//默认显示第一个实验室的实验时间
|
|
|
|
|
|
})
|
|
|
// console.log(this.data.this_week_test_info);
|
...
|
...
|
|