价格申请列表
This commit is contained in:
@ -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,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user