|
@@ -1,16 +1,16 @@
|
|
|
<template>
|
|
|
<div class="persagyTopu">
|
|
|
- <baseTopu @onMousedown="onMousedown" @postDeviceIds="postDeviceIds" ref="topuEl"></baseTopu>
|
|
|
+ <baseTopu @onMousedown="onMousedown" ref="topuEl"></baseTopu>
|
|
|
<tooltip ref="tooltip_map" v-show="showtip" class="toolTip">
|
|
|
<div class="title">
|
|
|
{{ this.tooltipName }}
|
|
|
</div>
|
|
|
<div class="tip-body">
|
|
|
<div class="info">
|
|
|
- <p v-for="(item,index) in device_params" :key="index">
|
|
|
- <span class="label">{{item.infoName}}:</span>
|
|
|
- <span class="value">{{showData(item)}}</span>
|
|
|
- <span class="unit">{{item.unit}}</span>
|
|
|
+ <p v-for="(item, index) in device_params" :key="index">
|
|
|
+ <span class="label">{{ item.infoName }}:</span>
|
|
|
+ <span class="value">{{ showData(item) }}</span>
|
|
|
+ <span class="unit">{{ item.unit }}</span>
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -19,226 +19,128 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { readPubGroup, readDeviceParams, readDeviceStatus } from "@/api/tuopu"; // 引入获取底图得接口
|
|
|
+import { readPubGroup, readDeviceParams } from "@/api/tuopu"; // 引入获取底图得接口
|
|
|
import baseTopu from "@/components/baseTopu.vue";
|
|
|
-import tooltip from "@/components/tooltip.vue"
|
|
|
+import tooltip from "@/components/tooltip.vue";
|
|
|
export default {
|
|
|
- components: { baseTopu,tooltip },
|
|
|
+ components: { baseTopu, tooltip },
|
|
|
data() {
|
|
|
return {
|
|
|
- showtip:false,
|
|
|
- tooltipName:'',
|
|
|
+ showtip: false,
|
|
|
+ tooltipName: "",
|
|
|
device_params: [],
|
|
|
deviceIds: [],
|
|
|
graphId: "e4c6b131ced74032b02b5721cb496b77",
|
|
|
- id:"ad1195f2492f41e3a06f792d6701365c"
|
|
|
+ id: "ad1195f2492f41e3a06f792d6701365c",
|
|
|
};
|
|
|
},
|
|
|
- mounted(){
|
|
|
- let _this = this
|
|
|
- let canvasEl = document.getElementsByTagName('canvas')[0]
|
|
|
- window._resizeTimer = null
|
|
|
- window.addEventListener('resize', ()=>{
|
|
|
- clearTimeout(window._resizeTimer)
|
|
|
+ mounted() {
|
|
|
+ let _this = this;
|
|
|
+ let canvasEl = document.getElementsByTagName("canvas")[0];
|
|
|
+ window._resizeTimer = null;
|
|
|
+ window.addEventListener("resize", () => {
|
|
|
+ clearTimeout(window._resizeTimer);
|
|
|
window._resizeTimer = setTimeout(() => {
|
|
|
- canvasEl.height = document.body.clientHeight
|
|
|
- canvasEl.width = document.body.clientWidth
|
|
|
- _this.$refs.topuEl.fixWindow()
|
|
|
+ canvasEl.height = document.body.clientHeight;
|
|
|
+ canvasEl.width = document.body.clientWidth;
|
|
|
+ _this.$refs.topuEl.fixWindow();
|
|
|
}, 50);
|
|
|
- })
|
|
|
+ });
|
|
|
},
|
|
|
- beforeMount(){
|
|
|
- let searchStr = window.location.search.substr(1)
|
|
|
- let temp = searchStr.split('&')
|
|
|
- temp.forEach(item => {
|
|
|
- if(item.length != 0){
|
|
|
- let key = item.split('=')[0]
|
|
|
- if(key == 'id'){
|
|
|
- this.id = item.split('=')[1]
|
|
|
- window._id = this.id
|
|
|
+ beforeMount() {
|
|
|
+ let searchStr = window.location.search.substr(1);
|
|
|
+ let temp = searchStr.split("&");
|
|
|
+ temp.forEach((item) => {
|
|
|
+ if (item.length != 0) {
|
|
|
+ let key = item.split("=")[0];
|
|
|
+ if (key == "id") {
|
|
|
+ this.id = item.split("=")[1];
|
|
|
+ window._id = this.id;
|
|
|
}
|
|
|
- if(key == 'graphId'){
|
|
|
- this.graphId = item.split('=')[1]
|
|
|
- window._graphId = this.graphId
|
|
|
+ if (key == "graphId") {
|
|
|
+ this.graphId = item.split("=")[1];
|
|
|
+ window._graphId = this.graphId;
|
|
|
}
|
|
|
- if(key == 'projectId'){
|
|
|
- this.projectId = item.split('=')[1]
|
|
|
- window._projectId = this.projectId
|
|
|
+ if (key == "projectId") {
|
|
|
+ this.projectId = item.split("=")[1];
|
|
|
+ window._projectId = this.projectId;
|
|
|
}
|
|
|
- if(key == 'url'){
|
|
|
- this.url = item.split('=')[1]
|
|
|
- window._url = this.url
|
|
|
+ if (key == "url") {
|
|
|
+ this.url = item.split("=")[1];
|
|
|
+ window._url = this.url;
|
|
|
}
|
|
|
}
|
|
|
- })
|
|
|
- console.log('here')
|
|
|
- console.log('id:',this.id)
|
|
|
- console.log('graphId:',this.graphId)
|
|
|
- console.log('url:',this.url)
|
|
|
- console.log('projectId:',this.projectId)
|
|
|
+ });
|
|
|
+ console.log("here");
|
|
|
+ console.log("id:", this.id);
|
|
|
+ console.log("graphId:", this.graphId);
|
|
|
+ console.log("url:", this.url);
|
|
|
+ console.log("projectId:", this.projectId);
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
- postDeviceIds(ids){
|
|
|
- this.deviceIds = ids
|
|
|
- if(ids.length > 0){
|
|
|
- readDeviceStatus({objectIds: ids}).then(res=>{
|
|
|
- // console.log('res')
|
|
|
- // console.log(res)
|
|
|
- window.parse.nodes.forEach(nodeItem => {
|
|
|
- let sItem = res.content.find(_item => {
|
|
|
- return _item.objectId == nodeItem._data.attachObjectIds[0]
|
|
|
- })
|
|
|
-
|
|
|
- // if(sItem == null){
|
|
|
- // sItem = res.content[0]
|
|
|
- // }
|
|
|
- let key = null
|
|
|
- /**
|
|
|
- * 0: 灰
|
|
|
- 1:蓝
|
|
|
- 2:红
|
|
|
- 3:黄
|
|
|
- 4:绿
|
|
|
- 5:棕
|
|
|
- *
|
|
|
- */
|
|
|
- if(sItem){
|
|
|
- switch (sItem.status) {
|
|
|
- case 0:
|
|
|
- // 空
|
|
|
- key = 0
|
|
|
- break;
|
|
|
- case 1:
|
|
|
- // 运行
|
|
|
- key = 1;
|
|
|
- break;
|
|
|
- case 2:
|
|
|
- // 关闭
|
|
|
- key = 0;
|
|
|
- break;
|
|
|
- default:
|
|
|
- break;
|
|
|
- }
|
|
|
- let picUrl = nodeItem._data.properties.state.find(item=>{return item.state == key}).pic
|
|
|
- if(nodeItem.__picUrl && nodeItem.__picUrl == picUrl){
|
|
|
-
|
|
|
- }else{
|
|
|
- nodeItem.__picUrl = picUrl
|
|
|
- nodeItem.url =window.img_baseurl+'/image-service/common/image_get?systemId=dataPlatform&key='+picUrl
|
|
|
- // nodeItem.url ='/dp-auxiliary/image-service/common/image_get?systemId=dataPlatform&key='+picUrl
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- }
|
|
|
- })
|
|
|
- })
|
|
|
+ showData(item) {
|
|
|
+ if (item.dataSource) {
|
|
|
+ return item.dataSource.find((item) => {
|
|
|
+ return item.code == "0";
|
|
|
+ }).name;
|
|
|
+ } else {
|
|
|
+ return item.data;
|
|
|
}
|
|
|
},
|
|
|
- showData(item){
|
|
|
- if(item.dataSource){
|
|
|
- return item.dataSource.find(item=>{return item.code =='0'}).name
|
|
|
+ onMousedown(item, e) {
|
|
|
+ if (item) {
|
|
|
+ this.showtip = !this.showtip;
|
|
|
+ if (!e[0].offsetX) return;
|
|
|
+ this.$refs.tooltip_map.$el.style.left = e[0].offsetX + "px";
|
|
|
+ this.$refs.tooltip_map.$el.style.top = e[0].offsetY + "px";
|
|
|
}else{
|
|
|
- return item.data
|
|
|
+ this.showtip = false
|
|
|
}
|
|
|
},
|
|
|
- onMousedown(item, e) {
|
|
|
- let time = (new Date()).getTime()
|
|
|
- window._now =
|
|
|
- console.log('item:', item)
|
|
|
- setTimeout(() => {
|
|
|
- if (item) {
|
|
|
- clearTimeout(window._caller)
|
|
|
- let operationType = 'click'
|
|
|
- let deviceId = item.data.attachObjectIds[0]
|
|
|
- if(window._now){
|
|
|
- let diff = (time - window._now)
|
|
|
- console.log('diff:', diff)
|
|
|
- if(diff < 400){
|
|
|
- operationType = 'dbclick'
|
|
|
- // 双击
|
|
|
- }else{
|
|
|
- // 单击
|
|
|
- }
|
|
|
- }
|
|
|
- window._now = time
|
|
|
- if(operationType == 'click'){
|
|
|
- // 单击
|
|
|
- window._caller = setTimeout(() => {
|
|
|
- readDeviceParams({"objectId":deviceId}).then(res=>{
|
|
|
- this.tooltipName = item.data.name;
|
|
|
- this.device_params = res.content
|
|
|
- this.$refs.tooltip_map.$el.style.left = e[0].offsetX + "px";
|
|
|
- this.$refs.tooltip_map.$el.style.top = e[0].offsetY + "px";
|
|
|
- this.showtip = true;
|
|
|
- })
|
|
|
- }, 300);
|
|
|
- }else{
|
|
|
- // 双击
|
|
|
- try {
|
|
|
- window.postMsgToU3d(JSON.stringify({time: new Date(), data:{deviceId: deviceId}}))
|
|
|
- } catch (error) {
|
|
|
- console.error('to u3d error', error)
|
|
|
- }
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.showtip = false;
|
|
|
- }
|
|
|
- },200);
|
|
|
- },
|
|
|
|
|
|
// 移入
|
|
|
onMousedownx(item, e) {
|
|
|
- return false
|
|
|
-
|
|
|
- let deviceId = item.data.attachObjectIds[0]
|
|
|
- let res = readDeviceParams(deviceId)
|
|
|
- this.tooltipName = item.data.name;
|
|
|
- this.device_params = res.content
|
|
|
- this.showtip = true;
|
|
|
- console.log(e[0].offsetX + "px")
|
|
|
- this.$refs.tooltip_map.$el.style.left = e[0].offsetX + "px";
|
|
|
- this.$refs.tooltip_map.$el.style.top = e[0].offsetY + "px";
|
|
|
-
|
|
|
+ return false;
|
|
|
},
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less">
|
|
|
.persagyTopu {
|
|
|
- padding: 6
|
|
|
- px 10px 6px 10px;
|
|
|
+ padding: 6 px 10px 6px 10px;
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
.title {
|
|
|
padding: 10px 16px;
|
|
|
- line-height: 22px;;
|
|
|
- color: #EBEEF5;
|
|
|
+ line-height: 22px;
|
|
|
+ color: #ebeef5;
|
|
|
font-size: 16px;
|
|
|
font-weight: 600;
|
|
|
}
|
|
|
.toolTip {
|
|
|
min-width: 40px;
|
|
|
box-shadow: 0px 2px 4px 0px rgba(31, 36, 41, 0.1);
|
|
|
- border: 1px solid #5D6177;
|
|
|
+ border: 1px solid #5d6177;
|
|
|
// padding: 6px 10px 6px 10px;
|
|
|
position: absolute;
|
|
|
border-radius: 8px;
|
|
|
- box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.189549), 0px 1px 11px rgba(0, 0, 0, 0.5);
|
|
|
+ box-shadow: 0px 1px 13px rgba(0, 0, 0, 0.189549),
|
|
|
+ 0px 1px 11px rgba(0, 0, 0, 0.5);
|
|
|
}
|
|
|
.tip-body {
|
|
|
- border-top: 1px solid #5D6177;
|
|
|
- border-bottom: 1px solid #5D6177;
|
|
|
+ border-top: 1px solid #5d6177;
|
|
|
+ border-bottom: 1px solid #5d6177;
|
|
|
}
|
|
|
.info {
|
|
|
padding: 16px;
|
|
|
max-height: 280px;
|
|
|
overflow: auto;
|
|
|
line-height: 29px;
|
|
|
- span{
|
|
|
- color: #A7ABC0;
|
|
|
+ span {
|
|
|
+ color: #a7abc0;
|
|
|
}
|
|
|
.value {
|
|
|
color: #fff;
|
|
@@ -254,8 +156,8 @@ export default {
|
|
|
line-height: 50px;
|
|
|
font-size: 16px;
|
|
|
text-align: center;
|
|
|
- color: #A7ABC0;
|
|
|
- transition: background-color .3s;
|
|
|
+ color: #a7abc0;
|
|
|
+ transition: background-color 0.3s;
|
|
|
cursor: pointer;
|
|
|
&:hover {
|
|
|
color: #fff;
|
|
@@ -264,20 +166,20 @@ export default {
|
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
- width: 6px;
|
|
|
+ width: 6px;
|
|
|
height: 6px;
|
|
|
}
|
|
|
|
|
|
-::-webkit-scrollbar-track{
|
|
|
+::-webkit-scrollbar-track {
|
|
|
border-radius: 0;
|
|
|
}
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
- background-color: #21262F;
|
|
|
+ background-color: #21262f;
|
|
|
border-radius: 3px;
|
|
|
|
|
|
- &:hover{
|
|
|
- background-color: #21262F;
|
|
|
+ &:hover {
|
|
|
+ background-color: #21262f;
|
|
|
}
|
|
|
}
|
|
|
</style>
|