refactor: set colum quotation
This commit is contained in:
parent
411fffe82f
commit
3608f8d0fe
1 changed files with 79 additions and 0 deletions
|
|
@ -53,4 +53,83 @@ export const columnPaySplit = [
|
|||
},
|
||||
] satisfies QTableProps['columns'];
|
||||
|
||||
export const columnQuotation = [
|
||||
{
|
||||
name: 'order',
|
||||
align: 'center',
|
||||
label: 'general.order',
|
||||
field: 'no',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'workName',
|
||||
align: 'left',
|
||||
label: 'quotation.title',
|
||||
field: 'workName',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'createdAt',
|
||||
align: 'left',
|
||||
label: 'quotation.processOn',
|
||||
field: 'createdAt',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'dueDate',
|
||||
align: 'left',
|
||||
label: 'quotation.validUntil',
|
||||
field: 'dueDate',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'contactName',
|
||||
align: 'left',
|
||||
label: 'quotation.contactName',
|
||||
field: 'contactName',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'actor',
|
||||
align: 'left',
|
||||
label: 'quotation.actor',
|
||||
field: 'actor',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'summaryPrice',
|
||||
align: 'left',
|
||||
label: 'quotation.totalPrice',
|
||||
field: 'summaryPrice',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'payCondition',
|
||||
align: 'left',
|
||||
label: 'quotation.payType',
|
||||
field: 'payCondition',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'status',
|
||||
align: 'left',
|
||||
label: 'general.status',
|
||||
field: 'status',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'example',
|
||||
align: 'left',
|
||||
label: 'general.example',
|
||||
field: 'example',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'action',
|
||||
align: 'left',
|
||||
label: '',
|
||||
field: '',
|
||||
},
|
||||
] satisfies QTableProps['columns'];
|
||||
|
||||
export const fieldSelectedOption = [{ label: 'general.type', value: 'value' }];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue