Compare commits

..

No commits in common. "fce8754c80d5deffe170e7fcb339e6f88f606dfd" and "c9882caa0efdbdf049ea1c2064ec2ab9adfcaee2" have entirely different histories.

2 changed files with 6 additions and 9 deletions

View File

@ -122,7 +122,7 @@
v-model="inputData[store.formulaNum[indexs - 1] + 28]"
@input="change(store.formulaNum[indexs - 1] + 28, $event)" type="number" style="height: 34px;margin: 0 5px;"
placeholder="0.0">
<span style="padding:0"></span>
<span style="padding:0">%</span>
</div>
</div>
</template>
@ -353,8 +353,8 @@ export default {
value: el.target.value * 10
}
};
// console.log(data,11);
// this.changeBtn(code, data)
console.log(data,11);
this.changeBtn(code, data)
},
//
blurChangeCount(code, el) {

View File

@ -495,20 +495,17 @@ 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) {
list.push('1')
this.right2Index.push('1')
} else if (j == 1) {
list.push('0')
this.right2Index.push('0')
} else {
list.push(j)
this.right2Index.push(j)
}
}
}
this.right2Index=list
},
//
getData30() {