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()