pull/134/head
parent
701c27fa11
commit
25e3b62de3
|
@ -495,17 +495,20 @@ export default {
|
|||
this.openType = this.getType29(typeNumber)
|
||||
|
||||
var statusIndex = 8
|
||||
var list=[]
|
||||
|
||||
for (var j = 0; j < statusIndex; j++) {
|
||||
if (Number(number[number.length - 1 - j])) {
|
||||
if (j == 0) {
|
||||
this.right2Index.push('1')
|
||||
list.push('1')
|
||||
} else if (j == 1) {
|
||||
this.right2Index.push('0')
|
||||
list.push('0')
|
||||
} else {
|
||||
this.right2Index.push(j)
|
||||
list.push(j)
|
||||
}
|
||||
}
|
||||
}
|
||||
this.right2Index=list
|
||||
},
|
||||
//进水泵和出水泵状态
|
||||
getData30() {
|
||||
|
|
Loading…
Reference in New Issue