lng计划业务逻辑处理

This commit is contained in:
‘huanghaiixia’
2026-03-16 17:52:36 +08:00
parent f822654100
commit ee57286c05
21 changed files with 3505 additions and 318 deletions

View File

@ -16,6 +16,16 @@ export const searchFormSchema: FormSchema[] = [
getPopupContainer: () => document.body,
},
},
{
field: 'cuName',
label: '客户名称/简称/编码',
component: 'Input',
},
{
field: 'suName',
label: '供应商名称/简称/编码',
component: 'Input',
},
{
field: 'noTractor',
label: '车头号',
@ -26,6 +36,25 @@ export const searchFormSchema: FormSchema[] = [
label: '挂车号',
component: 'Input',
},
{
field: 'statusCode',
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,
},
},
];
export const columns: BasicColumn[] = [
@ -48,7 +77,7 @@ export const columns: BasicColumn[] = [
},
{
dataIndex: 'staCode',
dataIndex: 'staName',
title: '气源地',
componentType: 'input',
align: 'left',
@ -75,7 +104,7 @@ export const columns: BasicColumn[] = [
},
{
dataIndex: 'qtyTonLoading',
dataIndex: 'qtyMeaTonSales',
title: '装车量(吨)',
componentType: 'input',
align: 'left',
@ -84,7 +113,7 @@ export const columns: BasicColumn[] = [
},
{
dataIndex: 'tenantId',
dataIndex: 'qtyMeaGjSales',
title: '装车量(吉焦)',
componentType: 'input',
align: 'left',
@ -93,7 +122,7 @@ export const columns: BasicColumn[] = [
},
{
dataIndex: 'modifyDate',
dataIndex: 'qtyMeaM3Sales',
title: '装车量(方)',
componentType: 'input',
align: 'left',