From 5e182da86c7a6c0c0f0cf03c06a8bd2419f2825f Mon Sep 17 00:00:00 2001 From: Flow <958079825@qq.com> Date: Wed, 3 Sep 2025 11:22:53 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/orders/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/views/orders/index.vue b/src/views/orders/index.vue index 46c8a4d43..39cdbba55 100644 --- a/src/views/orders/index.vue +++ b/src/views/orders/index.vue @@ -58,6 +58,8 @@ + + @@ -176,7 +178,9 @@ const paytypeFormatter = (_row: any, _column: any, cellValue: number) => { const paytypeMap: Record = { 1: '微信', 2: '支付宝', - 3: '银行卡' + 3: '银行卡', + 4: '现金', + 5: '其他' } return paytypeMap[cellValue] || '未知' }