Commit b52e94e2 by 张恒

fix(zlgl): 修改质量方案配置项为必填项

- 将质量方案配置中的多个字段的required属性从false修改为true
- 涉及到配置项包括autoCodeRule、allowClear、apiId等字段
- 确保质量方案表单验证的完整性
- 提高数据录入的规范性要求
parent 5f8a1a8a
...@@ -269,7 +269,7 @@ export const formProps: FormProps = { ...@@ -269,7 +269,7 @@ export const formProps: FormProps = {
addonAfter: '', addonAfter: '',
showLabel: true, showLabel: true,
autoCodeRule: 'ZJFA', autoCodeRule: 'ZJFA',
required: false, required: true,
isShow: true, isShow: true,
tooltipConfig: { visible: false, title: '提示文本' }, tooltipConfig: { visible: false, title: '提示文本' },
style: { width: '100%' }, style: { width: '100%' },
...@@ -361,7 +361,7 @@ export const formProps: FormProps = { ...@@ -361,7 +361,7 @@ export const formProps: FormProps = {
disabled: false, disabled: false,
allowClear: false, allowClear: false,
showLabel: true, showLabel: true,
required: false, required: true,
rules: [], rules: [],
events: {}, events: {},
listStyle: '', listStyle: '',
...@@ -406,7 +406,7 @@ export const formProps: FormProps = { ...@@ -406,7 +406,7 @@ export const formProps: FormProps = {
apiId: '93d735dcb7364a0f8102188ec4d77ac7', apiId: '93d735dcb7364a0f8102188ec4d77ac7',
}, },
dicOptions: [], dicOptions: [],
required: false, required: true,
rules: [], rules: [],
events: {}, events: {},
isShow: true, isShow: true,
...@@ -452,7 +452,7 @@ export const formProps: FormProps = { ...@@ -452,7 +452,7 @@ export const formProps: FormProps = {
apiId: '93d735dcb7364a0f8102188ec4d77ac7', apiId: '93d735dcb7364a0f8102188ec4d77ac7',
}, },
dicOptions: [], dicOptions: [],
required: false, required: true,
rules: [], rules: [],
events: {}, events: {},
isShow: true, isShow: true,
...@@ -493,7 +493,7 @@ export const formProps: FormProps = { ...@@ -493,7 +493,7 @@ export const formProps: FormProps = {
apiId: '93d735dcb7364a0f8102188ec4d77ac7', apiId: '93d735dcb7364a0f8102188ec4d77ac7',
}, },
dicOptions: [], dicOptions: [],
required: false, required: true,
rules: [], rules: [],
events: {}, events: {},
isShow: true, isShow: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment