wvp-GB28181-pro/web_src/src/components/PlatformList.vue

248 lines
8.6 KiB
Vue
Raw Normal View History

<template>
<div id="app" style="width: 100%">
2024-08-15 00:03:53 +08:00
<div v-if="!platform">
<div class="page-header">
<div class="page-title">上级平台列表</div>
<div class="page-header-btn">
<el-button icon="el-icon-plus" size="mini" style="margin-right: 1rem;" type="primary" @click="addParentPlatform"></el-button>
<el-button icon="el-icon-refresh-right" circle size="mini" @click="refresh()"></el-button>
</div>
</div>
2021-01-08 11:02:53 +08:00
2024-08-15 00:03:53 +08:00
<!--设备列表-->
2024-08-15 17:45:24 +08:00
<el-table size="medium" :data="platformList" style="width: 100%" :height="winHeight">
2024-08-15 00:03:53 +08:00
<el-table-column prop="name" label="名称" ></el-table-column>
<el-table-column prop="serverGBId" label="平台编号" min-width="200"></el-table-column>
<el-table-column label="是否启用" min-width="80" >
<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" type="info" v-if="!scope.row.enable"></el-tag>
</div>
</template>
</el-table-column>
<el-table-column label="状态" min-width="80" >
<template slot-scope="scope">
<div slot="reference" class="name-wrapper">
<el-tag size="medium" v-if="scope.row.status">线</el-tag>
<el-tag size="medium" type="info" v-if="!scope.row.status">线</el-tag>
</div>
</template>
</el-table-column>
<el-table-column label="地址" min-width="160" >
<template slot-scope="scope">
<div slot="reference" class="name-wrapper">
2024-08-15 17:45:24 +08:00
<el-tag size="medium">{{ scope.row.serverIp}}:{{scope.row.serverPort }}</el-tag>
2024-08-15 00:03:53 +08:00
</div>
</template>
</el-table-column>
<el-table-column prop="deviceGBId" label="设备国标编号" min-width="200" ></el-table-column>
<el-table-column prop="transport" label="信令传输模式" min-width="120" ></el-table-column>
<el-table-column prop="channelCount" label="通道数" min-width="120" ></el-table-column>
<el-table-column label="订阅信息" min-width="120" 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="操作" min-width="240" fixed="right">
<template slot-scope="scope">
<el-button size="medium" icon="el-icon-edit" type="text" @click="editPlatform(scope.row)"></el-button>
2024-08-15 17:45:24 +08:00
<el-button size="medium" icon="el-icon-share" type="text" @click="chooseChannel(scope.row)"></el-button>
2024-08-15 00:03:53 +08:00
<el-button size="medium" icon="el-icon-delete" type="text" style="color: #f56c6c" @click="deletePlatform(scope.row)"></el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
2024-08-15 17:45:24 +08:00
style="text-align: right"
2024-08-15 00:03:53 +08:00
@size-change="handleSizeChange"
@current-change="currentChange"
:current-page="currentPage"
:page-size="count"
:page-sizes="[15, 25, 35, 50]"
layout="total, sizes, prev, pager, next"
:total="total">
</el-pagination>
</div>
2024-08-15 17:45:24 +08:00
<platformEdit ref="platformEdit" v-if="platform" v-model="platform" :closeEdit="closeEdit" :device-ips="deviceIps" ></platformEdit>
<chooseChannelDialog ref="chooseChannelDialog" ></chooseChannelDialog>
</div>
</template>
<script>
import uiHeader from '../layout/UiHeader.vue'
import chooseChannelDialog from './dialog/chooseChannel.vue'
2024-08-15 00:03:53 +08:00
import platformEdit from './PlatformEdit.vue'
import streamProxyEdit from "./dialog/StreamProxyEdit.vue";
export default {
name: 'app',
components: {
2024-08-15 00:03:53 +08:00
streamProxyEdit,
2021-01-08 11:02:53 +08:00
uiHeader,
2024-08-15 00:03:53 +08:00
chooseChannelDialog,
platformEdit
},
data() {
return {
2020-11-23 18:17:20 +08:00
platformList: [], //设备列表
2024-08-15 00:03:53 +08:00
deviceIps: [], //设备列表
defaultPlatform: null,
platform: null,
2020-11-23 18:17:20 +08:00
winHeight: window.innerHeight - 260,
currentPage:1,
count:15,
total:0
};
},
computed: {
2021-01-13 17:08:26 +08:00
getcurrentDeviceChannels: function() {
2021-01-13 17:08:26 +08:00
}
},
mounted() {
this.initData();
this.updateLooper = setInterval(this.initData, 10000);
},
destroyed() {
clearTimeout(this.updateLooper);
},
methods: {
2020-11-23 18:17:20 +08:00
addParentPlatform: function() {
2024-08-15 00:03:53 +08:00
this.platform = this.defaultPlatform;
2020-11-23 18:17:20 +08:00
},
editPlatform: function(platform) {
2024-08-15 17:45:24 +08:00
this.platform = platform;
2020-11-23 18:17:20 +08:00
},
2024-08-15 00:03:53 +08:00
closeEdit: function() {
this.platform = null;
this.getPlatformList()
},
2020-11-23 18:17:20 +08:00
deletePlatform: function(platform) {
var that = this;
that.$confirm('确认删除?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
that.deletePlatformCommit(platform)
})
},
deletePlatformCommit: function(platform) {
var that = this;
2021-04-12 16:04:04 +08:00
that.$axios({
method: 'delete',
url:`/api/platform/delete/${platform.serverGBId}`
2021-04-12 16:04:04 +08:00
}).then(function (res) {
if (res.data.code === 0) {
2021-04-12 16:04:04 +08:00
that.$message({
showClose: true,
message: '删除成功',
type: 'success'
});
that.initData()
}
}).catch(function (error) {
console.log(error);
});
2020-11-23 18:17:20 +08:00
},
chooseChannel: function(platform) {
2024-08-15 17:45:24 +08:00
console.log("platform.name: " + platform.name)
this.$refs.chooseChannelDialog.openDialog(platform.serverGBId,platform.deviceGBId, platform.name, platform.catalogId, this.initData)
2020-11-23 18:17:20 +08:00
},
initData: function() {
2024-08-15 00:03:53 +08:00
this.$axios({
method: 'get',
url: `/api/platform/server_config`
}).then((res)=> {
if (res.data.code === 0) {
this.deviceIps = res.data.data.deviceIp.split(',');
this.defaultPlatform = {
id: null,
enable: true,
ptz: true,
rtcp: false,
asMessageChannel: false,
autoPushChannel: false,
name: null,
serverGBId: null,
serverGBDomain: null,
2024-08-15 17:45:24 +08:00
serverIp: null,
2024-08-15 00:03:53 +08:00
serverPort: null,
deviceGBId: res.data.data.username,
deviceIp: this.deviceIps[0],
devicePort: res.data.data.devicePort,
username: res.data.data.username,
password: res.data.data.password,
expires: 3600,
keepTimeout: 60,
transport: "UDP",
characterSet: "GB2312",
startOfflinePush: false,
2024-08-15 17:45:24 +08:00
customGroup: false,
catalogWithPlatform: false,
catalogWithGroup: false,
catalogWithRegion: false,
manufacturer: null,
model: null,
address: null,
secrecy: 1,
2024-08-15 00:03:53 +08:00
catalogGroup: 1,
2024-08-15 17:45:24 +08:00
civilCode: null,
2024-08-15 00:03:53 +08:00
sendStreamIp: res.data.data.sendStreamIp,
}
}
}).catch(function (error) {
console.log(error);
});
2020-11-23 18:17:20 +08:00
this.getPlatformList();
},
currentChange: function(val){
this.currentPage = val;
2020-11-23 18:17:20 +08:00
this.getPlatformList();
},
handleSizeChange: function(val){
this.count = val;
2020-11-23 18:17:20 +08:00
this.getPlatformList();
},
2020-11-23 18:17:20 +08:00
getPlatformList: function() {
let that = this;
2021-04-12 16:04:04 +08:00
this.$axios({
method: 'get',
url:`/api/platform/query/${that.count}/${that.currentPage}`
2021-04-12 16:04:04 +08:00
}).then(function (res) {
if (res.data.code === 0) {
that.total = res.data.data.total;
that.platformList = res.data.data.list;
}
2021-04-12 16:04:04 +08:00
}).catch(function (error) {
console.log(error);
});
2022-06-15 10:40:45 +08:00
},
refresh: function (){
this.initData();
}
}
};
</script>
<style>
.subscribe-on{
color: #409EFF;
font-size: 18px;
}
.subscribe-off{
color: #afafb3;
font-size: 18px;
}
</style>