提交代码
parent
8c25c8d18a
commit
723d9307ff
|
@ -191,9 +191,9 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="afoot-content">
|
<div class="afoot-content">
|
||||||
<div class="afoot-overflow process-afoot-overflow" style="height: 530px" id="afootOverflow" @mouseout="listMinMouseout" @mouseover="listMinMouseover">
|
<div class="afoot-overflow process-afoot-overflow" style="height: 530px" id="afootOverflow" @mouseout="listMinMouseout" @mouseover="listMinMouseover">
|
||||||
<div v-if="warningData.length == 0" class="not-data">暂无预警数据</div>
|
<div v-if="warningDataList.length == 0" class="not-data">暂无预警数据</div>
|
||||||
<template v-if="warningData.length > 0">
|
<template v-if="warningDataList.length > 0">
|
||||||
<div :key="i" :class="forIndex == i ? 'afoot-con-for active' : 'afoot-con-for '" v-for="(item, i) in warningData">
|
<div :key="i" :class="forIndex == i ? 'afoot-con-for active' : 'afoot-con-for '" v-for="(item, i) in warningDataList">
|
||||||
<div class="afoot-machinery-nam" v-cloak>{{ item.warningType }}</div>
|
<div class="afoot-machinery-nam" v-cloak>{{ item.warningType }}</div>
|
||||||
<div class="afoot-machinery-info">
|
<div class="afoot-machinery-info">
|
||||||
<div class="afoot-machinery-data">
|
<div class="afoot-machinery-data">
|
||||||
|
@ -258,7 +258,7 @@ export default {
|
||||||
},
|
},
|
||||||
init() {
|
init() {
|
||||||
if (!this.selProject) {
|
if (!this.selProject) {
|
||||||
return
|
return false;
|
||||||
}
|
}
|
||||||
this.$api.powerIot.findProAllConfigPoint(this.selProject.id).then((res) => {
|
this.$api.powerIot.findProAllConfigPoint(this.selProject.id).then((res) => {
|
||||||
if (res.data.length > 0) {
|
if (res.data.length > 0) {
|
||||||
|
|
|
@ -3,11 +3,9 @@
|
||||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.yanzhu.flowable.mapper.FlowDeployMapper">
|
<mapper namespace="com.yanzhu.flowable.mapper.FlowDeployMapper">
|
||||||
|
|
||||||
|
|
||||||
<select id="selectDeployList" resultType="FlowProcDefDto">
|
<select id="selectDeployList" resultType="FlowProcDefDto">
|
||||||
|
select
|
||||||
SELECT
|
|
||||||
rp.id_ as id,
|
rp.id_ as id,
|
||||||
rp.deployment_id_ as deploymentId,
|
rp.deployment_id_ as deploymentId,
|
||||||
rd.name_ as name,
|
rd.name_ as name,
|
||||||
|
@ -20,7 +18,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
sd.dept_name as deptName,
|
sd.dept_name as deptName,
|
||||||
pi.id as projectId,
|
pi.id as projectId,
|
||||||
pi.project_name as projectName
|
pi.project_name as projectName
|
||||||
FROM
|
from
|
||||||
act_re_procdef rp
|
act_re_procdef rp
|
||||||
LEFT JOIN act_re_deployment rd ON rp.deployment_id_ = rd.id_
|
LEFT JOIN act_re_deployment rd ON rp.deployment_id_ = rd.id_
|
||||||
LEFT JOIN act_re_procdef_dept rpd ON rpd.PROCDEF_ID_ = rp.ID_
|
LEFT JOIN act_re_procdef_dept rpd ON rpd.PROCDEF_ID_ = rp.ID_
|
||||||
|
|
Loading…
Reference in New Issue