From 324fa92d3f450fd169aa1edfbdab4c5c28b51829 Mon Sep 17 00:00:00 2001
From: buaixuexideshitongxue <2936013465@qq.com>
Date: Wed, 25 Mar 2026 16:29:20 +0800
Subject: [PATCH] =?UTF-8?q?fix--=E5=8A=A0=E4=B8=8A=E5=BD=93=E5=89=8D?=
=?UTF-8?q?=E7=8E=AF=E8=8A=82=E3=80=81=E5=BD=92=E6=A1=A3=E6=97=B6=E9=97=B4?=
=?UTF-8?q?=E3=80=81=E5=AE=A1=E8=AE=A1=E5=B1=82=E7=BA=A7=E6=90=9C=E7=B4=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/entryWindow/index.vue | 64 ++++++++++++++++++++++++++++++++-
1 file changed, 63 insertions(+), 1 deletion(-)
diff --git a/src/views/entryWindow/index.vue b/src/views/entryWindow/index.vue
index 8ef0212..6950c6f 100644
--- a/src/views/entryWindow/index.vue
+++ b/src/views/entryWindow/index.vue
@@ -13,10 +13,13 @@ const uid = userStore.user.userName;
const dict = catchStore.getDicts(["procurementMethod"]);
const tableData = ref([])
const ressDialog =ref(false)
+const currentNodeOptions = Object.entries(FlowNodeEnum).map(([value, label]) => ({ value, label }))
let query = ref({
current: 1,
size: 10,
- code:'all'
+ code:'all',
+ nodeList: [],
+ auditLevel: ''
})
let showRecord =ref(false)
let total = ref(10)
@@ -116,6 +119,9 @@ const reset =()=>{
query.value = {
current: 1,
size: 10,
+ code:'all',
+ nodeList: [],
+ auditLevel: ''
};
getList();
}
@@ -346,6 +352,62 @@ const isAdminShow = ()=>{
+