diff --git a/layers/components/blocks/modal/Alert.vue b/layers/components/blocks/modal/Alert.vue index 9c7c616..e2da05f 100644 --- a/layers/components/blocks/modal/Alert.vue +++ b/layers/components/blocks/modal/Alert.vue @@ -8,7 +8,7 @@ interface props { } const props = withDefaults(defineProps(), { - isShowDimmed: false, + isShowDimmed: true, isOutsideClose: false, }) diff --git a/layers/components/blocks/modal/Confirm.vue b/layers/components/blocks/modal/Confirm.vue index 611b749..15aacd2 100644 --- a/layers/components/blocks/modal/Confirm.vue +++ b/layers/components/blocks/modal/Confirm.vue @@ -9,7 +9,7 @@ interface props { } const props = withDefaults(defineProps(), { - isShowDimmed: false, + isShowDimmed: true, isOutsideClose: false, }) diff --git a/layers/components/blocks/modal/Layer.vue b/layers/components/blocks/modal/Layer.vue index c4d1c34..cd3c010 100644 --- a/layers/components/blocks/modal/Layer.vue +++ b/layers/components/blocks/modal/Layer.vue @@ -8,7 +8,7 @@ interface props { } const props = withDefaults(defineProps(), { - isShowDimmed: false, + isShowDimmed: true, isOutsideClose: false, }) diff --git a/layers/composables/useTokenValidation.ts b/layers/composables/useTokenValidation.ts index c0db1b8..ba07dad 100644 --- a/layers/composables/useTokenValidation.ts +++ b/layers/composables/useTokenValidation.ts @@ -26,7 +26,6 @@ export const useTokenValidation = () => { const showLoginModal = (alertKey: string) => { modalStore.handleOpenConfirm({ contentText: tm(alertKey), - isShowDimmed: true, confirmButtonText: tm('Text_StoveLogin'), confirmButtonEvent: () => { csrGoStoveLogin() diff --git a/layers/stores/useModalStore.ts b/layers/stores/useModalStore.ts index ae98e32..f17be70 100644 --- a/layers/stores/useModalStore.ts +++ b/layers/stores/useModalStore.ts @@ -23,7 +23,7 @@ export const useModalStore = defineStore('modalStore', () => { } const handleOpenAlert = ({ - isShowDimmed = false, + isShowDimmed = true, modalName = '', isOutsideClose = false, contentText, @@ -47,7 +47,7 @@ export const useModalStore = defineStore('modalStore', () => { } const handleOpenConfirm = ({ - isShowDimmed = false, + isShowDimmed = true, modalName = '', isOutsideClose = false, contentText,