From df7723690220fb51250f2f186ddb9ae6697dbcf8 Mon Sep 17 00:00:00 2001 From: zhc077 <565291854@qq.com> Date: Thu, 24 Oct 2024 15:53:22 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E4=B9=A6-=E5=9F=BA=E6=9C=AC?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=20=E5=8A=9F=E8=83=BD=E6=B7=BB=E5=8A=A0=2010.?= =?UTF-8?q?24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectApplication/kejigongguan/data.ts | 25 ++ .../kejigongguan/projectApplicationList.vue | 2 +- .../kejigongguan/xiangmushu/JiBenXinXi.ts | 232 ++++++++++++++++++ .../xiangmushu/JiBenXinXiDemo.vue | 2 +- 4 files changed, 259 insertions(+), 2 deletions(-) diff --git a/jeecgboot-vue3/src/views/projectApplication/kejigongguan/data.ts b/jeecgboot-vue3/src/views/projectApplication/kejigongguan/data.ts index 7e4fe58..e81f5f1 100644 --- a/jeecgboot-vue3/src/views/projectApplication/kejigongguan/data.ts +++ b/jeecgboot-vue3/src/views/projectApplication/kejigongguan/data.ts @@ -84,6 +84,20 @@ export const userSchemas: FormSchema[] = [ // required: true, // colProps: { span: 6 }, }, + { + field: 'idNO', + component: 'Input', + label: '身份证号', + // required: true, + // colProps: { span: 6 }, + }, + { + field: 'phone', + component: 'Input', + label: '负责人手机号', + // required: true, + // colProps: { span: 6 }, + }, { label: '名族', field: 'nation', @@ -94,6 +108,17 @@ export const userSchemas: FormSchema[] = [ }, //colProps: { span: 6 }, }, + { + label: '电子邮箱', + field: 'email', + component: 'Input', + dynamicRules: ({model,schema}) => { + return [ + { required: false}, + { pattern: /^([\w]+\.*)([\w]+)@[\w]+\.\w{3}(\.\w{2}|)$/, message: '请输入正确的电子邮件!'}, + ]; + }, + }, { label: '党派', field: 'political', diff --git a/jeecgboot-vue3/src/views/projectApplication/kejigongguan/projectApplicationList.vue b/jeecgboot-vue3/src/views/projectApplication/kejigongguan/projectApplicationList.vue index 6979504..5234854 100644 --- a/jeecgboot-vue3/src/views/projectApplication/kejigongguan/projectApplicationList.vue +++ b/jeecgboot-vue3/src/views/projectApplication/kejigongguan/projectApplicationList.vue @@ -1,5 +1,5 @@