@ -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();
});
</script>