weipengfei 9e7b16a79b 更新
2024-03-26 16:55:50 +08:00

24 lines
627 B
JavaScript

import { download, install } from "./updater";
export default class Updater {
static async update(options) {
// #ifdef APP-PLUS
// 静默更新
if (options.quiet) {
download({
url: options.downUrl,
onSuccess(filePath) {
install(filePath, options.quiet&&options.force, options.versionName);
},
});
} else if (options.downUrl) {
uni.navigateTo({
url: `/uni_modules/guyue-updater/pages/updater?data=${encodeURIComponent(JSON.stringify(options))}`,
animationType: "fade-in",
animationDuration: 200,
});
}
// #endif
}
}