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() })