From 44282a7a03cc45d88b259152374e4a6e1868ee6c Mon Sep 17 00:00:00 2001 From: zch Date: Fri, 10 Jan 2025 10:16:56 +0800 Subject: [PATCH] =?UTF-8?q?change(wms):=20=E4=BF=AE=E6=94=B9=E9=87=87?= =?UTF-8?q?=E8=B4=AD=E5=8D=95=E5=AF=BC=E5=85=A5=E4=BE=9B=E5=BA=94=E5=95=86?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wms/wmsPurchaseOrder/index.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/wms/wmsPurchaseOrder/index.vue b/src/views/wms/wmsPurchaseOrder/index.vue index 9b43afd..5074f09 100644 --- a/src/views/wms/wmsPurchaseOrder/index.vue +++ b/src/views/wms/wmsPurchaseOrder/index.vue @@ -429,12 +429,13 @@ const handleExport = () => { }, `wmsPurchaseOrder_${new Date().getTime()}.xlsx`) } -const getListSelect = () => { - let res = getBaseSupplierInfoList(null); +const getListSelect = async () => { + let res = await getBaseSupplierInfoList(null); supplierList.value = res.data; } onMounted(() => { + getListSelect(); getList(); });