This commit is contained in:
闫晓茹 2024-04-11 18:05:23 +08:00
parent 73e3f6b909
commit 192cef96ea
2 changed files with 26 additions and 28 deletions

View File

@ -404,7 +404,7 @@ export default {
data() { data() {
return { return {
checkeddata: [], checkeddata: [],
formlists: [], formlists: {},
baseUrl: process.env.VUE_APP_BASE_API, baseUrl: process.env.VUE_APP_BASE_API,
radio: "1", radio: "1",
activeName: "first", activeName: "first",
@ -430,6 +430,9 @@ export default {
created() { created() {
console.log(this.$route.query); console.log(this.$route.query);
this.info(); this.info();
if (this.$route.query.textRemindContent) {
this.formlists.textRemindContent = this.$route.query.textRemindContent;
}
// //
if (this.$route.query.taskType == "PROPAGANDA_ARTICLE") { if (this.$route.query.taskType == "PROPAGANDA_ARTICLE") {
this.getPropagandaLIST(); this.getPropagandaLIST();
@ -468,10 +471,6 @@ export default {
this.questiondata.routeHandleRemark = this.questiondata.routeHandleRemark =
this.$route.query.routeHandleRemark; this.$route.query.routeHandleRemark;
} }
if (this.$route.query.textRemindContent) {
this.formlists.textRemindContent =
this.$route.query.textRemindContent;
}
this.questiondata.subjectResultList.forEach((e) => { this.questiondata.subjectResultList.forEach((e) => {
e.optionResults.forEach((el) => { e.optionResults.forEach((el) => {

View File

@ -167,36 +167,36 @@
<el-table-column label="手术名称" align="center" prop="patientName" /> --> <el-table-column label="手术名称" align="center" prop="patientName" /> -->
<el-table-column label="执行人姓名" align="center" prop="executePerson" /> <el-table-column label="执行人姓名" align="center" prop="executePerson" />
<el-table-column <el-table-column
label="签约患者管理路径节点名称" label="管理路径节点名称"
align="center" align="center"
prop="manageRouteNodeName" prop="manageRouteNodeName"
/>
<el-table-column
label="签约患者管理任务名称"
align="center"
prop="manageRouteName"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span <span
>{{ scope.row.manageRouteName == "AFTER_DISCHARGE" ? "出院后" : "" }} >{{
{{ scope.row.manageRouteName == "AFTER_DISCHARGE" ? "出院后" : ""
scope.row.manageRouteName == "AFTER_ADMISSION" ? "入院后" : ""
}} }}
{{ scope.row.manageRouteName == "AFTER_ADMISSION" ? "入院后" : "" }}
{{ {{
scope.row.manageRouteName == "AFTER_CONSULTATION" ? "就诊后" : "" scope.row.manageRouteName == "AFTER_CONSULTATION" ? "就诊后" : ""
}} }}
{{ scope.row.manageRouteName == "AFTER_VISIT_DISCHARGE" ? "就诊/出院后" : "" }}
{{ {{
scope.row.manageRouteName == "PREOPERATIVE" ? "术前" : "" scope.row.manageRouteName == "AFTER_VISIT_DISCHARGE"
}} ? "就诊/出院后"
{{ : ""
scope.row.manageRouteName == "POSTOPERATIVE" ? "术后" : ""
}} }}
{{ scope.row.manageRouteName == "PREOPERATIVE" ? "术前" : "" }}
{{ scope.row.manageRouteName == "POSTOPERATIVE" ? "术后" : "" }}
</span> </span>
</template> </template>
</el-table-column </el-table-column>
<el-table-column
label="管理任务名称"
align="center"
prop="manageRouteName"
> >
</el-table-column>
<el-table-column <el-table-column
label="入院时间" label="入院时间"
align="center" align="center"
@ -236,7 +236,6 @@
<span>{{ parseTime(scope.row.executeTime, "{y}-{m}-{d}") }}</span> <span>{{ parseTime(scope.row.executeTime, "{y}-{m}-{d}") }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="任务内容" align="center" prop="taskContent"> <el-table-column label="任务内容" align="center" prop="taskContent">
<template slot-scope="scope"> <template slot-scope="scope">
@ -256,7 +255,7 @@
</span> </span>
</template></el-table-column </template></el-table-column
> >
<!-- <el-table-column label="执行人姓名,手动执行时记录" align="center" prop="executePerson" /> --> <!-- <el-table-column label="执行人姓名,手动执行时记录" align="center" prop="executePerson" /> -->
<!-- <el-table-column label="任务执行方式人工执行MANUAL_EXECUTE系统自动执行SYSTEM_AUTOMATIC_EXECUTE" align="center" prop="executeType" /> --> <!-- <el-table-column label="任务执行方式人工执行MANUAL_EXECUTE系统自动执行SYSTEM_AUTOMATIC_EXECUTE" align="center" prop="executeType" /> -->
<!-- <el-table-column <!-- <el-table-column
@ -442,7 +441,7 @@ export default {
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
this.getList(); this.getList();
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery() { resetQuery() {
@ -472,14 +471,14 @@ export default {
query: { query: {
patientId: row.id, patientId: row.id,
taskContent: row.taskContent, taskContent: row.taskContent,
taskType:row.taskType, taskType: row.taskType,
templateId:row.templateId, templateId: row.templateId,
cardNo: row.cardNo, cardNo: row.cardNo,
patientName: row.patientName, patientName: row.patientName,
patientPhone: row.patientPhone, patientPhone: row.patientPhone,
sex: row.sex, sex: row.sex,
routeHandleRemark:row.routeHandleRemark, routeHandleRemark: row.routeHandleRemark,
textRemindContent:row.textRemindContent, textRemindContent: row.textRemindContent,
birthDate: row.birthDate, birthDate: row.birthDate,
familyMemberPhone: row.familyMemberPhone, familyMemberPhone: row.familyMemberPhone,
address: row.address, address: row.address,