PC 全局loading的二次封装
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | import { ElLoading } from 'element-plus' ; let loading = null ; let loadingName = 'default' ; let loadingStatus = false ; const hideLoading = (name = 'default' ) => { // 为了防止loading的一闪而过 if (name === loadingName) { loadingStatus = false ; loadingName = '' ; setTimeout(() => { loading.close(); }, 500); } }; /** * loading页面 * @param params * @param other 其他参数, { timeout: 超时时间, text: 提示文字} */ const showLoading = ( name = 'default' , other = { timeout: 20, text: '数据加载中' }, ) => { // 只允许一个loading出现 if (loadingStatus) { return ; } loadingStatus = true ; loadingName = name; if (loading) { loading.close(); } let options = { fullscreen: false , lock: true , text: other.text, spinner: 'el-icon-loading' , // 添加类型,利于修改其样式 customClass: 'create-isLoading' , background: 'rgba(255, 255, 255, 0.9)' , }; const currentLoading = ElLoading.service(options); let num = 0; let timer = setInterval(() => { num += 1; if (num >= other.timeout) { clearInterval(timer); if (loading === currentLoading) { hideLoading(name); } } }, 1000); loading = currentLoading; }; export { showLoading, hideLoading }; |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 地球OL攻略 —— 某应届生求职总结
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 提示词工程——AI应用必不可少的技术
· .NET周刊【3月第1期 2025-03-02】