派生自 wuyushui/SewerAndRainNetwork

陈泽平
2021-05-27 5a53b178955ad7c6197d25d62f98b0967a4e1df5
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<template>
    <div>
        <!--    <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%">-->
        <!--      <el-table-column prop="define" label="建议处置措施" show-overflow-tooltip></el-table-column>-->
        <!--      <el-table-column type="selection" label="预览" width="55"></el-table-column>-->
 
        <!--    </el-table>-->
        <div class="" style="padding: 5px;">
            <!--      <div v-for="o in tableData" :key="o" class="text item">-->
            <!--        {{ o.content }}-->
            <!--      </div>-->
            <div>
                1、关闭阀门B、阀门C,对上游管道进行截流;关闭阀门D,对下游管道进行截流
                <div>
 
                </div>
            </div>
        </div>
        <div>
        </div>
 
    </div>
</template>
 
<script>
export default {
  name: 'DisposalProposed',
  data () {
    return {
      tableData: [
        {
          no: 1,
          name: '关闭阀门',
          content: '1、关闭阀门B、阀门C,对上游管道进行截流;关闭阀门D,对下游管道进行截流',
          type: 'closeFM',
          fmGxList: {
            // 上游阀门
            syfm: [{
              name: '阀门B',
              lng: 114,
              lat: 32
            }, {
              name: '阀门a',
              lng: 114,
              lat: 32
            }],
            // 下游阀门
            xyfm: [{
              name: '阀门E',
              lng: 114,
              lat: 32
            }, {
              name: '阀门F',
              lng: 114,
              lat: 32
            }]
          }
        }, {
          no: 1,
          name: '关闭阀门',
          content: '1、关闭阀门B、阀门C,对上游管道进行截流;关闭阀门D,对下游管道进行截流',
          type: 'closeFM',
          fmGxList: {
            // 上游阀门
            syfm: [{
              name: '阀门B',
              lng: 114,
              lat: 32
            }, {
              name: '阀门a',
              lng: 114,
              lat: 32
            }],
            // 下游阀门
            xyfm: [{
              name: '阀门E',
              lng: 114,
              lat: 32
            }, {
              name: '阀门F',
              lng: 114,
              lat: 32
            }]
          }
        }, {
          no: 1,
          name: '关闭阀门',
          content: '1、关闭阀门B、阀门C,对上游管道进行截流;关闭阀门D,对下游管道进行截流',
          type: 'closeFM',
          fmGxList: {
            // 上游阀门
            syfm: [{
              name: '阀门B',
              lng: 114,
              lat: 32
            }, {
              name: '阀门a',
              lng: 114,
              lat: 32
            }],
            // 下游阀门
            xyfm: [{
              name: '阀门E',
              lng: 114,
              lat: 32
            }, {
              name: '阀门F',
              lng: 114,
              lat: 32
            }]
          }
        }]
 
    }
  },
  methods: {}
}
</script>
 
<style scoped>
 
</style>