fix: 🧩 修复bug
This commit is contained in:
@@ -228,8 +228,10 @@ const getCustomers = async (keywords: any, item: any) => {
|
||||
let options: any = [];
|
||||
data.forEach((it: any) => {
|
||||
options.push({
|
||||
value: it.customer_number,
|
||||
label: it.customer_name
|
||||
value: it.customer_number + "_" + it.use_org_number,
|
||||
label: it.customer_name + " " + `(${it.use_org_name})`,
|
||||
id: it.use_org_number,
|
||||
useOrgName: it.use_org_name
|
||||
});
|
||||
});
|
||||
item.options = options;
|
||||
|
||||
Reference in New Issue
Block a user