普通招生

This commit is contained in:
guochunsi
2026-01-15 19:06:50 +08:00
parent 761fb9bdc3
commit 3cab9fab59
46 changed files with 1561 additions and 1033 deletions

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

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