修改版权信息
parent
d3924e9d70
commit
9beb538641
|
|
@ -11,15 +11,17 @@
|
||||||
<p>联系电话:{{ website.info.contact_phone }}</p>
|
<p>联系电话:{{ website.info.contact_phone }}</p>
|
||||||
<p>邮箱:{{ website.info.contact_email }}</p>
|
<p>邮箱:{{ website.info.contact_email }}</p>
|
||||||
<p>联系地址:{{ website.info.contact_address }}</p>
|
<p>联系地址:{{ website.info.contact_address }}</p>
|
||||||
<p>copyright © 2023; <span>海国图智信息科技 (广州)有限公司</span></p>
|
<p>Copyright © {{ curYear }} <span>{{ website.info.copyright }}</span></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { useWebsite } from '@/stores/website';
|
import { useWebsite } from '@/stores/website';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
const website = useWebsite();
|
const website = useWebsite();
|
||||||
|
const curYear = ref(new Date().getFullYear());
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue