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