This commit is contained in:
Putoo
2026-04-28 14:49:43 +08:00
parent dccf21527f
commit cc9d697f9c
3 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
export class PageLoading{
private static get PageLoading() {
return useAppStore()
}
public static Loading(): void {
this.PageLoading.startLoading("加载中...");
}
public static Close(): void {
this.PageLoading.endLoading();
}
}