From cfb92f155cd9a7a69f6d4e58cbd826c36cb613a7 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 06 Jan 2025 09:48:15 +0800 Subject: [PATCH] fix(mall): 修复 V3 数值计算逻辑 --- src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html b/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html index 91659f2..3e3db7b 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/moneyFlowList.html @@ -28,6 +28,7 @@ <option value="">请选择</option> <option value="1">碳币</option> <option value="2">碳积分</option> + <option value="4">USDT</option> </select> </div> </div> @@ -144,6 +145,8 @@ return '碳币'; } else if(d.flowType === 2) { return '碳积分' + } else if(d.flowType === 4) { + return 'USDT' } else { return '-'; } -- Gitblit v1.9.1