feat: 表单编辑器magic-api调用不会弹框,而是以图标闪烁的形式显示
This commit is contained in:
20
src/hooks/core/useGlobalFlag.ts
Normal file
20
src/hooks/core/useGlobalFlag.ts
Normal file
@ -0,0 +1,20 @@
|
||||
import { ref } from 'vue';
|
||||
|
||||
const isEditorOpen = ref(false);
|
||||
const hasAjaxError = ref(false);
|
||||
|
||||
function ajaxError() {
|
||||
hasAjaxError.value = true;
|
||||
setTimeout(() => {
|
||||
hasAjaxError.value = false;
|
||||
}, 10000);
|
||||
}
|
||||
|
||||
export default function() {
|
||||
return {
|
||||
isEditorOpen,
|
||||
hasAjaxError,
|
||||
ajaxError
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user