From 210bdf181c2b7e7490648667f6860d993463d129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <14166000+zhangtonghai@user.noreply.gitee.com> Date: Tue, 4 Jun 2024 09:25:03 +0800 Subject: [PATCH] 06/04 --- .../CustomerReconciliation/index.vue | 3 +++ .../operation/seaexport/detail/columns.tsx | 24 +++++++------------ 2 files changed, 11 insertions(+), 16 deletions(-) create mode 100644 src/views/operation/CustomerReconciliation/index.vue diff --git a/src/views/operation/CustomerReconciliation/index.vue b/src/views/operation/CustomerReconciliation/index.vue new file mode 100644 index 00000000..6329e108 --- /dev/null +++ b/src/views/operation/CustomerReconciliation/index.vue @@ -0,0 +1,3 @@ + + + diff --git a/src/views/operation/seaexport/detail/columns.tsx b/src/views/operation/seaexport/detail/columns.tsx index c978eee5..b1a2d220 100644 --- a/src/views/operation/seaexport/detail/columns.tsx +++ b/src/views/operation/seaexport/detail/columns.tsx @@ -69,14 +69,6 @@ if (FnblType.length) { ListData.blType.push({ label: e.name, value: e.value }) }) } -//揽货人数据 -const FnsaleId: any = await GetSaleList() -if (FnsaleId.succeeded) { - ListData.saleId = [] - FnsaleId.data.forEach((e) => { - ListData.saleId.push({ ...e, label: e.userName, value: e.id }) - }) -} const FnsaleDeptId: any = await GetDeptList() if (FnsaleDeptId.succeeded) { @@ -121,13 +113,6 @@ if (FnshipAgencyId.succeeded) { ListData.shipAgencyId.push({ label: e.codeName, value: e.id }) }) } -// const FnsaleId: any = await GetSaleUserList() -// if (FnsaleId.succeeded) { -// ListData.saleId = [] -// FnsaleId.data.forEach((e) => { -// ListData.saleId.push({ ...e, label: `${e.userName}/${e.userCode}`, value: e.id }) -// }) -// } const FncustomerService: any = await GetCustomerServiceList() if (FncustomerService.succeeded) { @@ -852,8 +837,15 @@ export const basicInfoFormSchema: FormSchema[] = [ componentProps: ({ formModel, formActionType }) => { return { allowClear: true, - options: ListData.saleId, showSearch: true, + // options: ListData.saleId, + // const FnsaleId: any = await GetSaleList() + // if (FnsaleId.succeeded) { + // ListData.saleId = [] + // FnsaleId.data.forEach((e) => { + // ListData.saleId.push({ ...e, label: e.userName, value: e.id }) + // }) + // } filterOption: (input: string, option: any) => { let RData = false if (option.userName.toLowerCase().indexOf(input.toLowerCase()) >= 0) {