Commit d10c881b by 张恒

feat(ckwz): 注释掉上级位置字段并移除显示名称和备注字段

- 注释掉了parentId字段的TreeSelectComponent配置
- 移除了completeName字段的Input组件配置
- 移除了note字段的Input组件配置
parent d7b66e94
...@@ -8,31 +8,31 @@ export const searchFormSchema: FormSchema[] = [ ...@@ -8,31 +8,31 @@ export const searchFormSchema: FormSchema[] = [
defaultValue: undefined, defaultValue: undefined,
component: 'Input', component: 'Input',
}, },
{ // {
field: 'parentId', // field: 'parentId',
label: '上级位置', // label: '上级位置',
defaultValue: undefined, // defaultValue: undefined,
component: 'TreeSelectComponent', // component: 'TreeSelectComponent',
componentProps: { // componentProps: {
span: 5, // span: 5,
defaultValue: '', // defaultValue: '',
showLabel: true, // showLabel: true,
isShow: true, // isShow: true,
required: true, // required: true,
events: {}, // events: {},
rules: [], // rules: [],
treeConfig: { // treeConfig: {
id: '2008372971650543617', // id: '2008372971650543617',
isMultiple: false, // isMultiple: false,
height: 100, // height: 100,
innerParams: [], // innerParams: [],
type: 2, // type: 2,
isSaveLast: true, // isSaveLast: true,
}, // },
tooltipConfig: { visible: false, title: '提示文本' }, // tooltipConfig: { visible: false, title: '提示文本' },
style: {}, // style: {},
}, // },
}, // },
{ {
field: 'locationType', field: 'locationType',
label: '位置类型', label: '位置类型',
...@@ -48,18 +48,12 @@ export const searchFormSchema: FormSchema[] = [ ...@@ -48,18 +48,12 @@ export const searchFormSchema: FormSchema[] = [
getPopupContainer: () => document.body, getPopupContainer: () => document.body,
} }
}, },
{ /* {
field: 'completeName',
label: '显示名称',
defaultValue: undefined,
component: 'Input',
},
{
field: 'note', field: 'note',
label: '备注', label: '备注',
defaultValue: undefined, defaultValue: undefined,
component: 'Input', component: 'Input',
}, },*/
]; ];
export const columns: BasicColumn[] = [ export const columns: BasicColumn[] = [
......
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