qa-prevention-gwj-vue/src/views/emergen_cyrescue/emergency_map/components/dialog.vue

310 lines
6.9 KiB
Vue
Raw Normal View History

<template>
2024-08-09 18:12:20 +08:00
<div class="bi-different-dialog">
<el-dialog
id="eldig"
:visible="visible"
:title="title"
:width="width"
append-to-body
top="5vh"
@close="handlerClose">
2024-08-09 18:40:51 +08:00
<!-- 消防模块 -->
2024-08-12 11:12:19 +08:00
<xf-point v-if="value.otherInfo && value.otherInfo.type === 'point'" :id="value.id" :type="value.otherInfo.type" :gangkou="gangkou"/>
<xf-control v-if="value.otherInfo && (value.otherInfo.type === 'xfbf01' || value.otherInfo.type ==='xfkzs01' || value.otherInfo.type ==='xfjyd01' || value.otherInfo.type ==='xfsy01')" :id="value.id" :type="value.otherInfo.type" :gangkou="gangkou"/>
2024-08-09 18:40:51 +08:00
<!-- 气象模块 -->
2024-08-12 11:12:19 +08:00
<weatherstation v-if="value.type === '12'" :id="value.id" :type="value.type" :gangkou="gangkou"/>
<windspeedstation v-if="value.type === '11'" :id="value.id" :type="value.type" :gangkou="gangkou"/>
<!-- 摄像头 -->
2024-08-12 11:12:19 +08:00
<video-play-plat v-if="value.otherInfo && value.otherInfo.type === 'platcamera'" :id="value.id" :type="value.otherInfo.type" :gangkou="gangkou"/>
<!-- 物资装备库 -->
<wu-zi v-if="value.type === '0'" :id="value.id" :type="value.type"/>
<!-- 避难所 -->
<bi-nan-suo v-if="value.type === '1'" :id="value.id" :type="value.type"/>
<!-- 排水井 -->
<pai-shui-jing v-if="value.type === '2'" :id="value.id" :type="value.type"/>
<!-- 封闭卡口 -->
<feng-bi-ka-kou v-if="value.type === '3'" :id="value.id" :type="value.type"/>
<!-- 报警点 -->
<bao-jing v-if="value.type === '13'" :id="value.id" :type="value.type"/>
2024-08-09 18:12:20 +08:00
</el-dialog>
</div>
</template>
<script>
2024-08-09 18:12:20 +08:00
import XfControl from '../../../map/dialog/xfControl.vue'
import XfPoint from '../../../map/dialog/xfPoint.vue'
2024-08-09 18:40:51 +08:00
import weatherstation from '../../../map/dialog/weatherstation.vue'
import windspeedstation from '../../../map/dialog/weatherstation.vue'
import videoPlayPlat from '../../../map/dialog/video_play_plat.vue'
2024-08-12 11:12:19 +08:00
import WuZi from '../dialog/wuZi.vue'
import BiNanSuo from '../dialog/biNanSuo.vue'
import PaiShuiJing from '../dialog/paiShuiJing.vue'
import FengBiKaKou from '../dialog/fengBiKaKou.vue'
import BaoJing from '../dialog/baoJing.vue'
2024-08-09 18:12:20 +08:00
export default {
2024-08-12 11:12:19 +08:00
components: { WuZi, BiNanSuo, PaiShuiJing, FengBiKaKou, BaoJing, videoPlayPlat, windspeedstation, weatherstation, XfPoint, XfControl },
props: {
visible: {
type: Boolean,
required: true
},
value: {
type: Object,
default: () => ({})
},
title: {
type: String,
required: false,
default: '弹窗默认标题'
},
width: {
type: String,
default: '1350px'
}
},
data() {
2024-08-09 18:12:20 +08:00
return {
gangkou: '0003'
}
},
mounted() {
console.log(this.value)
},
methods: {
handlerClose() {
this.$emit('update:visible', false)
}
}
}
</script>
<style lang="scss">
.bi_enterprise_dialog {
background-color: #034cd473 !important;
border-radius: 8px !important;
width: 1600px;
min-height: 500px;
height: 600px;
.el-dialog__header {
border: none !important;
}
.el-dialog__headerbtn .el-dialog__close {
color: #cac7c7 !important;
}
.el-dialog__title {
color: #fff !important;
}
.el-table {
background-color: transparent !important;
}
.el-table tr {
background-color: #202e89 !important;
color: #fff !important;
}
.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell {
background-color: #202e89 !important;
}
.el-table th.el-table__cell.is-leaf,
.el-table td.el-table__cell {
border-bottom: 1px solid rgba(36, 81, 192, 0.48) !important;
}
.el-table--border .el-table__cell {
border-right: 1px solid rgba(36, 81, 192, 0.48) !important;
}
.el-table--group,
.el-table--border {
border-color: rgba(36, 81, 192, 0.48) !important;
}
.el-table::before,
.el-table--group::after,
.el-table--border::after {
background-color: rgba(36, 81, 192, 0.48) !important;
}
.el-table .el-table__header-wrapper tr th {
background-color: #1c2c96 !important;
color: #fff !important;
}
.pagination-container {
background-color: #202e89 !important;
}
.el-pagination {
color: #fff !important;
}
.el-pagination__total,
.el-pagination__jump {
color: #fff !important;
}
.el-input__inner {
background: #202e89;
color: #FFFFFF;
border: 1px solid #ffffff60 !important;
}
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .btn-next,
.el-pagination.is-background .el-pager li {
margin: 0 5px;
background-color: #4174d1 !important;
color: #ffffff !important;
min-width: 30px;
border-radius: 2px;
}
.ui-foot {
position: absolute;
width: 100%;
bottom: 0;
height: 60px;
line-height: 60px;
background: none;
text-align: center;
z-index: 99;
}
.el-table--border th.el-table__cell {
border-bottom: 1px solid rgba(36, 81, 192, .48) !important;
}
.level-title {
color: #FFFFFF !important;
}
.el-dialog__body {
color: #fffdf4 !important;
}
.table-ui .tbg {
background: none;
}
.table-ui .tit {
background: none;
color: #FFFFFF;
}
.el-table__body tr.current-row>td.el-table__cell {
background: #1c2c96 !important;
}
.el-picker-panel {
color: #ffffff;
border: 1px solid #dfe4ed;
-webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
background: #333aa8 !important;
border-radius: 4px;
line-height: 30px;
margin: 5px 0;
}
.el-card {
background: none !important;
color: #FFFFFF !important;
}
.el-card__header {
color: #FFFFFF !important;
}
.el-tree,
.el-tree-node:focus>.el-tree-node__content,
.el-tree-node__content:hover {
background-color: #202e89 !important;
color: #fff !important;
}
.bbg {
background: #202e89 !important;
}
.el-dialog__title {
font-size: 22px !important;
}
.el-table--small {
font-size: 20px !important;
}
.el-dialog__title {
font-size: 26px !important;
}
.el-button--mini {
font-size: 24px !important;
}
.el-table__cell {
font-size: 24px !important;
}
.table-ui td {
font-size: 24px !important;
}
.el-button--small {
font-size: 24px !important;
}
.el-card__header {
color: #fff !important;
font-size: 24px !important;
}
.app-container {
padding-bottom: 50px !important;
}
.level-title h1 {
font-size: 24px !important;
}
.el-pagination span:not([class*=suffix]),
.el-pagination button {
font-size: 24px;
}
.el-pagination__sizes .el-input .el-input__inner {
font-size: 24px;
padding-left: 8px;
}
.el-pagination .el-select .el-input {
width: 130px;
margin: 0 5px;
}
.el-input--small {
font-size: 24px;
}
.el-dialog__body {
font-size: 24px;
}
.el-table .cell {
line-height: 36px !important;
}
.el-scrollbar__wrap {
overflow-x: hidden !important;
}
}
</style>