派生自 wuyushui/SewerAndRainNetwork

zhangshuaibao
2021-03-31 9ebe61e0dd331eeb53c3b0cb022c732ceb9e6b87
src/components/BaseNav/PublicBounced/GasComponents/GasTable.vue
@@ -1,44 +0,0 @@
<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>