Commit 2119994bf71d16facd5c9f863ca521d58128b4d7

Authored by boyang
1 parent aef83001

feat: 修改付款状态

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 '待付款';
... ...