ct/app/components/AppFooter.vue
2025-10-15 14:10:01 +08:00

57 lines
2.2 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 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 © 2013-2025深圳市创特科技有限公司 <a
href="http://beian.miit.gov.cn/"
target="_blank">粤ICP备14055703号-1</a>
</div>
<div class="col-xs-6">公司地址深圳市龙华新区1970文化创意产业园A栋206</div>
</div>
</div>
<div class="col-xs-4 hidden-md hidden-lg">
<div class="servers">
<!-- <img id="getphones" alt="18123752516" 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>手机号18123752516</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>