派生自 wuyushui/SewerAndRainNetwork

seatonwan9
2021-05-28 593f6ccd3aec8045a26b4b330f2b034df05bfd9f
src/components/base-page/enterprise-emergency/event-handling/DisposalProposed.vue
@@ -1,19 +1,25 @@
<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>-->
    <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>-->
    <el-card class="box-card">
      <div v-for="o in tableData" :key="o" class="text item">
        {{ o.content }}
      </div>
    </el-card>
    <div >
</div>
        <!--    </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>
    </div>
</template>
<script>
@@ -23,22 +29,91 @@
    return {
      tableData: [
        {
          no: 1,
          name: '关闭阀门',
          content: '关闭阀门B、阀门C,对上游管道进行截流;关闭阀门D,对下游管道进行截流',
          content: '1、关闭阀门B、阀门C,对上游管道进行截流;关闭阀门D,对下游管道进行截流',
          type: 'closeFM',
          fmGxList: {
            // 上游阀门
            syfm: [{ name: '阀门B', lng: 114, lat: 32 }, { name: '阀门a', lng: 114, lat: 32 }],
            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 }]
            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: {
  }
  methods: {}
}
</script>