This commit is contained in:
lcw
2026-01-26 17:35:11 +08:00
2 changed files with 55 additions and 18 deletions

View File

@ -606,15 +606,7 @@ export const publicRoutes = [
icon: "article-create"
}
},
{
path: "/mpvPeoSh",
name: "mpvPeoSh",
component: () => import("@/views/backOfficeSystem/DeploymentDisposal/mpvPeoSh/index"),
meta: {
title: "重点人审批",
icon: "article-create"
}
},
{
path: "/mpvGroup",
name: "mpvGroup",
@ -624,15 +616,7 @@ export const publicRoutes = [
icon: "article-create"
}
},
{
path: "/mpvGroupSh",
name: "mpvGroupSh",
component: () => import("@/views/backOfficeSystem/DeploymentDisposal/mpvGroupSh/index"),
meta: {
title: "重点群体审核",
icon: "article-create"
}
},
{
path: "/mpvCar",
name: "mpvCar",
@ -642,6 +626,33 @@ export const publicRoutes = [
icon: "article-create"
}
},
{
path: "/mvpSP",
name: "mvpSP",
component: () => import("@/views/backOfficeSystem/DeploymentDisposal/mvpSP/index"),
meta: {
title: "审核列表",
icon: "article-create"
}
},
// {
// path: "/mpvPeoSh",
// name: "mpvPeoSh",
// component: () => import("@/views/backOfficeSystem/DeploymentDisposal/mpvPeoSh/index"),
// meta: {
// title: "重点人审批",
// icon: "article-create"
// }
// },
// {
// path: "/mpvGroupSh",
// name: "mpvGroupSh",
// component: () => import("@/views/backOfficeSystem/DeploymentDisposal/mpvGroupSh/index"),
// meta: {
// title: "重点群体审核",
// icon: "article-create"
// }
// },
]
},
{

View File

@ -0,0 +1,26 @@
<template>
<div>
<PageTitle :malginLeft="10" :height="35" backgroundColor="#ffff" :marginBottom="5" :marginTop="5">
<template #left>
<el-button size="small" v-for="el in tabBtn" :type="tabActive==el?'primary':''" @click="tabActive=el" :key="el">{{ el }}</el-button>
</template>
</PageTitle>
<ZdrSP v-if="tabActive == '重点人审批'" />
<ZdqtSP v-if="tabActive == '重点群体审批'" />
</div>
</template>
<script setup>
import PageTitle from "@/components/aboutTable/PageTitle.vue";
import ZdrSP from "@/views/backOfficeSystem/DeploymentDisposal/mpvPeoSh/index";
import ZdqtSP from "@/views/backOfficeSystem/DeploymentDisposal/mpvGroupSh/index";
import { ref } from "vue";
const tabBtn=ref(["重点人审批","重点群体审批"])
const tabActive=ref('重点人审批')
</script>
<style>
.el-loading-mask {
background: rgba(0, 0, 0, 0.5) !important;
}
</style>