File: /var/www/dk/wp-content/themes/food/food-app/components/yq-footer-competition.vue
<template>
<footer class="text-white body-font w-full pt-1" style="background: #000c17">
<div class="w-100 md:w-[768px] md:mx-auto xl:w-[1280px]">
<div class="container mx-auto py-0.5 flex justify-center md:justify-start sm:flex-row text-[0.2rem]">
<div class="mt-[0.3rem] ml-[0.2rem] ">
<img :src="local_url+'img/mmc/footer_logo.webp'" class=" " style="width: 188px">
</div>
</div>
<div style="background: #000c17">
<div class="container mx-auto py-1 px-1 flex flex-wrap flex-col sm:flex-row text-1 text-gray-500 mt-[0.3rem]">
<p class=" text-center sm:text-left">Copy © 2022-{{ year_text }} Medical Media Channel All Rights
Reserved</p>
<span class="inline-flex sm:ml-auto sm:mt-0 mt-1 justify-center sm:justify-start">
<span class="text-center sm:text-left">《法律聲明》《使用條款和隱私條例》</span>
</span>
</div>
</div>
</div>
</footer>
</template>
<script>
module.exports = {
props: {
year_text: {
type: String,
default: "2023"
}
},
methods: {},
data() {
return {
menu_Column_1_list: [
{
id: 10,
title: "Medical Media Channel 的發展歷史",
path: "",
}, {
id: 11,
title: "Medical Media Channel 的來源",
path: "",
}, {
id: 12,
title: "聯絡 Medical Media Channel ",
path: "",
}, {
id: 13,
title: "聯絡我們",
path: "",
}, {
id: 14,
title: "尋求合作",
path: "",
},
],
menu_Column_2_list: [
{
id: 20,
title: "熱門商品",
path: "",
}, {
id: 21,
title: "今期特惠",
path: "",
}, {
id: 22,
title: "商品分類",
path: "",
}, {
id: 23,
title: "購物特集",
path: "",
}
],
menu_Column_3_list: [
{
id: 30,
title: "會員登入",
path: "",
}, {
id: 31,
title: "會員登記",
path: "",
}, {
id: 32,
title: "會員優惠",
path: "",
}, {
id: 33,
title: "積分商城",
path: "",
}
],
menu_Column_4_list: [
{
id: 40,
title: "常見問題",
path: "",
}, {
id: 41,
title: "關於送貨",
path: "",
}, {
id: 42,
title: "關於退貨",
path: "",
}, {
id: 43,
title: "商戶政策",
path: "",
}
],
}
}
}
</script>