From 224ea2977be8fd9af867316a911b1c569283e09d Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sat, 22 Nov 2025 09:01:13 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E3=80=90erp=E3=80=91receipt=20?= =?UTF-8?q?=E5=B0=86=20supplierList=20=E4=BF=AE=E5=A4=8D=E4=B8=BA=20custom?= =?UTF-8?q?erList?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/erp/finance/receipt/index.vue | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/views/erp/finance/receipt/index.vue b/src/views/erp/finance/receipt/index.vue index b96a33d5..d754c460 100644 --- a/src/views/erp/finance/receipt/index.vue +++ b/src/views/erp/finance/receipt/index.vue @@ -33,16 +33,16 @@ class="!w-240px" /> - + ([]) // 供应商列表 +const customerList = ref([]) // 客户列表 const userList = ref([]) // 用户列表 const accountList = ref([]) // 账户列表 @@ -384,8 +384,8 @@ const handleSelectionChange = (rows: FinanceReceiptVO[]) => { /** 初始化 **/ onMounted(async () => { await getList() - // 加载供应商、用户、账户 - supplierList.value = await SupplierApi.getSupplierSimpleList() + // 加载客户、用户、账户 + customerList.value = await CustomerApi.getCustomerSimpleList() userList.value = await UserApi.getSimpleUserList() accountList.value = await AccountApi.getAccountSimpleList() })