|
|
@ -62,15 +62,15 @@ export const CustomerStatementMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '年月', |
|
|
|
field: 'yearsMonthStr', |
|
|
|
sort: 'custom', |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM' |
|
|
|
}, |
|
|
|
isForm:false, |
|
|
|
}, |
|
|
|
// {
|
|
|
|
// label: '年月',
|
|
|
|
// field: 'yearsMonthStr',
|
|
|
|
// sort: 'custom',
|
|
|
|
// detail: {
|
|
|
|
// dateFormat: 'YYYY-MM'
|
|
|
|
// },
|
|
|
|
// isForm:false,
|
|
|
|
// },
|
|
|
|
{ |
|
|
|
label: '状态', |
|
|
|
field: 'status', |
|
|
@ -92,12 +92,26 @@ export const CustomerStatementMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
{ |
|
|
|
label: '创建时间', |
|
|
|
field: 'createTime', |
|
|
|
sort: 'custom', |
|
|
|
isTable:true, |
|
|
|
formatter: dateFormatter, |
|
|
|
isSearch: false, |
|
|
|
detail: { |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss' |
|
|
|
}, |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
table: { |
|
|
|
width: 180 |
|
|
|
}, |
|
|
|
form: { |
|
|
|
component: 'DatePicker', |
|
|
|
componentProps: { |
|
|
|
style: {width:'100%'}, |
|
|
|
type: 'datetime', |
|
|
|
dateFormat: 'YYYY-MM-DD HH:mm:ss', |
|
|
|
valueFormat: 'x', |
|
|
|
} |
|
|
|
}, |
|
|
|
isSearch: true, |
|
|
|
search: { |
|
|
|
component: 'DatePicker', |
|
|
|
componentProps: { |
|
|
@ -106,7 +120,6 @@ export const CustomerStatementMain = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
|
|
|
} |
|
|
|
}, |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '操作', |
|
|
@ -283,9 +296,10 @@ export const CustomerStatementReconciliation = useCrudSchemas(reactive<CrudSchem |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '验收日期', |
|
|
|
field: 'acceptCheckTime', |
|
|
|
field: 'checkTime', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
formatter: dateFormatter, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '订单号', |
|
|
@ -295,7 +309,7 @@ export const CustomerStatementReconciliation = useCrudSchemas(reactive<CrudSchem |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '数量-INTEX', |
|
|
|
field: 'tftmQuantity', |
|
|
|
field: 'intexQuantity', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
@ -398,7 +412,7 @@ export const CustomerStatementShareReconciliation = useCrudSchemas(reactive<Crud |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '模具分摊金额', |
|
|
|
field: 'allocationPrice', |
|
|
|
field: 'amount', |
|
|
|
sort: 'custom', |
|
|
|
isForm: false, |
|
|
|
}, |
|
|
|