From ba8633e99a27b90c55b47e8f7d6225f1f0efc6bb Mon Sep 17 00:00:00 2001
From: 648540858 <456panlinlin>
Date: 星期五, 08 四月 2022 18:09:23 +0800
Subject: [PATCH] 优化地图-添加地图页面以及设备树

---
 web_src/src/components/ParentPlatformList.vue |   30 +++++++++++++++++++++++++-----
 1 files changed, 25 insertions(+), 5 deletions(-)

diff --git a/web_src/src/components/ParentPlatformList.vue b/web_src/src/components/ParentPlatformList.vue
index c4e6b0a..5becea5 100644
--- a/web_src/src/components/ParentPlatformList.vue
+++ b/web_src/src/components/ParentPlatformList.vue
@@ -13,7 +13,7 @@
         </div>
         <!--璁惧鍒楄〃-->
         <el-table :data="platformList" border style="width: 100%" :height="winHeight">
-          <el-table-column prop="name" label="鍚嶇О" width="240" align="center"></el-table-column>
+          <el-table-column prop="name" label="鍚嶇О" align="center"></el-table-column>
           <el-table-column prop="serverGBId" label="骞冲彴缂栧彿" width="180" align="center"></el-table-column>
           <el-table-column label="鏄惁鍚敤" width="120" align="center">
             <template slot-scope="scope">
@@ -38,9 +38,19 @@
               </div>
             </template>
           </el-table-column>
-          <el-table-column prop="deviceGBId" label="璁惧鍥芥爣缂栧彿" width="240" align="center"></el-table-column>
+          <el-table-column prop="deviceGBId" label="璁惧鍥芥爣缂栧彿" width="200" align="center"></el-table-column>
           <el-table-column prop="transport" label="淇′护浼犺緭妯″紡" width="120" align="center"></el-table-column>
-          <el-table-column prop="channelCount" label="閫氶亾鏁�" align="center"></el-table-column>
+          <el-table-column prop="channelCount" label="閫氶亾鏁�" width="120" align="center"></el-table-column>
+          <el-table-column label="璁㈤槄淇℃伅" width="240" align="center" fixed="right">
+            <template slot-scope="scope">
+              <i v-if="scope.row.alarmSubscribe" style="font-size: 20px" title="鎶ヨ璁㈤槄" class="iconfont icon-gbaojings subscribe-on " ></i>
+              <i v-if="!scope.row.alarmSubscribe" style="font-size: 20px" title="鎶ヨ璁㈤槄" class="iconfont icon-gbaojings subscribe-off " ></i>
+              <i v-if="scope.row.catalogSubscribe" title="鐩綍璁㈤槄"  class="iconfont icon-gjichus subscribe-on" ></i>
+              <i v-if="!scope.row.catalogSubscribe" title="鐩綍璁㈤槄" class="iconfont icon-gjichus subscribe-off" ></i>
+              <i v-if="scope.row.mobilePositionSubscribe" title="浣嶇疆璁㈤槄" class="iconfont icon-gxunjians subscribe-on" ></i>
+              <i v-if="!scope.row.mobilePositionSubscribe" title="浣嶇疆璁㈤槄" class="iconfont icon-gxunjians subscribe-off" ></i>
+            </template>
+          </el-table-column>
 
           <el-table-column label="鎿嶄綔" width="300" align="center" fixed="right">
             <template slot-scope="scope">
@@ -138,7 +148,7 @@
         });
     },
     chooseChannel: function(platform) {
-       this.$refs.chooseChannelDialog.openDialog(platform.serverGBId, this.initData)
+       this.$refs.chooseChannelDialog.openDialog(platform.serverGBId, platform.name, platform.catalogId, this.initData)
     },
     initData: function() {
       this.getPlatformList();
@@ -156,7 +166,7 @@
 
       this.$axios({
       	method: 'get',
-	url:`/api/platform/query/${that.count}/${that.currentPage}`
+        url:`/api/platform/query/${that.count}/${that.currentPage}`
       }).then(function (res) {
         that.total = res.data.total;
         that.platformList = res.data.list;
@@ -169,3 +179,13 @@
   }
 };
 </script>
+<style>
+.subscribe-on{
+  color: #409EFF;
+  font-size: 18px;
+}
+.subscribe-off{
+  color: #afafb3;
+  font-size: 18px;
+}
+</style>

--
Gitblit v1.8.0