Commit a6e09732 by 张珈源

feat(ckgl): 添加单据状态字段和相关查询功能

- 在config.ts中新增zt字段配置,支持多选和搜索功能
- 在ScllModel.ts中添加zt、pch、lldh字段定义
- 更新表单组件属性配置,移除defaultSelect参数
- 优化样式文件末尾空白字符处理
parent dd79ea15
...@@ -11,6 +11,8 @@ export interface MesWarehousePromaterialPageParams extends BasicPageParams { ...@@ -11,6 +11,8 @@ export interface MesWarehousePromaterialPageParams extends BasicPageParams {
llr: string; llr: string;
ywzz: string; ywzz: string;
zt: string;
} }
/** /**
...@@ -159,6 +161,10 @@ export interface MesWarehousePromaterialInfoModel { ...@@ -159,6 +161,10 @@ export interface MesWarehousePromaterialInfoModel {
sfsl: string; sfsl: string;
pch: string;
lldh: string;
bz: string; bz: string;
p1: string; p1: string;
...@@ -228,8 +234,6 @@ export interface MesWarehousePromaterialInfoModel { ...@@ -228,8 +234,6 @@ export interface MesWarehousePromaterialInfoModel {
modifyDate: string; modifyDate: string;
modifyUserId: string; modifyUserId: string;
pch: string;
} }
/** /**
......
...@@ -36,6 +36,21 @@ export const searchFormSchema: FormSchema[] = [ ...@@ -36,6 +36,21 @@ export const searchFormSchema: FormSchema[] = [
defaultValue: undefined, defaultValue: undefined,
component: 'Input', component: 'Input',
}, },
{
field: 'zt',
label: '单据状态',
defaultValue: undefined,
component: 'XjrSelect',
componentProps: {
datasourceType: 'dic',
params: { itemId: '2016321281785163777' },
labelField: 'name',
valueField: 'value',
mode: 'multiple',
showSearch: true,
getPopupContainer: () => document.body,
},
},
]; ];
export const columns: BasicColumn[] = [ export const columns: BasicColumn[] = [
...@@ -440,7 +455,6 @@ export const formProps: FormProps = { ...@@ -440,7 +455,6 @@ export const formProps: FormProps = {
{ key: 2, label: 'Option 2', value: 'Option 2' }, { key: 2, label: 'Option 2', value: 'Option 2' },
{ key: 3, label: 'Option 3', value: 'Option 3' }, { key: 3, label: 'Option 3', value: 'Option 3' },
], ],
defaultSelect: null,
datasourceType: 'dic', datasourceType: 'dic',
params: { itemId: '2016321281785163777' }, params: { itemId: '2016321281785163777' },
labelField: 'name', labelField: 'name',
......
...@@ -395,4 +395,4 @@ ...@@ -395,4 +395,4 @@
</style> </style>
\ No newline at end of file
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