提交 3245569e authored 作者: jinrongbin's avatar jinrongbin

查询条件增加“是否任务清单删除地块”

上级 a73005d3
......@@ -345,6 +345,19 @@ export const addSearchFormSchema: FormSchema[] = [
field: 'dkdm',
component: 'Input',
},
{
label: '是否任务清单删除地块',
field: 'isDel',
component: 'Select',
componentProps: () => {
return {
options: [
{ label: '是', value: '1' },
{ label: '否', value: '0' },
]
}
},
},
];
export const ZgshformSchema: FormSchema[] = [
// TODO 主键隐藏字段,目前写死为ID
......
......@@ -271,7 +271,20 @@ export const addSearchFormSchema: FormSchema[] = [
label: '地块名称或编码',
field: 'dkdm',
component: 'Input',
}
},
{
label: '是否任务清单删除地块',
field: 'isDel',
component: 'Select',
componentProps: () => {
return {
options: [
{ label: '是', value: '1' },
{ label: '否', value: '0' },
]
}
},
},
];
export const ZgshformSchema: FormSchema[] = [
// TODO 主键隐藏字段,目前写死为ID
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论