feat:【antd】【erp 系统】product 迁移

This commit is contained in:
YunaiV
2025-10-03 09:55:03 +08:00
parent 325cede2ed
commit eeb1f1ebf9
5 changed files with 42 additions and 12 deletions

View File

@@ -341,13 +341,13 @@ setupVbenVxeTable({
vxeUI.formats.add('formatAmount2', {
tableCellFormatMethod({ cellValue }, digits = 2) {
return `${erpNumberFormatter(cellValue, digits)}`;
return `${erpNumberFormatter(cellValue, digits)}`;
},
});
vxeUI.formats.add('formatFenToYuanAmount', {
tableCellFormatMethod({ cellValue }, digits = 2) {
return `${erpNumberFormatter(fenToYuan(cellValue), digits)}`;
return `${erpNumberFormatter(fenToYuan(cellValue), digits)}`;
},
});
},