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

274 lines
4.8 KiB
Vue
Raw Normal View History

<template>
<el-dialog
:visible="visible"
:title="title"
:width="width"
append-to-body
custom-class="bi_enterprise_dialog"
top="5vh"
@close="handlerClose">
弹出框体内容
</el-dialog>
</template>
<script>
export default {
props: {
visible: {
type: Boolean,
required: true
},
value: {
type: Object,
default: () => ({})
},
title: {
type: String,
required: false,
default: '弹窗默认标题'
},
width: {
type: String,
default: '1350px'
}
},
data() {
return {}
},
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>