This commit is contained in:
yanran200730
2022-06-11 11:45:36 +08:00

View File

@@ -58,7 +58,7 @@ export default {
// this.getList()
},
getList() {
this.$http.post(`/app/appdlbquipment/list?current=1&size=20&name=${this.keyword}`).then((res) => {
this.$http.post(`/app/appdlbquipment/list?current=1&size=20&name=${this.keyword}&devStatus=5`).then((res) => {
if (res.code == 0) {
res.data.records.map(item => {
item.isCheck = false
@@ -80,7 +80,7 @@ export default {
if(item.isCheck) {
var info = {
serialNo: item.serialNo,
serialName: item.deviceName
serialName: item.name
}
this.selectList.push(info)
}