From 7535dbd2f6103e76540b052da2036048349da41f Mon Sep 17 00:00:00 2001 From: "1747191978@qq.com" <1942943850@qq.com> Date: Tue, 18 Feb 2025 13:58:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AF=81=E4=BB=B6=E7=B1=BB=E5=9E=8B=E6=B7=BB?= =?UTF-8?q?=E5=8A=A04=E5=85=B6=E4=BB=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- acupuncture-前台/src/views/indexCom/XGZL.vue | 2 +- acupuncture-前台/src/views/patientFile/index.vue | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/acupuncture-前台/src/views/indexCom/XGZL.vue b/acupuncture-前台/src/views/indexCom/XGZL.vue index 87fd2473..8b205946 100644 --- a/acupuncture-前台/src/views/indexCom/XGZL.vue +++ b/acupuncture-前台/src/views/indexCom/XGZL.vue @@ -45,7 +45,7 @@ --> -
+
治疗效果 diff --git a/acupuncture-前台/src/views/patientFile/index.vue b/acupuncture-前台/src/views/patientFile/index.vue index 171e59ef..ea184336 100644 --- a/acupuncture-前台/src/views/patientFile/index.vue +++ b/acupuncture-前台/src/views/patientFile/index.vue @@ -284,7 +284,7 @@ ref="form" :model="form" :rules="rules" - label-width="90px" + label-width="100px" > - + @@ -468,6 +468,7 @@ export default { 1: "护照或外国人永居证", 2: "港澳居民来往内地通行", 3: "台湾居民来往大陆通行证", + 4: "其他", }, loading: false, // 遮罩层 ids: [], // 选中数组 @@ -504,6 +505,9 @@ export default { gender: [ { required: true, message: "性别不能为空", trigger: "change" }, ], + birthDate: [ + { required: true, message: "出生日期不能为空", trigger: "change" }, + ], phone: [ { required: true, message: "手机号码不能为空", trigger: "blur" }, ], @@ -516,6 +520,9 @@ export default { idCard: [ { required: true, message: "证件号码不能为空", trigger: "blur" }, ], + educationYears: [ + { required: true, message: "受教育年限不能为空", trigger: "blur" }, + ], currentIllnessHistory: [ { required: true, @@ -585,7 +592,7 @@ export default { idCardType: "", // 证件类型 idCard: "", // 证件号码 currentIllnessHistory: [], // 现病史 - currentIllnessHistoryQT: "", // 现病史 + currentIllnessHistoryQt: "", // 现病史 }; this.resetForm("form"); },