-
+
{{ policies.main?.title.join("") }}
@@ -11,8 +11,8 @@
:class="item.class || ''">
-
-
+
+
{{ policies.main?.title.join("") }}
{{ item.title }}
@@ -24,11 +24,10 @@
v-for="policy in policies.other">
-
{{ policy.title.join("") }}
+
{{ policy.title.join("") }}
-
@@ -46,4 +45,10 @@ const props = defineProps({
const policies = computed(() => {
return { main: POLICY.find(policy => policy.id === homeStore.activeDialog.id), other: POLICY.filter(policy => policy.id !== homeStore.activeDialog.id) }
})
+
+const handleSelectItem = (id:string) => {
+ homeStore.handleActiveDialog(Dialog.POLICY, id)
+}
+
+
\ No newline at end of file
diff --git a/components/UI/Dialog/ServiceContent.vue b/components/UI/Dialog/ServiceContent.vue
index a7d71c7..b36a568 100644
--- a/components/UI/Dialog/ServiceContent.vue
+++ b/components/UI/Dialog/ServiceContent.vue
@@ -35,7 +35,7 @@
-
+
感謝您的意見
diff --git a/layouts/BaseFooter.vue b/layouts/BaseFooter.vue
index 9238319..af4c01a 100644
--- a/layouts/BaseFooter.vue
+++ b/layouts/BaseFooter.vue
@@ -61,5 +61,8 @@ import { LEGISLATOR } from '~/utils/constant';
max-width: 100%;
}
}
+ .v-application .px-26{
+ padding:104px 0px 172px 0px
+ }
}
\ No newline at end of file
diff --git a/layouts/default.vue b/layouts/default.vue
index 2657593..567650a 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -3,8 +3,7 @@
-
+ style="background: rgba(255, 255, 255, 0.8);cursor: pointer;">
{{ LEGISLATOR.name }} {{ LEGISLATOR.englishName }}
@@ -18,6 +17,7 @@
+
@@ -29,6 +29,7 @@ import { LEGISLATOR, SOCIAL } from '@/utils/constant'
import logo from '@/assets/image/logo.svg'
import TopNav from '~/layouts/Nav/TopNav.vue';
import BottomNav from '~/layouts/Nav/BottomNav.vue';
+import BaseFooter from './BaseFooter.vue';