This commit is contained in:
Putoo
2026-05-19 15:10:59 +08:00
parent 2037d1e577
commit 24c784e6a4
14 changed files with 429 additions and 19 deletions

View File

@@ -11,6 +11,19 @@ export class MessageExtend {
});
}
static LoadingToast(message?: string) {
showLoadingToast({
message: message || '加载中',
forbidClick: true,
loadingType: 'spinner',
duration: 0
});
}
static LoadingClose() {
closeToast();
}
// 提示弹窗
static ShowDialog(title: string, message: string) {
showDialog({ title: title, message: message })