Compare commits

...

3 Commits

Author SHA1 Message Date
636874e464 Merge pull request 'pc-master' (#283) from pc-master into portal
Reviewed-on: #283
2025-09-19 00:16:49 +00:00
4de265ea6d 1 2025-09-18 20:02:42 +08:00
c008dfd212 9/16 2025-09-16 16:58:05 +08:00
2 changed files with 5 additions and 4 deletions

View File

@ -268,7 +268,7 @@ export default {
},
//
handleCommand(index) {
this.TypeSel = this.typeSelList[index].name
this.TypeSel = this.typeSelList[index].label
this.TypeSelIndex = this.typeSelList[index].value
var dataNum = {
target: {
@ -391,7 +391,7 @@ export default {
this.typeSelList.forEach((el, index) => {
if (el.value == this.inputData[21657 + (this.indexs - 1)]) {
this.TypeSel = el.name
this.TypeSel = el.label
this.TypeSelIndex = el.value
}
if (this.inputData[21657 + (this.indexs - 1)] == 0) {

View File

@ -492,7 +492,7 @@ export default {
},
getrightList3() {
// var num = this.inputData['82']
var num = this.inputData['82']
var num = this.inputData['82']?this.inputData['82']:0
var num1 = this.padString(num.toString(2), 8)
var openListNew = []
@ -575,7 +575,8 @@ export default {
},
//
getData81() {
var number = this.padString(this.inputData['81'].toString(2), 4)
var num=this.inputData['81']?this.inputData['81']:0
var number = this.padString(num.toString(2), 4)
var openListNew = []
openListNew = number.split("")