派生自 wuyushui/SewerAndRainNetwork

chenzeping
2021-03-29 bedfd1ab5b85d84841b04e9845197cd5ebd81b52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<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>