This commit is contained in:
2023-11-07 15:49:07 +08:00
parent 876f7d8f3c
commit 6e1bf994c2
19 changed files with 165 additions and 76 deletions

View File

@@ -136,6 +136,15 @@ export default {
item.type = i.name
}
})
if (item.minValue && item.maxValue) {
item.limitValue = item.minValue + '-' + item.maxValue
} else if(item.minValue){
item.limitValue = '最小值' + item.minValue
}else if(item.maxValue){
item.limitValue = '最大值' + item.maxValue
} else {
item.limitValue = ''
}
})
this.list = arr
this.total = response.data.total;