修改任务待办提示

This commit is contained in:
shidongli 2024-12-27 12:30:36 +08:00
parent 432d4ba332
commit a3c0886564

View File

@ -869,8 +869,9 @@ export default {
async questionlook(row) {
// this.totalScoredata=0,
await selectPatientQuestionSubmit(row.taskExecuteRecordId).then((res) => {
this.questiondata = res.data;
this.questiondata.subjectResultList.forEach((e) => {
if(res.data){
this.questiondata = res.data;
this.questiondata?.subjectResultList.forEach((e) => {
// if(e.whetherScore==1){
// e.optionResults.forEach((el) => {
// if(el.optionChooseSign=="0"){
@ -904,6 +905,12 @@ export default {
});
});
this.questionshow = true;
}else{
this.$message.error("未查到问卷提交信息");
}
});
},
audiohandleClose() {
@ -921,14 +928,23 @@ export default {
// }).then(() => {
getPhoneDialVideo(row.manageRouteNodeId).then((res) => {
console.log(res, "res");
this.audioshow = true;
if(res.data.record){
this.audioshow = true;
this.audiourl = process.env.VUE_APP_BASE_API + res.data.phoneDialRecordVideo;
this.formlist = res.data.record;
this.formlist = res.data.record;
setTimeout(() => {
this.$refs.audioPlayer.load(); //
// this.$refs.audioPlayer.play();
// }, 1000);
});
}else{
this.$message.error("未查到回放信息");
}
});
},
Outbound(row) {