From 354a39961ad26949f597e4c434b0cd470b7f78ee Mon Sep 17 00:00:00 2001
From: 648540858 <648540858@qq.com>
Date: 星期一, 14 三月 2022 18:24:30 +0800
Subject: [PATCH] 优化点播, 级联点播级联录像。级联列表显示订阅状态

---
 web_src/src/components/ParentPlatformList.vue |   26 +++++++++++++++++++++++---
 1 files changed, 23 insertions(+), 3 deletions(-)

diff --git a/web_src/src/components/ParentPlatformList.vue b/web_src/src/components/ParentPlatformList.vue
index a3f1120..ff3de48 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: 1.5rem;" title="鎶ヨ璁㈤槄" class="subscribe-on iconfont icon-gbaojings" ></i>
+              <i v-if="!scope.row.alarmSubscribe" style="font-size: 1.5rem;" title="鎶ヨ璁㈤槄" class="subscribe-off iconfont icon-gbaojings" ></i>
+              <i v-if="scope.row.catalogSubscribe" title="鐩綍璁㈤槄"  class="subscribe-on iconfont icon-gjichus" ></i>
+              <i v-if="!scope.row.catalogSubscribe" title="鐩綍璁㈤槄" class="subscribe-off iconfont icon-gjichus" ></i>
+              <i v-if="scope.row.gpsSubscribe" title="浣嶇疆璁㈤槄" class="subscribe-on iconfont icon-gxunjians" ></i>
+              <i v-if="!scope.row.gpsSubscribe" title="浣嶇疆璁㈤槄" class="subscribe-off iconfont icon-gxunjians" ></i>
+            </template>
+          </el-table-column>
 
           <el-table-column label="鎿嶄綔" width="300" align="center" fixed="right">
             <template slot-scope="scope">
@@ -169,3 +179,13 @@
   }
 };
 </script>
+<style>
+.subscribe-on{
+  color: #409EFF;
+  font-size: 1.3rem;
+}
+.subscribe-off{
+  color: #afafb3;
+  font-size: 1.3rem;
+}
+</style>

--
Gitblit v1.8.0