|
@@ -34,13 +34,15 @@ export default {
|
|
"condition": "",
|
|
"condition": "",
|
|
"status": ""
|
|
"status": ""
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ },
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
init(forcedUpdating = true) {
|
|
init(forcedUpdating = true) {
|
|
this.uninitialized = false;
|
|
this.uninitialized = false;
|
|
this.getlist(forcedUpdating);
|
|
this.getlist(forcedUpdating);
|
|
|
|
+
|
|
|
|
+
|
|
},
|
|
},
|
|
getlist(init) {
|
|
getlist(init) {
|
|
let content = this.content;
|
|
let content = this.content;
|
|
@@ -50,7 +52,7 @@ export default {
|
|
}
|
|
}
|
|
if (content.pageNumber > content.pageTotal) return;
|
|
if (content.pageNumber > content.pageTotal) return;
|
|
this.$Http.basic({
|
|
this.$Http.basic({
|
|
- "id": 20230615153202,
|
|
|
|
|
|
+ "id": 20230711144102,
|
|
content
|
|
content
|
|
}).then(res => {
|
|
}).then(res => {
|
|
console.log("设备列表", res)
|
|
console.log("设备列表", res)
|
|
@@ -74,6 +76,11 @@ export default {
|
|
}
|
|
}
|
|
return v
|
|
return v
|
|
})
|
|
})
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
this.list = res.pageNumber == 1 ? res.data : this.list.concat(res.data)
|
|
this.list = res.pageNumber == 1 ? res.data : this.list.concat(res.data)
|
|
this.content = content;
|
|
this.content = content;
|
|
})
|
|
})
|