合同查询、日志

This commit is contained in:
‘huanghaiixia’
2026-02-05 10:59:08 +08:00
parent 07b166b1b7
commit fa527fc312
11 changed files with 285 additions and 60 deletions

View File

@ -6,7 +6,16 @@ export const formConfig = {
};
export const searchFormSchema: FormSchema[] = [
{
field: 'dateFrom',
label: '有效期',
component: 'RangePicker',
componentProps: {
format: 'YYYY-MM-DD',
style: { width: '100%' },
getPopupContainer: () => document.body,
},
},
{
field: 'kName',
label: '合同号/名称',
@ -17,29 +26,29 @@ export const searchFormSchema: FormSchema[] = [
label: '供应商',
component: 'Input',
},
{
field: 'comId',
label: '合同主体',
component: 'Input',
},
{
field: 'pointUpName',
label: '上载点',
component: 'Input',
// componentProps: {
// showSearch: true,
// optionFilterProp: 'label',
// filterOption: (input: string, option: any) => {
// return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
// },
// options: [
// // { label: '全部', value: '' },
// ],
// placeholder: '请选择',
// allowClear: true,
},
{
field: 'comId',
label: '合同主体',
component: 'Select',
componentProps: {
showSearch: true,
optionFilterProp: 'label',
filterOption: (input: string, option: any) => {
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0;
},
options: [
// { label: '全部', value: '' },
],
placeholder: '请选择',
allowClear: true,
// getPopupContainer: () => document.body,
// },
getPopupContainer: () => document.body,
},
},
{
field: 'approCode',