From cb3c799e1bd6a7cf5dd5c7e3cadee238bf67b729 Mon Sep 17 00:00:00 2001 From: WXL (wul) <wl_5969728@163.com> Date: 星期五, 10 十月 2025 14:26:10 +0800 Subject: [PATCH] 随访详情本人所属功能及服务形式补偿流程组件维护 --- src/views/patient/propaganda/QuestionnaireTask.vue | 39 ++++++++++++++++++++++++++++++++++++++- 1 files changed, 38 insertions(+), 1 deletions(-) diff --git a/src/views/patient/propaganda/QuestionnaireTask.vue b/src/views/patient/propaganda/QuestionnaireTask.vue index 9f5f112..48b97ab 100644 --- a/src/views/patient/propaganda/QuestionnaireTask.vue +++ b/src/views/patient/propaganda/QuestionnaireTask.vue @@ -80,6 +80,15 @@ > </el-radio-group> </el-form-item> + <!-- <el-form-item label="鏈嶅姟褰㈠紡"> + <SortCheckbox + v-model="checkList" + :options="checkboxlist" + value-key="value" + label-key="label" + @change="checkSelectionChange" + /> + </el-form-item> --> <el-form-item label="鎵ц鍛ㄦ湡" prop="longTask"> <el-radio-group v-model="form.longTask"> <el-radio :label="0">鑷畾涔夊懆鏈�</el-radio> @@ -916,6 +925,7 @@ } from "@/api/AiCentre/index"; import OptionalForm from "@/components/OptionalForm"; //鐤剧梾娣诲姞缁勪欢 import SFtable from "@/components/SFtable"; //琛ㄦ牸缁勪欢 +import SortCheckbox from "@/components/SortCheckbox"; //琛ㄦ牸缁勪欢 import { MessageBox } from "element-ui"; export default { @@ -1029,6 +1039,7 @@ pageSize: 10, }, checkList: "", + selectedOrder: [], deliverytopqueryParams: { pageNum: 1, // pageSize: 10, @@ -1195,7 +1206,7 @@ serviceType: null, }; }, - components: { SFtable, OptionalForm }, + components: { SFtable, OptionalForm, SortCheckbox }, created() { this.appraiselist = store.getters.appraiselist; @@ -1568,6 +1579,11 @@ } }); }, + checkSelectionChange(selectedValues, selectedOrder) { + this.selectedOrder = selectedOrder; + console.log("褰撳墠閫変腑:", selectedValues); + console.log("閫変腑椤哄簭:", selectedOrder); + }, getillness(id) { if (id) { getillness({ outid: id, type: 5 }).then((res) => { @@ -1678,6 +1694,20 @@ { label: "绉戝", width: "180", prop: "dept" }, { label: "鐥呭尯", width: "150", prop: "leavehospitaldistrictname" }, ]; + } else if (this.patientqueryParams.allhosp == 2) { + this.tableLabelhz = [ + { label: "灏辫瘖鏃ユ湡", width: "150", prop: "admitdate" }, + { label: "鎮h��", width: "", prop: "name" }, + { label: "韬唤璇�", width: "200", prop: "idcardno" }, + { label: "鐢佃瘽鍙风爜", width: "180", prop: "telcode" }, + { label: "鎬у埆", width: "", prop: "sex" }, + { label: "骞撮緞", width: "", prop: "age" }, + { label: "鍑洪櫌澶╂暟", width: "", prop: "endDay" }, + { label: "璐d换鎶ゅ+", width: "", prop: "nurseName" }, + { label: "鍖荤敓", width: "", prop: "drname" }, + { label: "绉戝", width: "180", prop: "dept" }, + { label: "鐥呭尯", width: "150", prop: "leavehospitaldistrictname" }, + ]; } if (this.allpids[0]) { this.patientqueryParams.pids = this.allpids; @@ -1734,6 +1764,13 @@ if (this.patientqueryParams.allhosp == 6) { item.patfrom = 1; } + if (this.patientqueryParams.allhosp == 1) { + item.visittime = item.endtime; + } else if (this.patientqueryParams.allhosp == 4) { + item.visittime = item.starttime; + } else if (this.patientqueryParams.allhosp == 2) { + item.visittime = item.admitdate; + } this.overallCase.push(item); this.form.patTaskRelevances.push(item); } -- Gitblit v1.9.3