fix: 🧩 修复BUG
This commit is contained in:
@@ -38,8 +38,8 @@ export const useTable = (
|
||||
state.totalParam.org_number = state.totalParam.org_number.join(",");
|
||||
}
|
||||
//品线
|
||||
if (Array.isArray(state.totalParam?.product_line_name) && state.totalParam?.product_line_name?.length) {
|
||||
state.totalParam.org_number = state.totalParam.product_line_name.join(",");
|
||||
if (Array.isArray(state.totalParam?.product_line) && state.totalParam?.product_line?.length) {
|
||||
state.totalParam.product_line = state.totalParam.product_line.join(",");
|
||||
}
|
||||
//客户名称
|
||||
if (Array.isArray(state.totalParam?.customer_number) && state.totalParam?.customer_number?.length) {
|
||||
|
||||
Reference in New Issue
Block a user