| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- <template>
- <div class="mainContainer">
- <div class="lt" v-show="showLeft">
- <div class="sum-title">
- 控制台
- </div>
- <div class="cube">
- <Region :region-list="regionList" @GetInfoClick="ClickGetInfo"></Region>
- </div>
- <div class="cube">
- <Detecter :detecter-list="detectorList"></Detecter>
- </div>
- <div class="cube">
- <Task :task-info="taskInfo" :task-result="taskResult" @GetScanClick="ClickGetScan"></Task>
- </div>
- </div>
- <div :class="[{'md':true},{'bigMd':!showLeft}]">
- <div class="cube">
- <signMap :sign-list="signList"></signMap>
- </div>
- <div class="cube">
- <WifiSign :wifi-rs="WifiRs"></WifiSign>
- </div>
- <div class="cube">
- <Scan :scan-rs="ScanRs"></Scan>
- </div>
- </div>
- <div class="rt">
- <div class="cube">
- <BigRader :total-rs="totalRs"></BigRader>
- </div>
- <transition name="el-zoom-in-center">
- <div class="cube">
- <HistoryRecord :history-rs="historyRs"></HistoryRecord>
- </div>
- </transition>
- <transition name="el-zoom-in-center">
- <div class="cube">
- <RunTimeRecord :runtime-rs="runtimeRs"></RunTimeRecord>
- </div>
- </transition>
- <transition name="el-zoom-in-center">
- <div class="cube">
- <DetctorRecord :detctor-rs="detctorRs"></DetctorRecord>
- </div>
- </transition>
- </div>
- <el-dialog title="扫描设备启动状态" :visible.sync="dialogScanVisible" width="30%">
- <el-table :data="scanGridData">
- <el-table-column property="Name" label="设备" align="center"></el-table-column>
- <el-table-column property="State" label="启动状态" align="center"></el-table-column>
- </el-table>
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialogScanVisible = false" size="small" type="primary">关闭</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import signMap from '@/components/signMap.vue'
- import Region from '@/components/Region.vue'
- import Detecter from '@/components/Detecter.vue'
- import Task from '@/components/Task.vue'
- import WifiSign from '@/components/WifiSign.vue'
- import Scan from '@/components/Scan.vue'
- import HistoryRecord from '@/components/HistoryRecord.vue'
- import EquipInfo from '@/components/EquipInfo.vue'
- import RunTimeRecord from '@/components/RunTimeRecord.vue'
- import DetctorRecord from '@/components/DetcotrRecord.vue'
- import BigRader from '@/components/BigRader.vue'
- import {
- getLoftInfo,
- RegionList,
- DetectorList,
- Region06G,
- WifiChannel,
- MonitorArea,
- NetDevMonitor,
- WirelessMonitor,
- DevList,
- WirelessStatus,
- ScanStrategyList,
- WirelessStart,
- } from '../api/getApiRes.js'
- import {mapGetters, mapActions, mapState} from "vuex";
- import Global from "../Global"
- let qs = require('qs');
- export default {
- data() {
- return {
- CurrentRegionId: 0,
- WifiRs: {},
- ScanRs: {},
- signList: {
- title:'',
- Rs:null
- },
- totalRs: [],
- equipRs: [],
- dialogScanVisible: false,
- regionList: [],
- scanGridData: [],
- detectorList: [],
- showLeft: true,
- regionId: '',
- selectName: '',
- historyRs: {
- Title: '区域无线设备列表',
- Url: 'signEquip',
- Rs: [],
- }, runtimeRs: {
- Title: '实时监控详情',
- Url: 'record',
- Rs: [],
- },
- detctorRs: {
- Title: '探测设备工作监控',
- Url: 'equip',
- Rs: [],
- },
- taskInfo: {},
- taskResult: {}
- }
- },
- mounted() {
- this.init();
- this.showLeft = parseInt(this.$store.state.status.count) % 2 == 0;
- // 定时刷新
- this.timer = setInterval(() => {
- this.timerInfo();
- }, 5000);
- },
- beforeDestroy() {
- clearInterval(this.timer);
- },
- computed: {
- ...mapGetters({
- 'getCount': 'status/getCount'
- })
- },
- watch: {
- '$route': function (val) {
- if (val.path == '/') {
- this.init()
- } else {
- clearInterval(this.timer);
- }
- },
- '$store.state.status.count': function (val) {
- this.showLeft = parseInt(val) % 2 == 0
- },
- },
- methods: {
- timerInfo() {
- this.getDetectorList(this.CurrentRegionId);
- this.getRegion06G(this.CurrentRegionId);
- this.getWifiChannel(this.CurrentRegionId);
- this.getMonitorArea(this.CurrentRegionId);
- this.getNetDevMonitor(this.CurrentRegionId);
- this.getWirelessMonitor(this.CurrentRegionId);
- this.getDevList(this.CurrentRegionId);
- this.getWirelessStatus(this.CurrentRegionId);
- this.getScanStrategyList(this.CurrentRegionId);
- },
- init() {
- this.getDate();
- },
- getDate() {
- let that = this;
- let param = {
- token: localStorage.token,
- };
- let postdata = qs.stringify(param);
- that.regionList = [];
- RegionList(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- that.regionList = json.Rs;
- // 默认加载第一个区域
- if (json.Rs) {
- this.CurrentRegionId = json.Rs[0].Id;
- this.signList.title = json.Rs[0].Name;
- this.getDetectorList(this.CurrentRegionId);
- this.getRegion06G(this.CurrentRegionId);
- this.getWifiChannel(this.CurrentRegionId);
- this.getMonitorArea(this.CurrentRegionId);
- this.getNetDevMonitor(this.CurrentRegionId);
- this.getWirelessMonitor(this.CurrentRegionId);
- this.getDevList(this.CurrentRegionId);
- this.getWirelessStatus(this.CurrentRegionId);
- this.getScanStrategyList(this.CurrentRegionId);
- }
- } else {
- that.$message.error(json.Memo);
- }
- })
- },
- getDetectorList(regionId) {
- let that = this;
- let param = {
- token: localStorage.token,
- regionId: regionId,
- };
- let postdata = qs.stringify(param);
- DetectorList(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- that.detectorList = json.Rs
- } else {
- that.detectorList = [];
- that.$message.error(json.Memo);
- }
- })
- },
- // Wifi柱状图信息传入探测器Id
- getWifiChannel(Id) {
- let that = this;
- let param = {
- token: localStorage.token,
- id: Id,
- };
- let postdata = qs.stringify(param);
- WifiChannel(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- that.WifiRs = json;
- } else {
- that.$message.error(json.Memo + ',错误代码:' + json.Code);
- }
- })
- },
- ClickGetInfo(Id, name) {
- this.selectName = name;
- this.signList.title = name;
- this.CurrentRegionId = Id;
- this.getDetectorList(Id);
- this.getRegion06G(Id);
- this.getWifiChannel(Id);
- this.getMonitorArea(Id);
- this.getNetDevMonitor(Id);
- this.getWirelessMonitor(Id);
- this.getDevList(Id);
- this.getWirelessStatus(Id);
- this.getScanStrategyList(Id);
- },
- ClickGetScan(Rs) {
- let that = this;
- Rs.regionId = that.CurrentRegionId;
- let params = Rs;
- WirelessStart(params).then(res => {
- let json = res;
- if (json.Code == 0) {
- that.showScanRresult(json.Rs)
- } else {
- that.$message.error(json.Memo);
- }
- })
- },
- showScanRresult(Rs) {
- let that = this;
- that.dialogScanVisible = true;
- that.scanGridData = Rs;
- },
- getRegion06G(id) {
- let that = this;
- let param = {
- token: localStorage.token,
- id: id,
- xCount: 200,
- };
- let postdata = qs.stringify(param);
- Region06G(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- this.ScanRs = json;
- } else {
- this.ScanRs = {};
- that.$message.error(json.Memo);
- }
- })
- },
- getMonitorArea(id) {
- let that = this;
- let param = {
- token: localStorage.token,
- id: id,
- };
- let postdata = qs.stringify(param);
- MonitorArea(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- if (!json.Rs.Data) {
- return false
- } else {
- that.signList.Rs = json.Rs;
- }
- } else {
- that.signList.Rs = {
- Data: []
- };
- that.$message.error(json.Memo);
- }
- })
- },
- getNetDevMonitor(id) {
- let that = this;
- let param = {
- token: localStorage.token,
- regionId: id,
- };
- let postdata = qs.stringify(param);
- NetDevMonitor(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- this.runtimeRs.Rs = json.Rs;
- } else {
- this.runtimeRs.Rs = [];
- that.$message.error(json.Memo);
- }
- })
- },
- getWirelessMonitor(id) {
- let that = this;
- let param = {
- token: localStorage.token,
- regionId: id,
- };
- let postdata = qs.stringify(param);
- WirelessMonitor(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- this.detctorRs.Rs = json.Rs;
- } else {
- this.detctorRs.Rs = [];
- that.$message.error(json.Memo);
- }
- })
- },
- getDevList(id) {
- let that = this;
- let param = {
- token: localStorage.token,
- regionId: id,
- limit: 6,
- };
- let postdata = qs.stringify(param);
- DevList(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- this.historyRs.Rs = json.Rs.List;
- this.totalRs = json.Rs;
- } else {
- this.historyRs.Rs = [];
- this.totalRs = [];
- that.$message.error(json.Memo);
- }
- })
- },
- getScanStrategyList(id) {
- let that = this;
- let param = {
- token: localStorage.token,
- regionId: id,
- limit: 6,
- };
- let postdata = qs.stringify(param);
- ScanStrategyList(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- this.taskInfo = json.Rs;
- } else {
- this.taskInfo = [];
- that.$message.error(json.Memo);
- }
- })
- },
- getWirelessStatus(id) {
- let that = this;
- let param = {
- token: localStorage.token,
- regionId: id,
- };
- let postdata = qs.stringify(param);
- WirelessStatus(postdata).then(res => {
- let json = res;
- if (json.Code == 0) {
- this.taskResult = json.Rs;
- } else {
- this.taskResult = {
- BeginAt: '',
- DataSize: '0',
- Duration: '',
- IsStop: false,
- };
- that.$message.error(json.Memo);
- }
- })
- }
- },
- components: {
- signMap,
- Region,
- Detecter,
- WifiSign,
- Scan,
- HistoryRecord,
- EquipInfo,
- RunTimeRecord,
- Task,
- BigRader,
- DetctorRecord,
- }
- }
- </script>
- <style scoped>
- @import "../assets/css/cube.css";
- @import "../assets/css/dialog.css";
- .mainContainer {
- width: 100%;
- overflow: hidden;
- display: block;
- margin: 0 auto;
- }
- .mainContainer .lt {
- width: 20%;
- float: left;
- border: 1px solid rgba(0, 147, 253, 0.24);
- overflow: hidden;
- padding-bottom: 10px;
- background: rgba(0, 130, 255, 0.05);
- margin-right: 10px;
- }
- .mainContainer .md {
- width: 52%;
- min-width: 660px;
- float: left;
- overflow: hidden;
- padding-bottom: 10px;
- margin-right: 10px;
- }
- .mainContainer .bigMd {
- width: 72.5%;
- }
- .bigMd /deep/ .histogram div {
- width: 100% !important;
- }
- .bigMd /deep/ .histogram canvas {
- width: 100% !important;
- }
- .bigMd /deep/ .ve-line div {
- width: 100% !important;
- }
- .bigMd /deep/ .ve-line canvas {
- width: 100% !important;
- }
- .mainContainer .md .cube {
- border: 1px solid rgba(0, 147, 253, 0.24);
- background: rgba(0, 130, 255, 0.05);
- margin-bottom: 5px;
- }
- .mainContainer .rt {
- width: 26.5%;
- float: right;
- }
- .rt .cube {
- border: 1px solid rgba(0, 147, 253, 0.24);
- background: rgba(0, 130, 255, 0.05);
- margin-bottom: 5px;
- }
- .sum-title {
- width: 150px;
- height: 36px;
- font-size: 16px;
- line-height: 36px;
- color: #6DC1FF;
- margin: 0 auto;
- text-align: center;
- background: url("../assets/img/main/tit.png") top center no-repeat;
- background-size: 100%;
- }
- .el-table {
- background-color: #061B44;
- color: #6DC1FF;
- }
- .el-table th, .el-table tr {
- background-color: #061B44;
- color: #6DC1FF;
- }
- /deep/ .el-table th, /deep/ .el-table tr {
- background-color: #061B44;
- color: #6DC1FF;
- }
- /deep/ .el-table td, /deep/ .el-table th.is-leaf {
- border-bottom: 1px solid #061B44;
- }
- /deep/ .el-table--border::after, /deep/ .el-table--group::after, /deep/ .el-table::before {
- background-color: #061B44;
- }
- /deep/ .el-dialog__title {
- color: #6DC1FF;
- }
- </style>
|