<template>
|
<div class="gas-tab">
|
<el-row type="flex" class="row-bg" justify="space-around">
|
<el-col :span="12">监测点名称:{{ displayContent.Name }}</el-col>
|
<el-col :span="12">生产单位:{{ displayContent.DeptSname }}</el-col>
|
<el-col :span="12">排放类型加载:{{ displayContent.EmissTypeName }}</el-col>
|
</el-row>
|
<el-row type="flex" class="row-bg" justify="space-around">
|
<el-col :span="12">排放去向:{{ displayContent.EmissTypeDirectName }}</el-col>
|
<el-col :span="12">控制级别名称:{{ displayContent.ContrLevelShowName }}</el-col>
|
<el-col :span="12">内/外排口:{{ displayContent.OrOutPortName }}</el-col>
|
</el-row>
|
</div>
|
</template>
|
|
<script>
|
export default {
|
name: 'GasTable',
|
props: ['displayContent'],
|
data () {
|
return {}
|
}
|
}
|
</script>
|
|
<style scoped lang="less">
|
.gas-tab {
|
border: 1px #4c667d solid;
|
}
|
|
.el-row {
|
color: #00d0f9;
|
|
.el-col {
|
width: 200px;
|
height: 28px;
|
background-color: #243a55;
|
border-radius: 0.05rem;
|
margin: 5px 0;
|
text-align: center;
|
line-height: 28px;
|
}
|
}
|
</style>
|