Merge branch 'master' of gitee.com:willamet/rn-bms-vue

This commit is contained in:
刘召雪
2020-11-26 09:54:43 +08:00

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) => { });
}
},