From 3c93d885a3bc6a84079cc347bb30888d5fb98f11 Mon Sep 17 00:00:00 2001
From: chenyabin <Chenab123!>
Date: 星期二, 13 四月 2021 15:45:12 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/develop' into develop

---
 src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue |   59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 59 insertions(+), 0 deletions(-)

diff --git a/src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue b/src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue
new file mode 100644
index 0000000..c6c5206
--- /dev/null
+++ b/src/components/panel/topicSearch/SewersSelect/AnalysisChoose/CrossSectional.vue
@@ -0,0 +1,59 @@
+<template>
+  <div class="connectivity">
+    <el-row>
+      <el-button type="primary" size="mini">缁樺埗绾挎</el-button>
+      <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"
+          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>
+      <span class="clearfix">鏂潰鍥�</span>
+      <div class="cross-section">
+        <span>鏆傛棤鏁版嵁</span>
+      </div>
+    </el-card>
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'CrossSectional',
+  data () {
+    return {
+      tableData: []
+    }
+  }
+}
+</script>
+
+<style lang="less" scoped>
+.cross-section {
+  background: rgba(0, 16, 30, 0.5);
+  border: 0.00521rem solid @color;
+  box-shadow: 0 0 0.03rem @color;
+  color: #ffffff;
+  width: 100%;
+  height: 50px;
+  border-radius: 3px;
+  text-align: center;
+  line-height: 50px;
+}
+</style>

--
Gitblit v1.8.0