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

270 lines
7.7 KiB
Vue
Raw Normal View History

2024-07-23 18:00:47 +08:00
<template>
<div id="region" style="width: 100%">
2024-07-24 17:54:19 +08:00
<el-container v-loading="loading" >
<el-aside width="400px" >
2024-07-26 17:53:10 +08:00
<RegionTree ref="regionTree" :edit="true" :clickEvent="treeNodeClickEvent" :chooseIdChange="chooseIdChange"></RegionTree>
2024-07-23 18:00:47 +08:00
</el-aside>
<el-main style="padding: 5px;">
2024-07-24 17:54:19 +08:00
<div class="page-header">
<div class="page-title">通道列表</div>
<div class="page-header-btn">
<div style="display: inline;">
搜索:
<el-input @input="search" style="margin-right: 1rem; width: auto;" size="mini" placeholder="关键字"
prefix-icon="el-icon-search" v-model="searchSrt" clearable></el-input>
在线状态:
<el-select size="mini" style="width: 8rem; margin-right: 1rem;" @change="search" v-model="online" placeholder="请选择"
default-first-option>
<el-option label="全部" value=""></el-option>
<el-option label="在线" value="true"></el-option>
<el-option label="离线" value="false"></el-option>
</el-select>
2024-07-29 17:44:34 +08:00
添加状态:
<el-select size="mini" style="width: 8rem; margin-right: 1rem;" @change="search" v-model="hasCivilCode" placeholder="请选择"
default-first-option>
<el-option label="全部" value=""></el-option>
<el-option label="已添加" value="true"></el-option>
<el-option label="未添加" value="false"></el-option>
</el-select>
2024-07-28 07:36:20 +08:00
<el-button size="mini" type="primary" @click="add()">
2024-07-25 18:02:22 +08:00
添加
</el-button>
2024-07-24 17:54:19 +08:00
</div>
</div>
</div>
2024-07-23 18:00:47 +08:00
<el-table ref="channelListTable" :data="channelList" :height="winHeight" style="width: 100%"
2024-07-26 17:53:10 +08:00
header-row-class-name="table-header" @selection-change="handleSelectionChange">
2024-07-28 07:36:20 +08:00
<el-table-column type="selection" width="55" :selectable="selectable">
2024-07-26 17:53:10 +08:00
</el-table-column>
2024-07-23 18:00:47 +08:00
<el-table-column prop="gbName" label="名称" min-width="180">
</el-table-column>
<el-table-column prop="gbDeviceId" label="编号" min-width="180">
</el-table-column>
<el-table-column prop="gbManufacturer" label="厂家" min-width="100">
</el-table-column>
<el-table-column label="状态" min-width="100">
<template slot-scope="scope">
<div slot="reference" class="name-wrapper">
<el-tag size="medium" v-if="scope.row.gbStatus === 'ON'">线</el-tag>
2024-07-29 17:44:34 +08:00
<el-tag size="medium" type="info" v-if="scope.row.gbStatus !== 'ON'">线</el-tag>
2024-07-23 18:00:47 +08:00
</div>
</template>
</el-table-column>
2024-07-25 18:02:22 +08:00
<el-table-column label="添加状态" min-width="100">
2024-07-23 18:00:47 +08:00
<template slot-scope="scope">
2024-07-25 18:02:22 +08:00
<div slot="reference" class="name-wrapper">
2024-07-30 17:58:18 +08:00
<el-tag size="medium" v-if="scope.row.gbCivilCode">-{{scope.row.gbCivilCode}}</el-tag>
<el-tag size="medium" type="info" v-if="!scope.row.gbCivilCode"></el-tag>
2024-07-25 18:02:22 +08:00
</div>
2024-07-23 18:00:47 +08:00
</template>
</el-table-column>
</el-table>
<el-pagination
style="float: right"
@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>
</el-main>
</el-container>
</div>
</template>
<script>
import uiHeader from '../layout/UiHeader.vue'
import DeviceService from "./service/DeviceService";
import RegionTree from "./common/RegionTree.vue";
export default {
name: 'channelList',
components: {
uiHeader,
RegionTree,
},
data() {
return {
channelList: [],
searchSrt: "",
channelType: "",
online: "",
2024-07-30 17:58:18 +08:00
hasCivilCode: "false",
2024-07-26 17:53:10 +08:00
winHeight: window.innerHeight - 180,
2024-07-23 18:00:47 +08:00
currentPage: 1,
count: 15,
total: 0,
loading: false,
loadSnap: {},
2024-07-28 07:36:20 +08:00
regionId: "",
multipleSelection: []
2024-07-23 18:00:47 +08:00
};
},
2024-07-26 17:53:10 +08:00
created() {
2024-07-23 18:00:47 +08:00
this.initData();
},
destroyed() {},
methods: {
initData: function () {
2024-07-26 17:53:10 +08:00
this.getChannelList();
2024-07-23 18:00:47 +08:00
},
currentChange: function (val) {
this.currentPage = val;
this.initData();
},
handleSizeChange: function (val) {
this.count = val;
2024-07-25 18:02:22 +08:00
this.getChannelList();
2024-07-23 18:00:47 +08:00
},
2024-07-25 18:02:22 +08:00
getChannelList: function () {
2024-07-23 18:00:47 +08:00
this.$axios({
method: 'get',
2024-07-26 17:53:10 +08:00
url: `/api/common/channel/list`,
2024-07-23 18:00:47 +08:00
params: {
2024-07-29 17:44:34 +08:00
page: this.currentPage,
count: this.count,
query: this.searchSrt,
online: this.online,
hasCivilCode: this.hasCivilCode
2024-07-23 18:00:47 +08:00
}
2024-07-29 17:44:34 +08:00
}).then((res)=> {
2024-07-23 18:00:47 +08:00
if (res.data.code === 0) {
2024-07-29 17:44:34 +08:00
this.total = res.data.data.total;
this.channelList = res.data.data.list;
2024-07-23 18:00:47 +08:00
// 防止出现表格错位
2024-07-29 17:44:34 +08:00
this.$nextTick(() => {
this.$refs.channelListTable.doLayout();
2024-07-23 18:00:47 +08:00
})
}
2024-07-29 17:44:34 +08:00
}).catch((error)=> {
2024-07-23 18:00:47 +08:00
console.log(error);
});
},
2024-07-26 17:53:10 +08:00
handleSelectionChange: function (val){
2024-07-28 07:36:20 +08:00
this.multipleSelection = val;
},
selectable: function (row, rowIndex) {
2024-07-30 17:58:18 +08:00
if (row.gbCivilCode) {
2024-07-28 07:36:20 +08:00
return false
}else {
return true
}
2024-07-26 17:53:10 +08:00
},
2024-07-23 18:00:47 +08:00
add: function (row) {
2024-07-26 17:53:10 +08:00
if (!this.regionId) {
this.$message.info("请选择左侧行政区划节点")
2024-07-30 17:58:18 +08:00
return;
2024-07-26 17:53:10 +08:00
}
2024-07-28 07:36:20 +08:00
let channels = []
for (let i = 0; i < this.multipleSelection.length; i++) {
channels.push(this.multipleSelection[i].gbId)
}
2024-07-30 17:58:18 +08:00
if (channels.length === 0) {
this.$message.info("请选择右侧通道")
return;
}
this.loading = true
2024-07-26 17:53:10 +08:00
2024-07-30 17:58:18 +08:00
this.$axios({
method: 'post',
url: `/api/common/channel/region/add`,
data: {
civilCode: this.regionId,
channelIds: channels
}
}).then((res)=> {
if (res.data.code === 0) {
this.$message.success("保存成功")
}else {
this.$message.error(res.data.msg)
}
this.loading = false
}).catch((error)=> {
this.$message.error(error)
this.loading = false
});
2024-07-23 18:00:47 +08:00
},
remove: function (row) {
},
getSnap: function (row) {
let baseUrl = window.baseUrl ? window.baseUrl : "";
return ((process.env.NODE_ENV === 'development') ? process.env.BASE_API : baseUrl) + '/api/device/query/snap/' + this.deviceId + '/' + row.deviceId;
},
search: function () {
this.currentPage = 1;
this.total = 0;
this.initData();
},
refresh: function () {
this.initData();
},
treeNodeClickEvent: function (device, data, isCatalog) {
2024-07-26 17:53:10 +08:00
},
chooseIdChange: function (id) {
this.regionId = id;
2024-07-23 18:00:47 +08:00
},
}
};
</script>
<style>
.videoList {
display: flex;
flex-wrap: wrap;
align-content: flex-start;
}
.video-item {
position: relative;
width: 15rem;
height: 10rem;
margin-right: 1rem;
background-color: #000000;
}
.video-item-img {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 100%;
height: 100%;
}
.video-item-img:after {
content: "";
display: inline-block;
position: absolute;
z-index: 2;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 3rem;
height: 3rem;
background-image: url("../assets/loading.png");
background-size: cover;
background-color: #000000;
}
.video-item-title {
position: absolute;
bottom: 0;
color: #000000;
background-color: #ffffff;
line-height: 1.5rem;
padding: 0.3rem;
width: 14.4rem;
}
</style>