You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
{layout name="public/layout" /}
|
|
<div id="contactus">
|
|
<img src="{$yf_theme_path}/public/img/contactbg.jpg" width="100%"/>
|
|
<div class="wraper">
|
|
<div class="title">联系我们</div>
|
|
<div class="txt">
|
|
<p>地址:广东省深圳市福田区滨河大道5008号</p>
|
|
<p>电话:0755-88266839<a href="javascript:void(0);" style="color:#fff" class="btn">拷备</a></p>
|
|
<p>邮箱:szwenjiaosuo@126.com</p>
|
|
<br/>
|
|
<p><img src="{$yf_theme_path}/public/img/barcode.jpg" /></p>
|
|
</div>
|
|
</div>
|
|
<div class="poster">
|
|
<a href="{:url('common/chatbot',['kind'=>'-1'])}"><img src="{$yf_theme_path}/public/img/ask.jpg" width="100%"/></a>
|
|
</div>
|
|
</div>
|
|
<script src="{$yf_theme_path}/public/js/clipboard.min.js"></script>
|
|
<script src="{$yf_theme_path}/public/js/layer/layer.js"></script>
|
|
<script>
|
|
$(function(){
|
|
var clipboard = new ClipboardJS('.btn', {
|
|
text: function () {
|
|
return '0755-88266839';
|
|
},
|
|
});
|
|
clipboard.on('success', function (e) {
|
|
layer.msg("电话已拷备");
|
|
});
|
|
clipboard.on('error', function (e) {
|
|
console.log(e);
|
|
});
|
|
});
|
|
</script>
|