派生自 wuyushui/SewerAndRainNetwork

chenzeping
2021-03-29 e5502925619ecdbf8728086c73faeb5b654089c5
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
<template>
  <div class="wastewater-content">
    <div class="content-left">
      <span>{{ displayContent.StoragePlaceName }}</span>
    </div>
    <div class="content-right">
      <WasteWaterTable :displayContent="displayContent"></WasteWaterTable>
    </div>
  </div>
</template>
 
<script>
 
import WasteWaterTable from '@components/BaseNav/WasteWater/WasteWaterTable'
 
export default {
  name: 'WasteWaterContent',
  components: { WasteWaterTable },
  data () {
    return {
      displayContent: []
    }
  },
  methods: {
    setDate (data) {
      this.displayContent = data
    }
  }
}
</script>
 
<style lang="less" scoped>
span {
  font-size: 22px;
  color: red;
}
 
.wastewater-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
 
  .content-left {
    width: 35%;
  }
 
  .content-right {
    width: 60%;
  }
}
</style>