派生自 wuyushui/SewerAndRainNetwork

seatonwan9
2021-05-30 d195225b4e628e541caca0944d54fec027572a06
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<template>
  <div class="public-schedule">
    <el-table :data="tableData" max-height="500px" border>
      <el-scrollbar style="height: 50vh">
        <el-table-column prop="OnLineMonEmissPointName" label="排放点"></el-table-column>
        <el-table-column prop="MonTimeStr" label="监测时间"></el-table-column>
        <el-table-column label="氮氧化物">
          <el-table-column prop="MonQty" width="70">
              <template slot="header" class="l2">浓度 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="OrglQty" width="70">
            <template slot="header" class="l2">折算值 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="ConvertQty" width="70">
            <template slot="header" class="l2">标准值 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="EmissQty" width="70">
            <template slot="header" class="l2">排放量 <br/>(kg/h)</template>>
          </el-table-column>
        </el-table-column>
        <el-table-column label="二氧化硫">
          <el-table-column prop="MonQty" width="70">
            <template slot="header" class="l2">浓度 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="OrglQty" width="70">
            <template slot="header" class="l2">折算值 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="ConvertQty" width="70">
            <template slot="header" class="l2">标准值 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="EmissQty" width="60">
            <template slot="header" class="l2">排放量 <br/>(kg/h)</template>>
          </el-table-column>
        </el-table-column>
        <el-table-column label="烟尘">
          <el-table-column prop="MonQty" width="70">
            <template slot="header" class="l2">浓度 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="OrglQty" width="70">
            <template slot="header" class="l2">折算值 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="ConvertQty" width="70">
            <template slot="header" class="l2">标准值 <br/>(mg/m³)</template>>
          </el-table-column>
          <el-table-column prop="EmissQty" width="60">
            <template slot="header" class="l2">排放量 <br/>(kg/h)</template>>
          </el-table-column>
        </el-table-column>
        <el-table-column label="废气流量">
          <el-table-column prop="StdValue" label="气量"></el-table-column>
        </el-table-column>
      </el-scrollbar>
    </el-table>
  </div>
</template>
 
<script>
export default {
  name: 'Scheduleof',
  data () {
    return {
      tableData: []
    }
  }
}
</script>
 
<style lang="less" scoped>
 
</style>