|
@@ -23,11 +23,11 @@
|
|
{{ item.description }}
|
|
{{ item.description }}
|
|
</template>
|
|
</template>
|
|
<div class="info" @click="handleInfo(item)" @click.right.prevent="handleView(item)">
|
|
<div class="info" @click="handleInfo(item)" @click.right.prevent="handleView(item)">
|
|
- <span :style="{'color':item.warnFirstColor}" v-if="(+item.result)<=item.warnFirst&&item.warnFirst!==null">{{ item.result + item.unit }}</span>
|
|
|
|
- <span :style="{'color':item.warnSecondColor}" v-else-if="item.warnFirst<(+item.result)&&(+item.result)<item.warnSecond">{{ item.result + item.unit }}</span>
|
|
|
|
- <span :style="{'color':item.warnThirdColor}" v-else-if="item.warnThird<(+item.result)&&(+item.result)<item.warnFour">{{ item.result + item.unit }}</span>
|
|
|
|
- <span :style="{'color':item.warnFourColor}" v-else-if="(+item.result)>=item.warnFour&&item.warnFirst!==null">{{ item.result + item.unit }}</span>
|
|
|
|
- <span v-else>{{ item.result + item.unit }}</span>
|
|
|
|
|
|
+ <span :style="{'color':item.warnFirstColor}" v-if="(+item.result)<=item.warnFirst&&item.warnFirst!==null">{{ item.result }}</span>
|
|
|
|
+ <span :style="{'color':item.warnSecondColor}" v-else-if="item.warnFirst<(+item.result)&&(+item.result)<item.warnSecond">{{ item.result }}</span>
|
|
|
|
+ <span :style="{'color':item.warnThirdColor}" v-else-if="item.warnThird<(+item.result)&&(+item.result)<item.warnFour">{{ item.result }}</span>
|
|
|
|
+ <span :style="{'color':item.warnFourColor}" v-else-if="(+item.result)>=item.warnFour&&item.warnFirst!==null">{{ item.result }}</span>
|
|
|
|
+ <span v-else>{{ item.result }}</span>
|
|
</div>
|
|
</div>
|
|
</a-tooltip>
|
|
</a-tooltip>
|
|
</VueDragResize>
|
|
</VueDragResize>
|
|
@@ -102,8 +102,9 @@
|
|
<script>
|
|
<script>
|
|
import VueDragResize from 'vue-drag-resize'
|
|
import VueDragResize from 'vue-drag-resize'
|
|
import { getSbPositionTree, fetchSbPosition, querySbPosition } from '@/api/sb/position'
|
|
import { getSbPositionTree, fetchSbPosition, querySbPosition } from '@/api/sb/position'
|
|
-import { queryRemoteOpc, updateRemoteOpc,
|
|
|
|
- fetchRemoteOpc
|
|
|
|
|
|
+import {
|
|
|
|
+ queryRemoteOpc, updateRemoteOpc,
|
|
|
|
+ fetchRemoteOpc, queryRemoteOpcFromRedis
|
|
} from '@/api/remote/opc'
|
|
} from '@/api/remote/opc'
|
|
import Detail from '@/views/remote/opc/modules/Detail.vue'
|
|
import Detail from '@/views/remote/opc/modules/Detail.vue'
|
|
import BaseChartInfo from './modules/BaseChartInfo.vue'
|
|
import BaseChartInfo from './modules/BaseChartInfo.vue'
|
|
@@ -186,13 +187,13 @@ export default {
|
|
},
|
|
},
|
|
getOpcInfo (positionId) {
|
|
getOpcInfo (positionId) {
|
|
this.positionId = positionId
|
|
this.positionId = positionId
|
|
- queryRemoteOpc({ line: this.positionId })
|
|
|
|
|
|
+ queryRemoteOpcFromRedis({ line: this.positionId })
|
|
.then((res) => {
|
|
.then((res) => {
|
|
this.dotList = res.data
|
|
this.dotList = res.data
|
|
this.dotList.forEach(item => {
|
|
this.dotList.forEach(item => {
|
|
item.isActive = false
|
|
item.isActive = false
|
|
if (item.result == null) {
|
|
if (item.result == null) {
|
|
- item.result = '-'
|
|
|
|
|
|
+ item.result = '无'
|
|
}
|
|
}
|
|
})
|
|
})
|
|
})
|
|
})
|
|
@@ -229,9 +230,9 @@ export default {
|
|
position: relative;
|
|
position: relative;
|
|
}
|
|
}
|
|
.info{
|
|
.info{
|
|
- font-size: 13px;
|
|
|
|
|
|
+ font-size: 14px;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
- color: rgba(127, 125, 119, 0.27);
|
|
|
|
|
|
+ color: black;
|
|
padding:0 2px;
|
|
padding:0 2px;
|
|
// transform: scale(0.5);
|
|
// transform: scale(0.5);
|
|
}
|
|
}
|