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 | 78 ++++++++++++++++++++++++-------------- 1 files changed, 49 insertions(+), 29 deletions(-) diff --git a/web_src/src/components/ParentPlatformList.vue b/web_src/src/components/ParentPlatformList.vue index 32c999d..5becea5 100644 --- a/web_src/src/components/ParentPlatformList.vue +++ b/web_src/src/components/ParentPlatformList.vue @@ -13,13 +13,13 @@ </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"> <div slot="reference" class="name-wrapper"> <el-tag size="medium" v-if="scope.row.enable">宸插惎鐢�</el-tag> - <el-tag size="medium" v-if="!scope.row.enable">鏈惎鐢�</el-tag> + <el-tag size="medium" type="info" v-if="!scope.row.enable">鏈惎鐢�</el-tag> </div> </template> </el-table-column> @@ -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"> @@ -121,25 +131,24 @@ }, deletePlatformCommit: function(platform) { var that = this; - that.$axios.post(`/api/platforms/delete`, platform) - .then(function (res) { - if (res.data == "success") { - that.$message({ - showClose: true, - message: '鍒犻櫎鎴愬姛', - type: 'success' - }); - that.initData() - } - }) - .catch(function (error) { - console.log(error); - }); + that.$axios({ + method: 'delete', + url:`/api/platform/delete/${platform.serverGBId}` + }).then(function (res) { + if (res.data == "success") { + that.$message({ + showClose: true, + message: '鍒犻櫎鎴愬姛', + type: 'success' + }); + that.initData() + } + }).catch(function (error) { + console.log(error); + }); }, 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(); @@ -155,17 +164,28 @@ getPlatformList: function() { let that = this; - this.$axios.get(`/api/platforms/${that.count}/${that.currentPage}`) - .then(function (res) { - that.total = res.data.total; - that.platformList = res.data.list; - }) - .catch(function (error) { - console.log(error); - }); + this.$axios({ + method: 'get', + url:`/api/platform/query/${that.count}/${that.currentPage}` + }).then(function (res) { + that.total = res.data.total; + that.platformList = res.data.list; + }).catch(function (error) { + console.log(error); + }); } } }; </script> +<style> +.subscribe-on{ + color: #409EFF; + font-size: 18px; +} +.subscribe-off{ + color: #afafb3; + font-size: 18px; +} +</style> -- Gitblit v1.8.0