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

@ -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>