派生自 wuyushui/SewerAndRainNetwork

chenzeping
2021-04-13 6215e0df70faa440aa8d4c21fd6d6515a05518c5
src/components/panel/topicSearch/SewersSelect/AnalysisChoose/Tube.vue
@@ -1,13 +1,14 @@
<template>
  <div class="connectivity">
    <el-row>
      <span class="tube-span">爆管(相关开关)</span>
      <el-button type="primary" size="mini">选择管线</el-button>
      <el-button type="primary" size="mini">清除</el-button>
    </el-row>
    <el-card class="box-card">
      <span class="clearfix">发生爆裂的管段</span>
    <el-table
        :data="tableData"
        height="250"
        border
        style="width: 100%">
      <el-table-column
          prop="date"
@@ -24,6 +25,26 @@
          label="操作">
      </el-table-column>
    </el-table>
      <span class="clearfix">需要关闭的阀门</span>
      <el-table
          :data="tableData"
          style="width: 100%">
        <el-table-column
            prop="date"
            label="管线名称"
            width="180">
        </el-table-column>
        <el-table-column
            prop="name"
            label="管线类型"
            width="180">
        </el-table-column>
        <el-table-column
            prop="address"
            label="操作">
        </el-table-column>
      </el-table>
    </el-card>
  </div>
</template>
@@ -39,7 +60,9 @@
</script>
<style lang="less" scoped>
/deep/ .el-table {
  margin-top: 15px;
.tube-span {
  color: #ffffff !important;
  font-size: 14px;
  margin: 0 15px;
}
</style>