Ly.Offical.HYL/src/views/Contact.vue
2025-03-28 16:23:04 +08:00

60 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script>
export default {
setup() {
return {
};
},
methods: {
}
};
</script>
<template>
<div class="contact">
<div class="banner">
<img src="/images/contact-banner.png" alt="">
</div>
<div class="contact-content">
<span class="b-font">
CONTACT US
</span>
<span class="black-ft">
联系
<p class="red-ft">
我们
</p>
</span>
<span class="contact-ft">
热烈欢迎社会各界志士仁人走进好运徕了解好运徕让我们携手共进共同为振兴国民实体经济贡献自己的一份力量
</span>
<div class="boxs">
<div class="box">
<img src="/images/contact-icon1.png" alt="">
<span class="box-ft">
电子邮箱{{ $ls.get('CompanyEmail') }}
</span>
</div>
<div class="box">
<img src="/images/contact-icon2.png" alt="">
<span class="box-ft">
联系电话{{ $ls.get('CompanyPhone') }}
</span>
</div>
<div class="box">
<img src="/images/contact-icon3.png" alt="">
<span class="box-ft">
{{ $ls.get('CompanyAddress') }}
</span>
</div>
</div>
<img src="/images/maps.png" alt="">
</div>
</div>
</template>