From 38d231e79e0b3d4ed1843770568cd14193ebb056 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=BE=89?= <814457906@qq.com>
Date: Mon, 17 Mar 2025 17:51:29 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/manage/patientInfoImport/index.vue | 34 +++++++++++++++++---
1 file changed, 29 insertions(+), 5 deletions(-)
diff --git a/src/views/manage/patientInfoImport/index.vue b/src/views/manage/patientInfoImport/index.vue
index 606306e..fd2dbd9 100644
--- a/src/views/manage/patientInfoImport/index.vue
+++ b/src/views/manage/patientInfoImport/index.vue
@@ -82,6 +82,26 @@
:limit.sync="queryParams.pageSize" @pagination="getList" /> -->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -130,7 +150,11 @@ export default {
// 表单参数
form: {},
// 表单校验
- rules: {}
+ rules: {
+ patientName: [
+ { required: true, message: '请输入患者姓名', trigger: 'change' }
+ ],
+ }
};
},
created() {
@@ -169,7 +193,7 @@ export default {
},
// 立即外呼
ljhandOutbound() {
-
+ this.open = true;
},
/** 删除按钮操作 */
handleDelete(row) {
@@ -267,9 +291,9 @@ export default {
}
getAgencyList(query).then(res => {
// if (type) {
- if (nodeType == 'HOSPITAL') {
- this.campusAgencylist = res.data.campusList;
- }
+ if (nodeType == 'HOSPITAL') {
+ this.campusAgencylist = res.data.campusList;
+ }
// }
})
},