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 @@