Commit 35b61e1ec10b9d608c1018e7ffb6d0f0979b6518
1 parent
e81b808c
feat: update 申请开票,部分开票
Showing
1 changed file
with
1 additions
and
1 deletions
src/pages/Order/index.tsx
... | ... | @@ -1830,7 +1830,7 @@ const OrderPage = () => { |
1830 | 1830 | //保存这个搜索条件 |
1831 | 1831 | //订单id处理 |
1832 | 1832 | if (params.id !== '') { |
1833 | - if (params.id.indexOf(',')) { | |
1833 | + if (params.id?.indexOf(',')) { | |
1834 | 1834 | params.id = params.id.split(','); |
1835 | 1835 | params.id = params.id.filter((id) => { |
1836 | 1836 | return id !== ''; | ... | ... |