From c55a25a9ebdbca255bf36dfb70e65818cd3a65d3 Mon Sep 17 00:00:00 2001
From: mkm <727897186@qq.com>
Date: Mon, 22 Apr 2024 16:25:58 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/supervision_project/index.vue | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/src/views/supervision_project/index.vue b/src/views/supervision_project/index.vue
index a6e1716..f10ca86 100644
--- a/src/views/supervision_project/index.vue
+++ b/src/views/supervision_project/index.vue
@@ -143,7 +143,7 @@
-
@@ -163,6 +163,7 @@ import detailConfig from './detail'
import { deptLists } from '@/api/org/department'
const route = useRoute()
+const router = useRouter()
const editRef = shallowRef>()
const detailRef = ref('')
// 是否显示编辑框
@@ -238,6 +239,13 @@ const getDeptList = async () => {
const res = await deptLists()
deptList.value = res.lists
}
+const success = () => {
+ router.push({
+ path: '/supervision/supervision_basic/supervision_project',
+
+ })
+
+}
getLists()
getDeptList()