This commit is contained in:
hh
2020-11-26 09:54:34 +08:00
parent cb9c5f3b2b
commit d47d8e7697

View File

@ -189,7 +189,13 @@ export default {
let snap = Object.assign({}, this.queryParams);
delete snap.pageNum;
delete snap.pageSize;
this.OTAUpdates(snap);
this.$confirm(`是否确认批量升级?`, "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.OTAUpdates(snap);
}).catch((res) => { });
}
},