diff --git a/layers/templates/FxDownload01/index.vue b/layers/templates/FxDownload01/index.vue
index e9c12bb..1e56131 100644
--- a/layers/templates/FxDownload01/index.vue
+++ b/layers/templates/FxDownload01/index.vue
@@ -6,6 +6,7 @@ import type { Platform } from '#layers/types/components/button'
// Props
interface Props {
+ id?: string
components: PageDataTemplateComponents
pageVerTmplSeq: number
}
@@ -131,6 +132,7 @@ const handleMoveFocus = (target: 'pc' | 'mobile') => {
diff --git a/layers/templates/FxSecure01/index.vue b/layers/templates/FxSecure01/index.vue
index e629c3f..e000a96 100644
--- a/layers/templates/FxSecure01/index.vue
+++ b/layers/templates/FxSecure01/index.vue
@@ -5,6 +5,7 @@ import { getImageHost } from '#layers/utils/styleUtil'
// Props
interface Props {
+ id?: string
components: PageDataTemplateComponents
pageVerTmplSeq: number
}
@@ -47,7 +48,10 @@ const checkLoginValidation = async () => {
const validateTokenResult = await handleTokenValidation(
accessToken.value || ''
)
- console.log("🚀 ~ checkLoginValidation ~ validateTokenResult:", validateTokenResult)
+ console.log(
+ '🚀 ~ checkLoginValidation ~ validateTokenResult:',
+ validateTokenResult
+ )
isLogin.value = validateTokenResult
}
@@ -142,6 +146,7 @@ onMounted(() => {
{
-