修改打包报错问题

This commit is contained in:
2026-01-16 18:24:09 +08:00
parent f8b618a13a
commit ba961c8bce
52 changed files with 13777 additions and 1828 deletions

16
src/api/asset/loading.ts Normal file
View File

@@ -0,0 +1,16 @@
import { NextLoading } from '/@/utils/loading';
/**
* 显示加载动画
*/
export const showLoading = () => {
NextLoading.start();
};
/**
* 隐藏加载动画
*/
export const hideLoading = () => {
NextLoading.done();
};