From e6a19885bad99d9a93b91299cccc8fa9992dd71a Mon Sep 17 00:00:00 2001 From: "1747191978@qq.com" <1942943850@qq.com> Date: Tue, 18 Feb 2025 16:42:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=8A=E7=96=97=E6=A1=A3=E6=A1=88=E9=9A=8F?= =?UTF-8?q?=E8=AE=BF=E9=98=9F=E5=88=97=E5=B1=95=E7=A4=BA=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/medicalFile/index.vue | 27 ++++++++++++++----- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/acupuncture-前台/src/views/medicalFile/index.vue b/acupuncture-前台/src/views/medicalFile/index.vue index 9a258bd7e..b38e1b070 100644 --- a/acupuncture-前台/src/views/medicalFile/index.vue +++ b/acupuncture-前台/src/views/medicalFile/index.vue @@ -2,30 +2,34 @@
+ + + - + - +
{{ status[scope.row.status] }} - + @@ -213,6 +219,7 @@ + @@ -916,6 +923,7 @@ pageNum: 1, pageSize: 10, param: { + keywords:'', visitType: '', name: '', gender: '', @@ -1145,6 +1153,7 @@ /** 重置按钮操作 */ resetQuery() { this.queryParams.param = { + keywords:'', visitType: '', name: '', gender: '', @@ -1173,7 +1182,11 @@ handleUpdate(row) { this.open = true; this.title = "修改诊疗档案"; - this.form = JSON.parse(JSON.stringify(row)); + let queueList = row.queueVoList.map((item) => item.queueId); + this.form = { + ...JSON.parse(JSON.stringify(row)), + queueIdList:queueList + } }, /** 提交审核 */ handleExamine(row, _status) {