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] || '未知'
}