pull/134/head
孙萌 2024-03-14 14:14:12 +08:00
parent 701c27fa11
commit 25e3b62de3
1 changed files with 6 additions and 3 deletions

View File

@ -495,17 +495,20 @@ export default {
this.openType = this.getType29(typeNumber) this.openType = this.getType29(typeNumber)
var statusIndex = 8 var statusIndex = 8
var list=[]
for (var j = 0; j < statusIndex; j++) { for (var j = 0; j < statusIndex; j++) {
if (Number(number[number.length - 1 - j])) { if (Number(number[number.length - 1 - j])) {
if (j == 0) { if (j == 0) {
this.right2Index.push('1') list.push('1')
} else if (j == 1) { } else if (j == 1) {
this.right2Index.push('0') list.push('0')
} else { } else {
this.right2Index.push(j) list.push(j)
} }
} }
} }
this.right2Index=list
}, },
// //
getData30() { getData30() {