fix: 🧩 修复BUG

This commit is contained in:
2025-10-10 16:58:14 +08:00
parent efee846973
commit 190be3b7ce
9 changed files with 75 additions and 24 deletions

View File

@@ -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) {