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

302 lines
9.9 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">
2024-08-29 17:18:22 +08:00
搜索:
<el-input @input="getPlatformList" style="margin-right: 1rem; width: auto;" size="mini" placeholder="关键字"
prefix-icon="el-icon-search" v-model="searchSrt" clearable></el-input>
2024-08-28 17:10:53 +08:00
<el-button icon="el-icon-plus" size="mini" style="margin-right: 1rem;" type="primary"
@click="addParentPlatform">添加
</el-button>
2024-08-15 00:03:53 +08:00
<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-28 17:10:53 +08:00
<el-table size="medium" :data="platformList" style="width: 100%" :height="winHeight" :loading="loading">
<el-table-column prop="name" label="名称"></el-table-column>
2024-08-15 00:03:53 +08:00
<el-table-column prop="serverGBId" label="平台编号" min-width="200"></el-table-column>
2024-08-28 17:10:53 +08:00
<el-table-column label="是否启用" min-width="80">
2024-08-15 00:03:53 +08:00
<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>
2024-08-28 17:10:53 +08:00
<el-table-column label="状态" min-width="80">
2024-08-15 00:03:53 +08:00
<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>
2024-08-28 17:10:53 +08:00
<el-table-column label="地址" min-width="160">
2024-08-15 00:03:53 +08:00
<template slot-scope="scope">
<div slot="reference" class="name-wrapper">
2024-08-28 17:10:53 +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>
2024-08-28 17:10:53 +08:00
<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">
2024-08-15 00:03:53 +08:00
<template slot-scope="scope">
2024-08-28 17:10:53 +08:00
<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>
2024-08-15 00:03:53 +08:00
</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-28 17:10:53 +08:00
<el-button size="medium" icon="el-icon-share" type="text" @click="chooseChannel(scope.row)">
</el-button>
<el-button size="medium" icon="el-icon-top" type="text" :loading="pushChannelLoading"
@click="pushChannel(scope.row)">推送通道
</el-button>
<el-button size="medium" icon="el-icon-delete" type="text" style="color: #f56c6c"
@click="deletePlatform(scope.row)">删除
</el-button>
2024-08-15 00:03:53 +08:00
</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-28 17:10:53 +08:00
<platformEdit ref="platformEdit" v-if="platform" v-model="platform" :closeEdit="closeEdit"
:device-ips="deviceIps"></platformEdit>
<shareChannel ref="shareChannel"></shareChannel>
</div>
</template>
<script>
import uiHeader from '../layout/UiHeader.vue'
2024-08-15 23:45:00 +08:00
import shareChannel from './dialog/shareChannel.vue'
2024-08-15 00:03:53 +08:00
import platformEdit from './PlatformEdit.vue'
import streamProxyEdit from "./dialog/StreamProxyEdit.vue";
2024-08-28 17:10:53 +08:00
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 23:45:00 +08:00
shareChannel,
2024-08-15 00:03:53 +08:00
platformEdit
},
data() {
return {
2024-08-28 17:10:53 +08:00
loading: false,
2020-11-23 18:17:20 +08:00
platformList: [], //设备列表
2024-08-15 00:03:53 +08:00
deviceIps: [], //设备列表
defaultPlatform: null,
platform: null,
pushChannelLoading: false,
2020-11-23 18:17:20 +08:00
winHeight: window.innerHeight - 260,
2024-08-29 17:18:22 +08:00
searchSrt: "",
2024-08-28 17:10:53 +08:00
currentPage: 1,
count: 15,
total: 0
};
},
2024-08-28 17:10:53 +08:00
computed: {},
mounted() {
this.initData();
this.updateLooper = setInterval(this.initData, 10000);
},
destroyed() {
clearTimeout(this.updateLooper);
},
methods: {
2024-08-28 17:10:53 +08:00
addParentPlatform: function () {
2024-08-15 00:03:53 +08:00
this.platform = this.defaultPlatform;
2020-11-23 18:17:20 +08:00
},
2024-08-28 17:10:53 +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-28 17:10:53 +08:00
closeEdit: function () {
2024-08-15 00:03:53 +08:00
this.platform = null;
this.getPlatformList()
},
2024-08-28 17:10:53 +08:00
deletePlatform: function (platform) {
this.$confirm('确认删除?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.deletePlatformCommit(platform)
})
2020-11-23 18:17:20 +08:00
},
2024-08-28 17:10:53 +08:00
deletePlatformCommit: function (platform) {
this.loading = true;
this.$axios({
method: 'delete',
url: `/api/platform/delete/`,
params: {
id: platform.id
}
}).then((res) => {
this.loading = false;
if (res.data.code === 0) {
this.$message.success({
showClose: true,
message: '删除成功',
});
this.initData()
}
}).catch((error) => {
this.loading = false;
this.$message.error({
showClose: true,
message: error,
2021-04-12 16:04:04 +08:00
});
2024-08-28 17:10:53 +08:00
});
2020-11-23 18:17:20 +08:00
},
2024-08-28 17:10:53 +08:00
chooseChannel: function (platform) {
2024-08-16 16:23:54 +08:00
this.$refs.shareChannel.openDialog(platform.id, this.initData)
2020-11-23 18:17:20 +08:00
},
2024-08-28 17:10:53 +08:00
pushChannel: function (row) {
this.pushChannelLoading = true;
this.$axios({
method: 'get',
url: `/api/platform/channel/push`,
params: {
id: row.id,
}
2024-08-28 17:10:53 +08:00
}).then((res) => {
this.pushChannelLoading = false;
if (res.data.code === 0) {
this.$message.success({
showClose: true,
message: '推送成功',
});
2024-08-28 17:10:53 +08:00
} else {
this.$message.error({
showClose: true,
message: res.data.msg,
});
}
2024-08-28 17:10:53 +08:00
}).catch((error) => {
console.log(error);
this.pushChannelLoading = false;
this.$message.error({
showClose: true,
message: error,
});
});
},
2024-08-28 17:10:53 +08:00
initData: function () {
2024-08-15 00:03:53 +08:00
this.$axios({
method: 'get',
url: `/api/platform/server_config`
2024-08-28 17:10:53 +08:00
}).then((res) => {
2024-08-15 00:03:53 +08:00
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();
},
2024-08-28 17:10:53 +08:00
currentChange: function (val) {
this.currentPage = val;
2020-11-23 18:17:20 +08:00
this.getPlatformList();
},
2024-08-28 17:10:53 +08:00
handleSizeChange: function (val) {
this.count = val;
2020-11-23 18:17:20 +08:00
this.getPlatformList();
},
2024-08-28 17:10:53 +08:00
getPlatformList: function () {
2021-04-12 16:04:04 +08:00
this.$axios({
2024-08-28 17:10:53 +08:00
method: 'get',
2024-08-29 17:18:22 +08:00
url: `/api/platform/query`,
params: {
count: this.count,
page: this.currentPage,
query: this.searchSrt
}
}).then((res)=> {
if (res.data.code === 0) {
2024-08-29 17:18:22 +08:00
this.total = res.data.data.total;
this.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
},
2024-08-28 17:10:53 +08:00
refresh: function () {
2022-06-15 10:40:45 +08:00
this.initData();
}
}
};
</script>
<style>
2024-08-28 17:10:53 +08:00
.subscribe-on {
color: #409EFF;
font-size: 18px;
}
2024-08-28 17:10:53 +08:00
.subscribe-off {
color: #afafb3;
font-size: 18px;
}
</style>