openatc-components 0.0.20 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/index.js +1 -1
- package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +3 -3
- package/package/kisscomps/components/OverLap/OverLap.vue +1 -1
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +3 -3
- package/src/kisscomps/components/OverLap/OverLap.vue +1 -1
- package/src/views/intersection.vue +4 -4
package/config/index.js
CHANGED
|
@@ -15,7 +15,7 @@ module.exports = {
|
|
|
15
15
|
// target: 'http://192.168.13.103:8012/openatc',//'http://172.16.239.139:8080/',//设置你调用的接口域名和端口号
|
|
16
16
|
// target: 'http://192.168.14.2:8012/openatc',//'http://172.16.239.139:8080/',//设置你调用的接口域名和端口号
|
|
17
17
|
// target: 'https://dolphin-test.kedacom.com/openatc',
|
|
18
|
-
target: 'http://192.168.13.105:11003
|
|
18
|
+
target: 'http://192.168.13.105:11003',
|
|
19
19
|
// target: 'http://192.168.13.103:10003/openatc',
|
|
20
20
|
// target: 'http://192.168.13.103:9999',//'http://172.16.239.139:8080/',//设置你调用的接口域名和端口号
|
|
21
21
|
// target: 'http://192.168.13.103:9999/kissapi',//'http://172.16.239.139:8080/',//设置你调用的接口域名和端口号
|
package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue
CHANGED
|
@@ -95,7 +95,7 @@ export default {
|
|
|
95
95
|
this.initData()
|
|
96
96
|
},
|
|
97
97
|
registerMessage () {
|
|
98
|
-
registerMessage(this.
|
|
98
|
+
registerMessage(this.AgentId).then(data => {
|
|
99
99
|
if (!data.data.success) {
|
|
100
100
|
this.devStatus = 2
|
|
101
101
|
let parrenterror = getMessageByCode(data.data.code, this.$i18n.locale)
|
|
@@ -147,7 +147,7 @@ export default {
|
|
|
147
147
|
let iframdevid = getIframdevid()
|
|
148
148
|
console.log(iframdevid)
|
|
149
149
|
let startTime = new Date().getTime()
|
|
150
|
-
getTscControl(this.
|
|
150
|
+
getTscControl(this.AgentId).then((data) => {
|
|
151
151
|
let endTime = new Date().getTime()
|
|
152
152
|
let diffTime = endTime - startTime
|
|
153
153
|
this.responseTime = diffTime
|
|
@@ -190,7 +190,7 @@ export default {
|
|
|
190
190
|
},
|
|
191
191
|
queryDevParams () {
|
|
192
192
|
let _this = this
|
|
193
|
-
queryDevice(this.
|
|
193
|
+
queryDevice(this.AgentId).then(res => {
|
|
194
194
|
if (!res.data.success) {
|
|
195
195
|
_this.$message.error(getMessageByCode(res.data.code, _this.$i18n.locale))
|
|
196
196
|
return
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="overLap" v-if="checked" style="margin
|
|
2
|
+
<div class="overLap" v-if="checked" :style="{'width':'852px','margin':this.controlData ? '20px 0 0 0' : '0 0 0 377px'}">
|
|
3
3
|
<div class="ring-first" v-for="(list, index1) in this.overlapDatas" :key="index1">
|
|
4
4
|
<div v-for="(item,index2) in list.stageLists" :key="index2" >
|
|
5
5
|
<div class="first-2">
|