| | |
| | | <div class="main-matter"> |
| | | <div v-if="value === 'feiqi'"> |
| | | <el-row type="flex" class="row-bg row-item-one" justify="space-around"> |
| | | <el-col :span="8">监测点名称:{{ displayContentTab2.Name }}</el-col> |
| | | <el-col :span="8">生产单位:{{ displayContentTab2.porltName }}</el-col> |
| | | <el-col :span="8">排放类型名称:{{ displayContentTab2.MonTypeName }}</el-col> |
| | | <el-col :span="8">监测点名称:{{ setWasteGasdata.Name }}</el-col> |
| | | <el-col :span="8">生产单位:{{ setWasteGasdata.DeptSname }}</el-col> |
| | | <el-col :span="8">排放类型名称:{{ setWasteGasdata.MonTypeName }}</el-col> |
| | | </el-row> |
| | | <el-row type="flex" class="row-bg" justify="space-around"> |
| | | <el-col :span="8">排放去向:{{ displayContentTab.EmissDirecti }}</el-col> |
| | | <el-col :span="8">控制级别名称:{{ displayContentTab.ContrLevelShowName }}</el-col> |
| | | <el-col :span="8">内/外排口:{{ displayContentTab.OrOutPortName }}</el-col> |
| | | <el-col :span="8">排放去向:{{ setWasteGasdata.EmissDirecti }}</el-col> |
| | | <el-col :span="8">控制级别名称:{{ setWasteGasdata.ContrLevelShowName }}</el-col> |
| | | <el-col :span="8">内/外排口:{{ setWasteGasdata.OrOutPortName }}</el-col> |
| | | </el-row> |
| | | </div> |
| | | <div v-else-if="value === 'gufei'"> |
| | |
| | | <script> |
| | | export default { |
| | | name: 'GasTable', |
| | | props: ['displayContentTab', 'value'], |
| | | props: ['displayContentTab', 'value', 'setWasteGasdata'], |
| | | data () { |
| | | return { |
| | | displayContentTab2: [] |
| | |
| | | this.$nextTick(() => { |
| | | this.displayContentTab.forEach(item => { |
| | | this.displayContentTab2 = item |
| | | console.log(item) |
| | | }) |
| | | }) |
| | | } |