Compare commits
2 Commits
bdde65f1c4
...
34a1e4aefb
| Author | SHA1 | Date | |
|---|---|---|---|
| 34a1e4aefb | |||
| 244fcc1703 |
@ -130,7 +130,7 @@ const props = defineProps({
|
|||||||
default: 180
|
default: 180
|
||||||
},
|
},
|
||||||
tableHeight: {
|
tableHeight: {
|
||||||
type: Number
|
type: Number || String,
|
||||||
},
|
},
|
||||||
isScroll: {
|
isScroll: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
|||||||
@ -61,11 +61,9 @@
|
|||||||
<el-icon :size="20" v-if="ispLayBack" @click="closeLayBack">
|
<el-icon :size="20" v-if="ispLayBack" @click="closeLayBack">
|
||||||
<Bell />
|
<Bell />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
<!-- -->
|
|
||||||
<el-icon :size="20" v-else @click="openLayBack">
|
<el-icon :size="20" v-else @click="openLayBack">
|
||||||
<MuteNotification />
|
<MuteNotification />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="width: 100%;border: 1px sienna;position: relative">
|
<div style="width: 100%;border: 1px sienna;position: relative">
|
||||||
<GdMap></GdMap>
|
<GdMap></GdMap>
|
||||||
|
|||||||
@ -148,8 +148,8 @@ const store = useStore();
|
|||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const btns = reactive({
|
const btns = reactive({
|
||||||
rightBtn: ["四色预警", "重点人群"],
|
rightBtn: ["实站支撑", "安全监控"],
|
||||||
leftBtn: ["智能布控", '研判首页'],
|
leftBtn: ["数据整合", '分析研判'],
|
||||||
moreBtn: [
|
moreBtn: [
|
||||||
{ name: '后台', img: require('@/assets/images/Group427322486.png') },
|
{ name: '后台', img: require('@/assets/images/Group427322486.png') },
|
||||||
{ name: '退出登录', img: require('@/assets/images/Group427322485.png') }]
|
{ name: '退出登录', img: require('@/assets/images/Group427322485.png') }]
|
||||||
@ -185,22 +185,20 @@ const handleBtns = (val) => {
|
|||||||
|
|
||||||
btnsActive.value = val;
|
btnsActive.value = val;
|
||||||
switch (val) {
|
switch (val) {
|
||||||
case "智能布控":
|
case "数据整合":
|
||||||
router.push("/DeploymentArea");
|
router.push("/resourceMonitoring");
|
||||||
break;
|
break;
|
||||||
case "四色预警":
|
case "实站支撑":
|
||||||
router.push("/IdentityManage");
|
router.push("/InfoCollection");
|
||||||
break;
|
break;
|
||||||
case "研判首页":
|
case "分析研判":
|
||||||
router.push("/ResearchHome");
|
router.push("/ResearchHome");
|
||||||
break;
|
break;
|
||||||
case "后台":
|
case "后台":
|
||||||
router.push("/editPassword");
|
router.push("/editPassword");
|
||||||
break;
|
break;
|
||||||
case "重点人群":
|
case "安全监控":
|
||||||
router.push("/mpvPeo");
|
router.push("/BaseLibrary");
|
||||||
// const NPShref = router.resolve({ path: '/KeyPopulations', query: {}});
|
|
||||||
// window.open(NPShref.href, "_blank");
|
|
||||||
break;
|
break;
|
||||||
case "退出登录":
|
case "退出登录":
|
||||||
store.dispatch("user/logout");
|
store.dispatch("user/logout");
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="comom-title">
|
<div class="comom-title">
|
||||||
<div class="title">预警等级统计</div>
|
<div class="title">四色预警统计</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="comom-cnt" style="border-right: 1px solid #ebebeb;width: 100%;" v-loading="loadingyj">
|
<div class="comom-cnt" style="border-right: 1px solid #ebebeb;width: 100%;" v-loading="loadingyj">
|
||||||
<WarningCount ref="yjjbRef"></WarningCount>
|
<WarningCount ref="yjjbRef"></WarningCount>
|
||||||
|
|||||||
@ -23,6 +23,7 @@ import { qcckGet } from "@/api/qcckApi.js";
|
|||||||
const pageData = reactive({
|
const pageData = reactive({
|
||||||
tableData: [],
|
tableData: [],
|
||||||
keyCount: 0,
|
keyCount: 0,
|
||||||
|
tableHeight: '100%',
|
||||||
tableConfiger: {
|
tableConfiger: {
|
||||||
loading: false,
|
loading: false,
|
||||||
rowHieght: 61,
|
rowHieght: 61,
|
||||||
@ -46,6 +47,7 @@ const getList = () => {
|
|||||||
pageData.tableConfiger.loading = true
|
pageData.tableConfiger.loading = true
|
||||||
qcckGet({},'/mosty-gsxt/tbYjxx/selectYjxxFzTen').then(res => {
|
qcckGet({},'/mosty-gsxt/tbYjxx/selectYjxxFzTen').then(res => {
|
||||||
let list = res || []
|
let list = res || []
|
||||||
|
list = list.concat(list)
|
||||||
pageData.tableData = list.map((item, index) => {
|
pageData.tableData = list.map((item, index) => {
|
||||||
item.order = index + 1
|
item.order = index + 1
|
||||||
return item
|
return item
|
||||||
|
|||||||
Reference in New Issue
Block a user