2025-09-13 16:57:24 +08:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2026-01-23 15:43:22 +08:00
|
|
|
<PageTitle :malginLeft="10" :height="35" backgroundColor="#ffff" :marginBottom="5" :marginTop="5">
|
2025-09-13 16:57:24 +08:00
|
|
|
<template #left>
|
2026-01-23 15:43:22 +08:00
|
|
|
<el-button size="small" v-for="(el,index) in tabBtn" :type="tabActive==index?'primary':''" @click="tabActive=index" :key="el">{{ el }}</el-button>
|
2025-09-13 16:57:24 +08:00
|
|
|
</template>
|
|
|
|
|
</PageTitle>
|
|
|
|
|
<ZdrPage v-if="tabActive==0" />
|
|
|
|
|
<ZdqtPage v-else-if="tabActive==1" />
|
|
|
|
|
<ZdclPage v-else-if="tabActive==2" />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import PageTitle from "@/components/aboutTable/PageTitle.vue";
|
|
|
|
|
import ZdrPage from "./components/zdrPage.vue";
|
|
|
|
|
import ZdqtPage from "./components/zdqtPage.vue";
|
|
|
|
|
import ZdclPage from "./components/zdclPage.vue";
|
|
|
|
|
import { reactive, ref, onMounted, getCurrentInstance, nextTick } from "vue";
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
const tabBtn=ref(["重点人","重点群体","重点车辆"])
|
|
|
|
|
const tabActive=ref(0)
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.marks {
|
|
|
|
|
padding: 0 4px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
background: #73acf1;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<style>
|
|
|
|
|
.el-loading-mask {
|
|
|
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
|
|
|
}
|
|
|
|
|
</style>
|