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;
+ }
// }
})
},