Browse Source

FWHL-200

hella_online_20250123
王宇飞 3 weeks ago
parent
commit
572fd543be
  1. 26
      src/views/wms/supplierManage/supplierApbalance/supplierApbalanceMain/supplierApbalanceMain.data.ts

26
src/views/wms/supplierManage/supplierApbalance/supplierApbalanceMain/supplierApbalanceMain.data.ts

@ -169,7 +169,10 @@ export const SupplierApbalanceMain = useCrudSchemas(reactive<CrudSchema[]>([
isSearch: false, isSearch: false,
table: { table: {
width: 120, width: 120,
} },
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
return Number(cellValue).toFixed(2)
},
}, },
{ {
label: '其他应付金额', label: '其他应付金额',
@ -178,7 +181,11 @@ export const SupplierApbalanceMain = useCrudSchemas(reactive<CrudSchema[]>([
isSearch: false, isSearch: false,
table: { table: {
width: 120, width: 120,
} },
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
return Number(cellValue).toFixed(2)
},
}, },
{ {
label: '预付金额', label: '预付金额',
@ -187,7 +194,10 @@ export const SupplierApbalanceMain = useCrudSchemas(reactive<CrudSchema[]>([
isSearch: false, isSearch: false,
table: { table: {
width: 120, width: 120,
} },
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
return Number(cellValue).toFixed(2)
},
}, },
{ {
label: '暂估余额', label: '暂估余额',
@ -196,7 +206,10 @@ export const SupplierApbalanceMain = useCrudSchemas(reactive<CrudSchema[]>([
isSearch: false, isSearch: false,
table: { table: {
width: 120, width: 120,
} },
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
return Number(cellValue).toFixed(2)
},
}, },
{ {
label: '活动金额', label: '活动金额',
@ -205,7 +218,10 @@ export const SupplierApbalanceMain = useCrudSchemas(reactive<CrudSchema[]>([
isSearch: false, isSearch: false,
table: { table: {
width: 120, width: 120,
} },
formatter: (_: Recordable, __: TableColumn, cellValue: number) => {
return Number(cellValue).toFixed(2)
},
}, },
{ {
label: '付款周期', label: '付款周期',

Loading…
Cancel
Save