From 2080f3921c88fa111b2a3eee1c473a5e3b7cba96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A6=82=E5=88=9D?= <3236758982@qq.com> Date: Fri, 6 Mar 2026 17:21:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=BF=AB=E6=8D=B7=E5=88=86?= =?UTF-8?q?=E7=B1=BB=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/erp/purchase/in/index.vue | 55 +++++++++++++++ src/views/erp/purchase/inquiry/index.vue | 63 +++++++++++++++++ src/views/erp/purchase/order/index.vue | 56 +++++++++++++++ src/views/erp/purchase/return/index.vue | 56 +++++++++++++++ src/views/erp/purchaserequisition/index.vue | 76 +++++++++++++++++++++ src/views/erp/sale/order/index.vue | 56 +++++++++++++++ src/views/erp/sale/out/index.vue | 56 +++++++++++++++ src/views/erp/sale/return/index.vue | 55 +++++++++++++++ 8 files changed, 473 insertions(+) diff --git a/src/views/erp/purchase/in/index.vue b/src/views/erp/purchase/in/index.vue index 9c8d585..890e55e 100644 --- a/src/views/erp/purchase/in/index.vue +++ b/src/views/erp/purchase/in/index.vue @@ -17,6 +17,30 @@ +
+
+ 全部订单 +
+
+ 待审核 +
+
+ 已审核 +
+
+
@@ -409,9 +433,40 @@ onActivated(() => { getList() } }) + + +/** 快捷分类筛选 */ +const handleQuickFilter = (status: number | undefined) => { + queryParams.status = status + queryParams.pageNo = 1 + getList() +}