This commit is contained in:
2024-04-15 16:03:33 +08:00
parent e0560fdb20
commit f0df40b32e
2 changed files with 32 additions and 20 deletions

View File

@ -1,6 +1,9 @@
<template> <template>
<div class="header"> <div class="header">
<div class="topheader"> <div class="topheader">
<div style="float: right;height:0;">
<el-button style="margin: 10px 10px 0 0;" @click="goback">返回</el-button>
</div>
<div class="user"> <div class="user">
<img class="headsculpture" src="../../../assets/manage/touxiang.png" alt="" v-if="list.sex == 'MALE'" /> <img class="headsculpture" src="../../../assets/manage/touxiang.png" alt="" v-if="list.sex == 'MALE'" />
<img class="headsculpture" src="../../../assets/manage/nvtouxiang.png" alt="" v-if="list.sex == 'FEMALE'" /> <img class="headsculpture" src="../../../assets/manage/nvtouxiang.png" alt="" v-if="list.sex == 'FEMALE'" />
@ -210,6 +213,13 @@ export default {
].optionChooseSign = "1"; ].optionChooseSign = "1";
} }
}, },
goback() {
this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => {
this.$router.push({
path: "/satisfactionSurvey/satisfactionSurvey",
});
})
},
}, },
}; };
</script> </script>

View File

@ -118,26 +118,28 @@ export default {
}, },
// //
goQuestionnaireDetails(row) { goQuestionnaireDetails(row) {
this.$router.push({ this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => {
path: "/satisfactionSurvey/SatisfactionQuestionnaireDetails", this.$router.push({
query: { path: "/satisfactionSurvey/SatisfactionQuestionnaireDetails",
patientQuestionSubmitResultId: row.patientQuestionSubmitResultId, query: {
taskContent: row.taskContent, patientQuestionSubmitResultId: row.patientQuestionSubmitResultId,
taskType: row.taskType, taskContent: row.taskContent,
templateId: row.templateId, taskType: row.taskType,
cardNo: row.cardNo, templateId: row.templateId,
patientName: row.patientName, cardNo: row.cardNo,
patientPhone: row.patientPhone, patientName: row.patientName,
sex: row.sex, patientPhone: row.patientPhone,
routeHandleRemark: row.routeHandleRemark, sex: row.sex,
textRemindContent: row.textRemindContent, routeHandleRemark: row.routeHandleRemark,
birthDate: row.birthDate, textRemindContent: row.textRemindContent,
address: row.address, birthDate: row.birthDate,
patientSource: row.patientSource, address: row.address,
createTime: row.createTime, patientSource: row.patientSource,
age: row.birthDate ? getAge(row.birthDate) : "", createTime: row.createTime,
}, age: row.birthDate ? getAge(row.birthDate) : "",
}); },
});
})
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {