修改
This commit is contained in:
parent
e0560fdb20
commit
f0df40b32e
@ -1,6 +1,9 @@
|
||||
<template>
|
||||
<div class="header">
|
||||
<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">
|
||||
<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'" />
|
||||
@ -210,6 +213,13 @@ export default {
|
||||
].optionChooseSign = "1";
|
||||
}
|
||||
},
|
||||
goback() {
|
||||
this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => {
|
||||
this.$router.push({
|
||||
path: "/satisfactionSurvey/satisfactionSurvey",
|
||||
});
|
||||
})
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
@ -118,26 +118,28 @@ export default {
|
||||
},
|
||||
//跳转详情
|
||||
goQuestionnaireDetails(row) {
|
||||
this.$router.push({
|
||||
path: "/satisfactionSurvey/SatisfactionQuestionnaireDetails",
|
||||
query: {
|
||||
patientQuestionSubmitResultId: row.patientQuestionSubmitResultId,
|
||||
taskContent: row.taskContent,
|
||||
taskType: row.taskType,
|
||||
templateId: row.templateId,
|
||||
cardNo: row.cardNo,
|
||||
patientName: row.patientName,
|
||||
patientPhone: row.patientPhone,
|
||||
sex: row.sex,
|
||||
routeHandleRemark: row.routeHandleRemark,
|
||||
textRemindContent: row.textRemindContent,
|
||||
birthDate: row.birthDate,
|
||||
address: row.address,
|
||||
patientSource: row.patientSource,
|
||||
createTime: row.createTime,
|
||||
age: row.birthDate ? getAge(row.birthDate) : "",
|
||||
},
|
||||
});
|
||||
this.$store.dispatch('tagsView/delView', this.$route).then(({ visitedViews }) => {
|
||||
this.$router.push({
|
||||
path: "/satisfactionSurvey/SatisfactionQuestionnaireDetails",
|
||||
query: {
|
||||
patientQuestionSubmitResultId: row.patientQuestionSubmitResultId,
|
||||
taskContent: row.taskContent,
|
||||
taskType: row.taskType,
|
||||
templateId: row.templateId,
|
||||
cardNo: row.cardNo,
|
||||
patientName: row.patientName,
|
||||
patientPhone: row.patientPhone,
|
||||
sex: row.sex,
|
||||
routeHandleRemark: row.routeHandleRemark,
|
||||
textRemindContent: row.textRemindContent,
|
||||
birthDate: row.birthDate,
|
||||
address: row.address,
|
||||
patientSource: row.patientSource,
|
||||
createTime: row.createTime,
|
||||
age: row.birthDate ? getAge(row.birthDate) : "",
|
||||
},
|
||||
});
|
||||
})
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user