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.
296 lines
11 KiB
296 lines
11 KiB
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head lang="zh-CN">
|
|
<meta charset="UTF-8">
|
|
<title>长城期货股份有限公司|联系我们</title>
|
|
<meta name="keywords"
|
|
content="长城期货股份有限公司成立于1996年,是一家国有控股的专业期货公司。公司总部设在广州,在北京、上海、深圳、佛山、郑州、大连设有分支机构。公司经过20多年的发展,基本形成扎根广佛地区辐射全国的业务格局并积累了深厚的有色、钢铁等产业资源。" />
|
|
<meta name="description"
|
|
content="长城期货的控股股东为中国长城资产管理股份有限公司(以下简称集团)旗下的长城国瑞证券,集团拥有完整的金融牌照和庞大的金融及产业资源,最大化挖掘综合金融集团的协同效应,致力于打造精品期货公司。" />
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="format-detection" content="address=no">
|
|
<link rel="shortcut icon" href="/favicon.png" type="image/png" />
|
|
|
|
<link href="/themes/static_new/css/calendar.css" rel="stylesheet" />
|
|
<link href="/themes/static_new/css/slicy.css" rel="stylesheet" />
|
|
<link href="/themes/static_new/css/swiper.min.css" rel="stylesheet" />
|
|
<link href="/themes/static_new/css/style.css" rel="stylesheet" />
|
|
<link href="/themes/static_new/css/responsive.css" rel="stylesheet" />
|
|
<link rel="stylesheet" href="/themes/static_new/css/layui.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="layout">
|
|
<!-- nav===============START -->
|
|
{include file="common/nav" /}
|
|
<!-- nav===============END -->
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
<!-- 大banner -->
|
|
{hcTaglib:category id="156" item="vo" field="*"}
|
|
<div class="uitbanner">
|
|
<img src="{$vo.banner.url}" alt="">
|
|
</div>
|
|
{/hcTaglib:category}
|
|
|
|
<div class="crumbs">
|
|
<div class="wrap">
|
|
<dl>
|
|
<dt><a href="#">首页:</a></dt>
|
|
<dd><a href="#">联系我们</a></dd>
|
|
<dd><span>></span></dd>
|
|
<dd class="on"><a href="#">联系方式</a></dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="contact">
|
|
<div class="hds">
|
|
<div class="wrap wow fadeInUp" data-wow-delay="0.3s" data-wow-duration="1s">
|
|
<div class="tit">
|
|
<h2>联系方式</h2>
|
|
<span></span>
|
|
</div>
|
|
{hcTaglib:category id="196" item="vo" field="*"}
|
|
{php}
|
|
$contact_map_pic = $vo['banner']['url'] ?? '';
|
|
$contact_str = $vo['description'] ?? '';
|
|
$contact_phone = '';
|
|
$contact_fax = '';
|
|
$contact_email = '';
|
|
if(!empty($contact_str)){
|
|
$contact_arr = explode('##', $contact_str);
|
|
$contact_phone = $contact_arr[0] ?? '';
|
|
$contact_fax = $contact_arr[1] ?? '';
|
|
$contact_email = $contact_arr[2] ?? '';
|
|
}
|
|
{/php}
|
|
{/hcTaglib:category}
|
|
<ul>
|
|
<li>
|
|
<div class="ico">
|
|
<img src='/themes/static_new/images/qms17.png' alt='' />
|
|
</div>
|
|
<h6>服务电话</h6>
|
|
<h3>{$contact_phone}</h3>
|
|
</li>
|
|
<li>
|
|
<div class="ico">
|
|
<img src='/themes/static_new/images/qms18.png' alt='' />
|
|
</div>
|
|
<h6>传真</h6>
|
|
<h3>{$contact_fax}</h3>
|
|
</li>
|
|
<li>
|
|
<div class="ico">
|
|
<img src='/themes/static_new/images/qms19.png' alt='' />
|
|
</div>
|
|
<h6>公司邮箱</h6>
|
|
<h3>{$contact_email}</h3>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="map" id="maps">
|
|
<p><img src="{$contact_map_pic}" /></p>
|
|
</div>
|
|
<div class="bds">
|
|
<div class="wrap wow fadeInUp" data-wow-delay="0.3s" data-wow-duration="1s">
|
|
<div class="tit">
|
|
<h2>公司各部门联系电话</h2>
|
|
<span></span>
|
|
</div>
|
|
{hcTaglib:category id="197" item="vo" field="*"}
|
|
{php}
|
|
$contact_str = $vo['description'] ?? '';
|
|
$contact_phone = '';
|
|
$contact_fax = '';
|
|
$contact_email = '';
|
|
if(!empty($contact_str)){
|
|
$contact_arr = explode('##', $contact_str);
|
|
$contactList = [];
|
|
foreach ($contact_arr as $item) {
|
|
// 按 ':' 拆分成name和tel,限制为2部分,防止tel中有多余冒号
|
|
$parts = explode(':', $item, 2);
|
|
if (count($parts) == 2) {
|
|
$contactList[] = [
|
|
'name' => trim($parts[0]),
|
|
'tel' => trim($parts[1])
|
|
];
|
|
}
|
|
}
|
|
// 每2个一组分块
|
|
$chunkedList = array_chunk($contactList, 2);
|
|
}
|
|
{/php}
|
|
{/hcTaglib:category}
|
|
|
|
<table border="0" cellpadding="1" cellspacing="1" style="width:100%">
|
|
<tbody>
|
|
{foreach $chunkedList as $row}
|
|
<tr>
|
|
<!-- 第一个元素 -->
|
|
<td>
|
|
<h4>{$row[0]['name']}</h4>
|
|
<h6>{$row[0]['tel']}</h6>
|
|
</td>
|
|
<!-- 第二个元素(如果存在) -->
|
|
{if isset($row[1])}
|
|
<td>
|
|
<h4>{$row[1]['name']}</h4>
|
|
<h6>{$row[1]['tel']}</h6>
|
|
</td>
|
|
{else}
|
|
<td></td> <!-- 奇数个时留空,保持表格整齐 -->
|
|
{/if}
|
|
</tr>
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<p> </p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="mtousujy">
|
|
<div class="wrap">
|
|
<div class="tit">
|
|
<h2>投诉建议</h2>
|
|
<span></span>
|
|
</div>
|
|
|
|
<form class="layui-form">
|
|
<ul>
|
|
<li>
|
|
<h3><i>*</i>主题:</h3>
|
|
<input type="text" class="txt" name="content" placeholder="" lay-verify="required"
|
|
lay-reqText="请填写主题">
|
|
</li>
|
|
<li>
|
|
<h3><i>*</i>姓名:</h3>
|
|
<input type="text" name="contacts_name" class="txt" placeholder="" lay-verify="required"
|
|
lay-reqText="请填写姓名">
|
|
</li>
|
|
<li>
|
|
<h3>邮箱:</h3>
|
|
<input type="text" class="txt" name="email" placeholder="">
|
|
</li>
|
|
<li>
|
|
<h3><i>*</i>电话:</h3>
|
|
<input type="text" class="txt" name="phone" placeholder=""
|
|
lay-verify="required|phone" lay-reqText="请填写联系电话">
|
|
</li>
|
|
<li>
|
|
<h3><i>*</i>地址:</h3>
|
|
<input type="text" class="txt" name="company_address" placeholder="" lay-verify="required"
|
|
lay-reqText="请填写联系地址">
|
|
</li>
|
|
<li>
|
|
<h3><i>*</i>投诉内容:</h3>
|
|
<textarea class="txt txt1" name="explain" id="" cols="30" rows="10" placeholder=""
|
|
lay-verify="required" lay-reqText="请填写详情内容"></textarea>
|
|
</li>
|
|
<li>
|
|
<input type="button" class="btn on" value="提交" lay-submit="" lay-filter="submitContact">
|
|
<input type="button" class="btn" value="取消">
|
|
</li>
|
|
</ul>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- nav===============START -->
|
|
{include file="common/footer" /}
|
|
<!-- nav===============END -->
|
|
</div>
|
|
{include file="common/uitfexi" /}
|
|
|
|
|
|
<script src="/themes/static_new/js/jquery-3.5.1.min.js" type="text/javascript"></script>
|
|
<!-- <script src="/themes/static_new/layui/layui.js" type="text/javascript"></script> -->
|
|
<script src="/themes/static_new/js/swiper.min.js" type="text/javascript"></script>
|
|
<script src="/themes/static_new/js/wow.min.js" type="text/javascript"></script>
|
|
<script src="/themes/static_new/js/script.js" type="text/javascript"></script>
|
|
<script src="/themes/static_new/js/layui.js" type="text/javascript"></script>
|
|
|
|
|
|
<script>
|
|
layui.use(['form', 'layer'], function () {
|
|
var form = layui.form;
|
|
form.on('submit(submitTo)', function (data) {
|
|
var index = layer.load();
|
|
$.post('/default/advice-plan', data.field, function (result) {
|
|
layer.close(index);
|
|
//layer.msg(result.msg);
|
|
if (result.code == 200) {
|
|
$('.mumk').hide();
|
|
$('.mask').hide();
|
|
$('.mask').show();
|
|
$('.qmmumk').show();
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
$(".search_btn").on("click", function () {
|
|
if ($("#searchKeyword").val() == "") {
|
|
layer.msg("请输入搜索内容");
|
|
return;
|
|
}
|
|
location.href = "/search-" + encodeURIComponent($("#searchKeyword").val()) + ".html";
|
|
});
|
|
$('.qmmumk .icon').click(function () {
|
|
$('.qmmumk').hide();
|
|
$('.mask').hide();
|
|
})
|
|
});
|
|
</script>
|
|
|
|
|
|
<script>
|
|
var address = "广州市天河区珠江西路17号1901房自编单元:【1901-F单元】";
|
|
</script>
|
|
|
|
|
|
<script type='text/javascript'>
|
|
layui.use(['form', 'layer'], function () {
|
|
var form = layui.form;
|
|
/*$("#captcha").on("click", function(){
|
|
$.getJSON("/default/captcha?refresh="+Date.parse(new Date()), function(result){
|
|
$("#captcha").attr("src", result.url);
|
|
});
|
|
});*/
|
|
|
|
form.on('submit(submitContact)', function (data) {
|
|
var index = layer.load();
|
|
// 提交表单
|
|
$.post('/inquiry/save', data.field, function (result) {
|
|
layer.close(index);
|
|
|
|
console.log(result)
|
|
|
|
if (result.code == 0) {
|
|
location.reload();
|
|
} else {
|
|
layer.msg(result.msg);
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|