Commit 2119994bf71d16facd5c9f863ca521d58128b4d7
1 parent
aef83001
feat: 修改付款状态
Showing
1 changed file
with
1 additions
and
1 deletions
src/pages/Order/OrderList/OrderList.tsx
... | ... | @@ -247,7 +247,7 @@ const OrderList = ({ paramsNew, searchShow, toolbarShow }) => { |
247 | 247 | |
248 | 248 | // 付款状态枚举映射 |
249 | 249 | const getPaymentStatusText = (status: string | undefined): string => { |
250 | - if (!status) return '无'; | |
250 | + if (!status) return '待付款'; | |
251 | 251 | switch (status) { |
252 | 252 | case 'WAIT_PAYMENT': |
253 | 253 | return '待付款'; | ... | ... |