价格申请列表

This commit is contained in:
‘huanghaiixia’
2026-03-05 17:46:46 +08:00
parent 62e9e7fa85
commit 1b24d0284e
10 changed files with 141 additions and 147 deletions

View File

@ -6,29 +6,21 @@ export const formConfig = {
};
export const searchFormSchema: FormSchema[] = [
{
field: 'id',
label: 'Id',
component: 'Input',
},
{
field: 'appName',
label: '申请说明',
component: 'Input',
},
{
field: 'priceTypeCode',
label: '定价类型',
component: 'Input',
},
{
field: 'comId',
label: '交易主体',
component: 'Input',
field: 'dateFrom',
label: '申请日期',
component: 'RangePicker',
componentProps: {
format: 'YYYY-MM-DD',
style: { width: '100%' },
allowClear: true,
getPopupContainer: () => document.body,
},
},
{
field: 'priceDesc',
label: '说明',
label: '申请说明',
component: 'Input',
},
{
@ -47,14 +39,6 @@ export const searchFormSchema: FormSchema[] = [
];
export const columns: BasicColumn[] = [
{
dataIndex: 'id',
title: 'Id',
componentType: 'input',
align: 'left',
sorter: true,
},
{
dataIndex: 'appName',
@ -66,20 +50,20 @@ export const columns: BasicColumn[] = [
},
{
dataIndex: 'priceTypeCode',
dataIndex: 'priceTypeName',
title: '定价类型',
componentType: 'input',
align: 'left',
width: 100,
sorter: true,
},
{
dataIndex: 'comId',
dataIndex: 'comName',
title: '交易主体',
componentType: 'input',
align: 'left',
width: 120,
sorter: true,
},
@ -93,11 +77,11 @@ export const columns: BasicColumn[] = [
},
{
dataIndex: 'approCode',
dataIndex: 'approName',
title: '审批状态',
componentType: 'select',
align: 'left',
width: 100,
sorter: true,
},
];