From 6ea6ded08aa6367dbe6e92177cb73612f93111b8 Mon Sep 17 00:00:00 2001 From: shidongli Date: Fri, 6 Dec 2024 11:55:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=88=9B=E5=BB=BA--=E6=89=8B?= =?UTF-8?q?=E5=8A=A8=E5=88=9B=E5=BB=BA=E4=BB=BB=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/Patientmanagement/index.vue | 27 +- .../system/ManuallyCreatingTasks/index.vue | 523 ++++++++++++++---- 2 files changed, 450 insertions(+), 100 deletions(-) diff --git a/src/views/manage/Patientmanagement/index.vue b/src/views/manage/Patientmanagement/index.vue index eb4ec00..aeead35 100644 --- a/src/views/manage/Patientmanagement/index.vue +++ b/src/views/manage/Patientmanagement/index.vue @@ -131,14 +131,16 @@ - + @@ -285,6 +287,21 @@ }, }); }, + handOutbound(row){ + console.log(row) + this.$router.push({ + path: "/patient/ManuallyCreatingTasks", + query: { + path: "/task/Patientmanagement", + signPatientRecordId: row.id, + patientId: row.patientId ?row.patientId : '', + patientName: row.patientName, + departmentId: row.departmentId, + departmentName: row.departmentName, + }, + }); + + }, // 画像编辑 handleedit(row) { this.$router.push({ @@ -537,8 +554,8 @@ width: 100%; } - ::v-deep .el-table { - overflow: hidden; - } + // ::v-deep .el-table { + // overflow: hidden; + // } \ No newline at end of file diff --git a/src/views/system/ManuallyCreatingTasks/index.vue b/src/views/system/ManuallyCreatingTasks/index.vue index 81565b3..ee6b8d9 100644 --- a/src/views/system/ManuallyCreatingTasks/index.vue +++ b/src/views/system/ManuallyCreatingTasks/index.vue @@ -1,17 +1,27 @@