ct/app/components/AppFooter.vue
2025-10-30 14:02:13 +08:00

57 lines
2.1 KiB
Vue
Raw Permalink 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 lang="ts" setup>
const {footer} = useAppConfig()
</script>
<template>
<!-- -->
<div style="background: #000; color: #fff;">
<marquee>
<!-- Keywords: -->
<a href="/" style="color: #fff;" target="_blank" title="福鼎APP开发"><strong>共享APP开发-创特科技专注于共享陪护床共享电动车共享汽车共享充电桩共享家居电器共享按摩椅共享充电宝共享滑板车等共享软件开发及物联网解决方案</strong></a>
</marquee>
</div>
<!-- -->
<div class="containe min-footer text-center">
<div class="row">
<div class="col-xs-6">Copyright ©创特物联科技 <a
href="http://beian.miit.gov.cn/"
target="_blank">闽ICP备2023022186号-2</a>
</div>
<div class="col-xs-6">公司地址福建省 福鼎市 太姥山镇雄欣针织厂</div>
</div>
</div>
<div class="col-xs-4 hidden-md hidden-lg">
<div class="servers">
<!-- <img id="getphones" alt="15280659990" src="/img/img/wecate.png">-->
</div>
</div>
<div id="myModal" class="modal fade">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header" style="border: none">
<button aria-label="Close" class="close" data-dismiss="modal" type="button"><span
aria-hidden="true">&times;</span></button>
<h4 class="modal-title">复制成功</h4>
</div>
<div class="modal-body" style="text-align: center;">
<span class="glyphicon glyphicon-ok" style="color: green; font-size: 40px;"/>
<p>复制成功</p>
<p>手机号15280659990</p>
<p>添加微信好友详细了解产品</p>
</div>
<div class="modal-footer" style="border: none">
<button
class="btn btn-default" data-dismiss="modal"
style="width: 100%; background: green; border: none; color: #fff;"
type="button">知道了
</button>
<!-- <button type="button" class="btn btn-primary">Save changes</button> -->
</div>
</div>
</div>
</div>
</template>