diff --git a/frontend/packages/BasicComponents/InfoCardCollection/index.vue b/frontend/packages/BasicComponents/InfoCardCollection/index.vue index d3f3fe9..0b3ba48 100644 --- a/frontend/packages/BasicComponents/InfoCardCollection/index.vue +++ b/frontend/packages/BasicComponents/InfoCardCollection/index.vue @@ -153,7 +153,8 @@ export default { } return (index % 3) + 1 }, - formatFundsRmb (amount) { + formatFundsRmb (str) { + const amount = Number(str) / 10000; if (amount === undefined || amount === null) return '未知' if (amount < 10) return '0w-10w' else if (amount < 20) return '10w-20w'