From 39dd8470ac2bf28f260a8a2c0ef564c4c04198a9 Mon Sep 17 00:00:00 2001 From: yangzifeng <2547435354@qq.com> Date: Mon, 2 Feb 2026 18:45:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wisdom/bill/index.vue | 4 ++-- src/views/wisdom/outbound/index.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/wisdom/bill/index.vue b/src/views/wisdom/bill/index.vue index cf6fb32..dc9756e 100644 --- a/src/views/wisdom/bill/index.vue +++ b/src/views/wisdom/bill/index.vue @@ -844,7 +844,7 @@ const total = ref(0); //单据 /** 查询库存单据主列表 */ function getList() { loading.value = true; - queryParams.value.bizTypeList = [0, 3]; + queryParams.value.bizTypeList = [0]; listBill(queryParams.value).then((response) => { billList.value = response.rows; total.value = response.total; @@ -1655,7 +1655,7 @@ const submitDelStock = () => { /** 导出按钮操作 */ function handleExport() { let obj = JSON.parse(JSON.stringify(queryParams.value)); - obj.bizTypeList = [0, 3]; + obj.bizTypeList = [0]; proxy.download( "wisdom/record/export", obj, diff --git a/src/views/wisdom/outbound/index.vue b/src/views/wisdom/outbound/index.vue index 2ad7669..49039b2 100644 --- a/src/views/wisdom/outbound/index.vue +++ b/src/views/wisdom/outbound/index.vue @@ -1114,7 +1114,7 @@ const total = ref(0); const billList = ref([]); function getList() { loading.value = true; - queryParams.value.bizTypeList = [1, 2]; + queryParams.value.bizTypeList = [1, 2, 3]; listBill(queryParams.value).then((response) => { billList.value = response.rows; total.value = response.total; @@ -1250,7 +1250,7 @@ function submitForm() { /** 导出按钮操作 */ function handleExport() { let obj = JSON.parse(JSON.stringify(queryParams.value)); - obj.bizTypeList = [1, 2]; + obj.bizTypeList = [1, 2, 3]; proxy.download( "wisdom/record/export", obj,