|
@@ -169,7 +169,7 @@
|
|
|
液压
|
|
|
</div>
|
|
|
<div
|
|
|
- class="title-item"
|
|
|
+ class="title-item part-right"
|
|
|
:class="{ active: current === 'jc' }"
|
|
|
@click="handleClick('jc')"
|
|
|
>
|
|
@@ -182,13 +182,13 @@
|
|
|
>
|
|
|
其他
|
|
|
</div> -->
|
|
|
- <div
|
|
|
+ <!-- <div
|
|
|
class="title-item part-right"
|
|
|
:class="{ active: current === 'zz' }"
|
|
|
@click="handleClick('zz')"
|
|
|
>
|
|
|
主轴
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
<div class="part-imgs" v-if="otherInfo?.model == 'XE100-2000'">
|
|
|
<img
|
|
@@ -246,6 +246,7 @@
|
|
|
<div
|
|
|
class="part-body"
|
|
|
style="max-height: 25vh"
|
|
|
+ v-if="partDInfos.length>0"
|
|
|
>
|
|
|
<div class="monitoring-item">
|
|
|
<div class="point point-left bottom"></div>
|
|
@@ -272,6 +273,7 @@
|
|
|
<div
|
|
|
class="part-body"
|
|
|
style="max-height: 25vh"
|
|
|
+ v-if="partAInfos.length>0"
|
|
|
>
|
|
|
<div class="monitoring-item">
|
|
|
<div class="point point-left bottom"></div>
|
|
@@ -311,14 +313,14 @@
|
|
|
<div class="point point-left bottom"></div>
|
|
|
<div class="point point-right bottom"></div>
|
|
|
<span style="font-size: 16px;position: relative;top: -5px;">故障分类</span>
|
|
|
- <div class="problemSeach">
|
|
|
+ <!-- <div class="problemSeach">
|
|
|
<el-input v-model="inputcv" clearable placeholder="请输入" />
|
|
|
<div class="seachBtn">
|
|
|
<el-icon :size="18" :color="color">
|
|
|
<Search />
|
|
|
</el-icon>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
<div class="problemMain">
|
|
|
<div class="problemWarn">
|
|
@@ -333,31 +335,31 @@
|
|
|
<img src="@/assets/imgs/danger.png" alt="">
|
|
|
</div>
|
|
|
<div class="warnComNum">
|
|
|
- <div class="numTop">42</div>
|
|
|
+ <div class="numTop">{{warnTypeData.total}}</div>
|
|
|
<div class="numBot">总故障</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="warnItems" v-for="(it, index) in 7" :key="index">
|
|
|
- <div class="warnItemLeft">20</div>
|
|
|
- <div class="warnItemRight">防雷保护类</div>
|
|
|
+ <div class="warnItems" v-for="(it, index) in warnTypeData.dataColumn1" :key="index" @click="getwarnTableData(it)">
|
|
|
+ <div class="warnItemLeft">{{it.count}}</div>
|
|
|
+ <div class="warnItemRight">{{it.name}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="warn" v-for="(it, index) in 2" :key="index">
|
|
|
- <div class="warnItems" v-for="(it, index) in 10" :key="index">
|
|
|
- <div class="warnItemLeft" :class="isRed(index)">20</div>
|
|
|
- <div class="warnItemRight" :class="isRed(index)">防雷保护类</div>
|
|
|
+ <div class="warn" v-for="(it, index) in warnTypeData.dataColumnOther" :key="index">
|
|
|
+ <div class="warnItems" v-for="(itv, index) in it" :key="index" @click="getwarnTableData(itv)">
|
|
|
+ <div class="warnItemLeft" :class="isRed(index)">{{itv.count}}</div>
|
|
|
+ <div class="warnItemRight" :class="isRed(index)">{{itv.name}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="warnTable">
|
|
|
<el-table
|
|
|
size="mini"
|
|
|
- :data="tableData"
|
|
|
+ :data="warnTypeData.tableData"
|
|
|
style="width: 100%; height: calc(100% - 310px)"
|
|
|
- max-height="520px"
|
|
|
+ max-height="580px"
|
|
|
stripe>
|
|
|
<el-table-column
|
|
|
- v-for="item in tableHeader"
|
|
|
+ v-for="item in warnTypeData.tableHeader"
|
|
|
:label="item.name"
|
|
|
:prop="item.code"
|
|
|
:key="item.code"
|
|
@@ -367,8 +369,8 @@
|
|
|
align="center"
|
|
|
>
|
|
|
<template #default="scope">
|
|
|
- <span v-if="item.code == 'status'">
|
|
|
- <span :style="scope.row.status === 0 ? 'color: red' : ''">{{scope.row.status === 0 ? "异常" : "正常"}}</span>
|
|
|
+ <span v-if="item.code == 'isClose'">
|
|
|
+ <span :style="scope.row.isClose ? 'color: red' : 'color: green'">{{scope.row.isClose ? "未解除" : "已解除"}}</span>
|
|
|
</span>
|
|
|
<span v-else>
|
|
|
{{
|
|
@@ -587,28 +589,34 @@ export default {
|
|
|
},
|
|
|
|
|
|
],
|
|
|
- tableHeader: [
|
|
|
+
|
|
|
+ warnTypeData: {
|
|
|
+ total: "",
|
|
|
+ typeData: [],
|
|
|
+ tableData: [],
|
|
|
+ dataColumn1: [],
|
|
|
+ dataColumnOther: [],
|
|
|
+ tableHeader: [
|
|
|
{
|
|
|
- code: "code",
|
|
|
+ code: "alarmId",
|
|
|
name: "报警编号"
|
|
|
},
|
|
|
{
|
|
|
- code: "name",
|
|
|
+ code: "id",
|
|
|
name: "PCL变量名"
|
|
|
},
|
|
|
{
|
|
|
- code: "message",
|
|
|
+ code: "tagid",
|
|
|
name: "报警文字信息"
|
|
|
},
|
|
|
{
|
|
|
- code: "status",
|
|
|
+ code: "isClose",
|
|
|
name: "报警状态"
|
|
|
},
|
|
|
],
|
|
|
- warnTypeData: {
|
|
|
- typeData: [],
|
|
|
- tableData: []
|
|
|
- }
|
|
|
+ },
|
|
|
+ windObj: {}
|
|
|
+
|
|
|
};
|
|
|
},
|
|
|
components: { svgIcon, alarmDialog, powerAndSpeed, },
|
|
@@ -659,6 +667,7 @@ export default {
|
|
|
oIframe.style.width = deviceWidth + "px";
|
|
|
oIframe.style.height = deviceHeight + "px";
|
|
|
}
|
|
|
+
|
|
|
},
|
|
|
|
|
|
unmounted() {
|
|
@@ -671,7 +680,8 @@ export default {
|
|
|
wind: {
|
|
|
handler() {
|
|
|
if (Object.keys(this.wind).length) {
|
|
|
- this.start(this.wind);
|
|
|
+ this.start(this.wind);
|
|
|
+ this.getwarnTypeData(this.wind.wtid)
|
|
|
}
|
|
|
},
|
|
|
},
|
|
@@ -689,30 +699,46 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
- getwarnTypeData() {
|
|
|
+ getwarnTypeData(id) {
|
|
|
let that = this
|
|
|
let params = {
|
|
|
- wtid: "NX_FGS_HA_F_WT_0039_EQ"
|
|
|
- // wtid: that.wind.wtid
|
|
|
+ // wtid: "NX_FGS_HA_F_WT_0039_EQ"
|
|
|
+ wtid: id
|
|
|
}
|
|
|
GetMatrixalarmtype(params).then(res =>{
|
|
|
- if (res && res.data) {
|
|
|
- that.warnTypeData.typeData = res.data
|
|
|
- that.getwarnTableData(res.data[0])
|
|
|
+ if (res && res.data && res.data.data.data.length>0) {
|
|
|
+ for(let i =0; i<res.data.data.data.length; i++) {
|
|
|
+ let item = res.data.data.data[i]
|
|
|
+ for(let k in res.data.data.count) {
|
|
|
+ if (item.nemCode === k) {
|
|
|
+ item.count = res.data.data.count[k]
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ that.warnTypeData.total = res.data.data.count.zs
|
|
|
+ that.warnTypeData.typeData = res.data.data.data
|
|
|
+ that.warnTypeData.dataColumn1 = that.warnTypeData.typeData.slice(0, 5)
|
|
|
+ that.warnTypeData.dataColumnOther[0] = that.warnTypeData.typeData.slice(5, 13)
|
|
|
+ that.warnTypeData.dataColumnOther[1] = that.warnTypeData.typeData.slice(13, 21)
|
|
|
+ console.log("typeData===>>>", that.warnTypeData.typeData)
|
|
|
+ that.getwarnTableData(that.warnTypeData.typeData[0], id)
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- getwarnTableData(data) {
|
|
|
+ getwarnTableData(data, id) {
|
|
|
let that = this
|
|
|
let params = {
|
|
|
- type: "BJXT",
|
|
|
- wtid: "NX_FGS_HA_F_WT_0039_EQ"
|
|
|
- // type: data.nemCode,
|
|
|
- // wtid: that.wind.wtid
|
|
|
+ // type: "BJXT",
|
|
|
+ // wtid: "NX_FGS_HA_F_WT_0039_EQ",
|
|
|
+ type: data.nemCode,
|
|
|
+ wtid: id
|
|
|
}
|
|
|
GetMatrixalarmtypeTable(params).then(res =>{
|
|
|
if (res && res.data) {
|
|
|
- that.warnTypeData.tableData = res.data
|
|
|
+ res.data.data.forEach(it =>{
|
|
|
+ it.isClose = it.closeTime ? true : it.endts ? true : false
|
|
|
+ })
|
|
|
+ that.warnTypeData.tableData = res.data.data
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -781,6 +807,8 @@ export default {
|
|
|
// 查看各部位编码
|
|
|
handleClick(val) {
|
|
|
this.current = val;
|
|
|
+ this.partAInfos = [];
|
|
|
+ this.partDInfos = [];
|
|
|
if (this.wtid) {
|
|
|
this.getPartInfo();
|
|
|
}
|
|
@@ -804,11 +832,21 @@ export default {
|
|
|
? this.partAInfo.map((item) => item.uniformCode)
|
|
|
: [];
|
|
|
// 获取测点数据
|
|
|
- this.getPointsIds();
|
|
|
+ // if (this.uniformcodesA.length>0 && this.uniformcodesD.length>0) {
|
|
|
+ // this.getPointsIds();
|
|
|
+ // } else {
|
|
|
+ if (this.uniformcodesA.length>0) {
|
|
|
+ this.getPointsIdOne('AI', this.uniformcodesA);
|
|
|
+ }
|
|
|
+ if(this.uniformcodesD.length>0) {
|
|
|
+ this.getPointsIdOne('DI', this.uniformcodesD);
|
|
|
+ }
|
|
|
+ // }
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ //查询数据AI和DI同时存在
|
|
|
getPointsIds() {
|
|
|
let pointsIdsA = new Promise((resolve, reject) => {
|
|
|
GetWtPoints({
|
|
@@ -851,28 +889,32 @@ export default {
|
|
|
},
|
|
|
getPointsData(pointsA, pointsD) {
|
|
|
let pointsDataA = new Promise((resolve, reject) => {
|
|
|
- GetPointsData({
|
|
|
- pointIds: pointsA,
|
|
|
- })
|
|
|
- .then(({ data }) => {
|
|
|
- resolve(data);
|
|
|
- })
|
|
|
- .catch((e) => {
|
|
|
- // 标记失败后给定某个数据
|
|
|
- reject("发生错误");
|
|
|
- });
|
|
|
+ if (pointsA.length>0) {
|
|
|
+ GetPointsData({
|
|
|
+ pointIds: pointsA,
|
|
|
+ })
|
|
|
+ .then(({ data }) => {
|
|
|
+ resolve(data);
|
|
|
+ })
|
|
|
+ .catch((e) => {
|
|
|
+ // 标记失败后给定某个数据
|
|
|
+ reject("发生错误");
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
let pointsDataD = new Promise((resolve, reject) => {
|
|
|
- GetPointsData({
|
|
|
- pointIds: pointsD,
|
|
|
- })
|
|
|
- .then(({ data }) => {
|
|
|
- resolve(data);
|
|
|
- })
|
|
|
- .catch((e) => {
|
|
|
- // 标记失败后给定某个数据
|
|
|
- reject("发生错误");
|
|
|
- });
|
|
|
+ if (pointsD.length>0) {
|
|
|
+ GetPointsData({
|
|
|
+ pointIds: pointsD,
|
|
|
+ })
|
|
|
+ .then(({ data }) => {
|
|
|
+ resolve(data);
|
|
|
+ })
|
|
|
+ .catch((e) => {
|
|
|
+ // 标记失败后给定某个数据
|
|
|
+ reject("发生错误");
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
Promise.all([pointsDataA, pointsDataD])
|
|
|
.then((results) => {
|
|
@@ -909,6 +951,72 @@ export default {
|
|
|
console.log("error", e);
|
|
|
});
|
|
|
},
|
|
|
+ //查询数据只有AI点或者只有DI点
|
|
|
+ getPointsIdOne(type, uniformcodesXo) {
|
|
|
+ GetWtPoints({
|
|
|
+ wtid: this.wtid,
|
|
|
+ uniformcodes: uniformcodesXo,
|
|
|
+ }).then(({ data }) => {
|
|
|
+ if (type === "AI") {
|
|
|
+ this.resA = data.data.length
|
|
|
+ ? data.data.map((item) => (item != null ? item.nemCode : ""))
|
|
|
+ : [];
|
|
|
+
|
|
|
+ if (this.resA.length>0) {
|
|
|
+ this.getPointsDataOne(type, this.resA);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.resD = data.data.length
|
|
|
+ ? data.data.map((item) => (item != null ? item.nemCode : ""))
|
|
|
+ : [];
|
|
|
+ if (this.resD.length>0) {
|
|
|
+ this.getPointsDataOne(type, this.resD);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }).catch((e) => {
|
|
|
+ console.log("发生错误");
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getPointsDataOne(type, pointsData) {
|
|
|
+ GetPointsData({
|
|
|
+ pointIds: pointsData,
|
|
|
+ }).then(({ data }) => {
|
|
|
+ let pointsInfo = data.data.length ? data.data : [];
|
|
|
+ let partAInfo = [];
|
|
|
+ let partDInfo = [];
|
|
|
+ let chunk = 4;
|
|
|
+ if (type === "AI") {
|
|
|
+ this.partAInfo.forEach((item, index) => {
|
|
|
+ pointsInfo.forEach((i, ind) => {
|
|
|
+ if (index == ind) {
|
|
|
+ item.value = i.pointValueInDouble;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ for (let i = 0, j = this.partAInfo.length; i < j; i += chunk) {
|
|
|
+ partAInfo.push(this.partAInfo.slice(i, i + chunk));
|
|
|
+ }
|
|
|
+ this.partAInfos = partAInfo;
|
|
|
+ } else {
|
|
|
+ this.partDInfo.forEach((item, index) => {
|
|
|
+ pointsInfo.forEach((i, ind) => {
|
|
|
+ if (index == ind) {
|
|
|
+ item.value = i.pointValueInDouble;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ for (let m = 0, n = this.partDInfo.length; m < n; m += chunk) {
|
|
|
+ partDInfo.push(this.partDInfo.slice(m, m + chunk));
|
|
|
+ }
|
|
|
+ this.partDInfos = partDInfo;
|
|
|
+ }
|
|
|
+ console.log("partAInfos===>>>", this.partAInfos)
|
|
|
+ console.log("partDInfos===>>>", this.partDInfos)
|
|
|
+ }).catch((e) => {
|
|
|
+ // 标记失败后给定某个数据
|
|
|
+ console.log("发生错误");
|
|
|
+ });
|
|
|
+ },
|
|
|
//打开报警页面
|
|
|
handleAlarm(id) {
|
|
|
this.$refs.alarmDialog &&
|
|
@@ -1462,6 +1570,7 @@ export default {
|
|
|
display: flex;
|
|
|
color: #817c7c;
|
|
|
margin-bottom: 3px;
|
|
|
+ cursor: pointer;
|
|
|
.warnItemLeft{
|
|
|
height: 32px;
|
|
|
width: 20%;
|