|
@@ -131,7 +131,7 @@
|
|
|
</div>
|
|
|
<div class="parts">
|
|
|
<div class="part-top">
|
|
|
- <div class="part-title">
|
|
|
+ <div class="part-title" :data-type="$store.state.moreSty">
|
|
|
<div
|
|
|
class="title-item part-left"
|
|
|
:class="{ active: current === 'fdj' }"
|
|
@@ -263,6 +263,7 @@
|
|
|
<div>{{ item.name }}</div>
|
|
|
<div
|
|
|
class="table-value"
|
|
|
+ :data-type="$store.state.moreSty"
|
|
|
:class="item.value == 1 ? 'round-red' : 'round'"
|
|
|
></div>
|
|
|
</div>
|
|
@@ -287,7 +288,7 @@
|
|
|
>
|
|
|
<div class="table-item" v-for="(item, ind) in val" :key="ind">
|
|
|
<div>{{ item.name }}</div>
|
|
|
- <div class="table-value">
|
|
|
+ <div class="table-value" :data-type="$store.state.moreSty">
|
|
|
{{
|
|
|
item.name.includes("状态")
|
|
|
? item.value
|
|
@@ -311,7 +312,7 @@
|
|
|
<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" :data-type="$store.state.moreSty">
|
|
|
<el-input v-model="inputcv" clearable placeholder="请输入" />
|
|
|
<div class="seachBtn">
|
|
|
<el-icon :size="18" :color="color">
|
|
@@ -337,15 +338,15 @@
|
|
|
<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 warnList1" :key="index">
|
|
|
+ <div class="warnItemLeft">{{it.num}}</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 warnListT" :key="index">
|
|
|
+ <div class="warnItems" v-for="(itv, idx) in it" :key="idx">
|
|
|
+ <div class="warnItemLeft" :class="isRed(idx)">{{itv.num}}</div>
|
|
|
+ <div class="warnItemRight" :class="isRed(idx)">{{itv.name}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -400,6 +401,7 @@ import {
|
|
|
} from "@/api/factoryMonitor/index.js";
|
|
|
import svgIcon from "@/components/coms/icon/svg-icon.vue";
|
|
|
import alarmDialog from "@/components/alarm";
|
|
|
+import warnJson from './warnJson.json'
|
|
|
export default {
|
|
|
name: "windDetail",
|
|
|
data() {
|
|
@@ -608,7 +610,9 @@ export default {
|
|
|
warnTypeData: {
|
|
|
typeData: [],
|
|
|
tableData: []
|
|
|
- }
|
|
|
+ },
|
|
|
+ warnList1: [],
|
|
|
+ warnListT: []
|
|
|
};
|
|
|
},
|
|
|
components: { svgIcon, alarmDialog, powerAndSpeed, },
|
|
@@ -623,6 +627,10 @@ export default {
|
|
|
default: false,
|
|
|
},
|
|
|
},
|
|
|
+ created() {
|
|
|
+ this.warnList1 = warnJson.warn1
|
|
|
+ this.warnListT = warnJson.warnT
|
|
|
+ },
|
|
|
computed: {
|
|
|
windSpeedRota() {
|
|
|
let count = this.windStatus?.SSPJFS / 25;
|
|
@@ -1169,6 +1177,30 @@ export default {
|
|
|
flex: 1;
|
|
|
width: 100%;
|
|
|
}
|
|
|
+ .part-title[data-type~="greenSty"] {
|
|
|
+ .title-item{
|
|
|
+ background: rgba(33, 187, 76, 0.2);
|
|
|
+ border-left: 1px solid rgba(33, 187, 76, 0.48);
|
|
|
+ border-top: 1px solid rgba(33, 187, 76, 0.48);
|
|
|
+ border-bottom: 1px solid rgba(33, 187, 76, 0.48);
|
|
|
+ &.active {
|
|
|
+ background-color: rgba(33, 187, 76, 0.48);
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .part-title[data-type~="blueSty"] {
|
|
|
+ .title-item{
|
|
|
+ background: rgba(96, 103, 105, 0.2);
|
|
|
+ border-left: 1px solid rgba(0, 70, 199, 0.48);
|
|
|
+ border-top: 1px solid rgba(0, 70, 199, 0.48);
|
|
|
+ border-bottom: 1px solid rgba(0, 70, 199, 0.48);
|
|
|
+ &.active {
|
|
|
+ background-color: rgba(0, 70, 199, 0.48);
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
.part-title {
|
|
|
width: 100%;
|
|
|
height: 30px;
|
|
@@ -1183,10 +1215,7 @@ export default {
|
|
|
color: #b3bdc0;
|
|
|
justify-content: center;
|
|
|
// background: rgba(67, 81, 107, 0.2);
|
|
|
- background: rgba(96, 103, 105, 0.2);
|
|
|
- border-left: 1px solid rgba(0, 70, 199, 0.48);
|
|
|
- border-top: 1px solid rgba(0, 70, 199, 0.48);
|
|
|
- border-bottom: 1px solid rgba(0, 70, 199, 0.48);
|
|
|
+
|
|
|
|
|
|
&.part-left {
|
|
|
border-radius: 15px 0px 0px 15px;
|
|
@@ -1197,11 +1226,7 @@ export default {
|
|
|
border-radius: 0px 15px 15px 0px;
|
|
|
}
|
|
|
|
|
|
- &.active {
|
|
|
- // background-color: rgba(0, 70, 199, 0.4);
|
|
|
- background-color: rgba(0, 70, 199, 0.48);
|
|
|
- color: #ffffff;
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
.part-imgs {
|
|
@@ -1257,6 +1282,17 @@ export default {
|
|
|
width: 25%;
|
|
|
font-size: 12px;
|
|
|
|
|
|
+ .table-value[data-type~="greenSty"] {
|
|
|
+ &.round {
|
|
|
+ background-color: rgba(33, 187, 76, 0.48);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .table-value[data-type~="blueSty"] {
|
|
|
+ &.round {
|
|
|
+ background-color: rgba(0, 70, 199, 0.48);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
.table-value {
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
@@ -1275,7 +1311,6 @@ export default {
|
|
|
width: 8px;
|
|
|
height: 8px;
|
|
|
border-radius: 50%;
|
|
|
- background-color: rgba(0, 70, 199, 0.48);
|
|
|
margin-right: 90px;
|
|
|
}
|
|
|
|
|
@@ -1317,6 +1352,24 @@ export default {
|
|
|
font-weight: 400;
|
|
|
color: #ffffff;
|
|
|
|
|
|
+ .problemSeach[data-type~="greenSty"] {
|
|
|
+ .seachBtn{
|
|
|
+ background: rgba(33, 187, 76, 0.48);
|
|
|
+ &:hover {
|
|
|
+ background-color: rgba(16, 219, 57, 0.5);
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .problemSeach[data-type~="blueSty"] {
|
|
|
+ .seachBtn{
|
|
|
+ background: rgba(0, 70, 199, 0.48);
|
|
|
+ &:hover {
|
|
|
+ background-color: rgba(16, 81, 219, 0.5);
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
.problemSeach{
|
|
|
display: flex;
|
|
|
.el-input{
|
|
@@ -1328,7 +1381,6 @@ export default {
|
|
|
.seachBtn{
|
|
|
width: 30px;
|
|
|
height: 30px;
|
|
|
- background: rgba(0, 70, 199, 0.48);
|
|
|
border-radius: 30px;
|
|
|
position: relative;
|
|
|
margin-left: 5px;
|
|
@@ -1338,10 +1390,7 @@ export default {
|
|
|
top: 6px;
|
|
|
left: 7px;
|
|
|
}
|
|
|
- &:hover {
|
|
|
- background-color: rgba(16, 81, 219, 0.5);
|
|
|
- color: #ffffff;
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
.buttons {
|
|
|
background-color: rgba(5, 187, 76, 0.2);
|
|
@@ -1398,7 +1447,7 @@ export default {
|
|
|
.warnComNum{
|
|
|
position: relative;
|
|
|
top: -119px;
|
|
|
- left: 88px;
|
|
|
+ left: 78px;
|
|
|
width: 55px;
|
|
|
.numTop{
|
|
|
font-size: 22px;
|
|
@@ -1467,6 +1516,7 @@ export default {
|
|
|
width: 20%;
|
|
|
border: 1px solid #817c7c;
|
|
|
margin-right: 1%;
|
|
|
+ font-size: 14px;
|
|
|
text-align: center;
|
|
|
line-height: 28px;
|
|
|
}
|
|
@@ -1474,6 +1524,7 @@ export default {
|
|
|
height: 32px;
|
|
|
width: 79%;
|
|
|
line-height: 28px;
|
|
|
+ font-size: 12px;
|
|
|
border: 1px solid #817c7c;
|
|
|
padding-left: 5px;
|
|
|
}
|
|
@@ -1564,10 +1615,15 @@ export default {
|
|
|
color: #b3b3b3;
|
|
|
padding: 0 0px;
|
|
|
|
|
|
+ .table-value[data-type~="greenSty"] {
|
|
|
+ color: rgb(33, 187, 76);
|
|
|
+ }
|
|
|
+ .table-value[data-type~="blueSty"] {
|
|
|
+ color: rgb(15, 120, 240);
|
|
|
+ }
|
|
|
.table-value {
|
|
|
font-family: Arial;
|
|
|
font-weight: 400;
|
|
|
- color: rgb(15, 120, 240);
|
|
|
margin-right: 25px;
|
|
|
}
|
|
|
}
|