Commit 8a4920bc by 张恒

feat(gdgl): 添加计划编号字段配置

- 在配置文件中新增 jhbh 字段用于计划编号输入
- 设置默认值为 undefined 并使用 Input 组件渲染
- 保持与其他字段配置的一致性结构
parent 82f47016
...@@ -16,6 +16,12 @@ export const searchFormSchema: FormSchema[] = [ ...@@ -16,6 +16,12 @@ export const searchFormSchema: FormSchema[] = [
component: 'Input', component: 'Input',
}, },
{ {
field: 'jhbh',
label: '计划编号',
defaultValue: undefined,
component: 'Input',
},
{
field: 'ywzz', field: 'ywzz',
label: '业务组织', label: '业务组织',
defaultValue: undefined, defaultValue: undefined,
......
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