chaoyu/view/page/contact.html

91 lines
4.5 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{layout name="layout"}
<!-- banner -->
<div class="page-banner w-100" style="background-image: url({:getImgSrc($topCategory, '__IMG__/page_ban1.jpg')});">
<div class="info">
<div class="w-1200">
<strong>{$topCategory.title}</strong>
<p>{:nl2br($topCategory.description ?? '')}</p>
</div>
</div>
</div>
<!-- -->
<div class="all-center-box">
<div class="contact-box1 w-100" id="contact1">
<div class="w-1200">
<div class="between-top">
<div class="column-between">
<div class="all-title-box2 w-100"><span>{$blocks['information']['title']['value'] ?? ''}</span><p>{$blocks['information']['subtitle']['value'] ?? ''}</p></div>
{if isset($blocks['information']['logo']) && !empty($blocks['information']['logo']['value'])}
<img src="{$blocks['information']['logo']['value'] ?? ''}" >
{/if}
</div>
<div class="box-info column-between">
<p><span>电话/Tel</span>{$system['company_tel'] ?? ''}</p>
<p><span>传真/Fax</span>{$system['company_fax'] ?? ''}</p>
<p><span>邮箱/E-mail</span>{$system['company_email'] ?? ''}</p>
<p>
{$system['company_addr'] ?? ''}
<br>{$system['company_addr_detail_en'] ?? ''}
<br>{$system['company_addr_en'] ?? ''}
</p>
<p>
{$system['company_name'] ?? ''}
<br>{$system['company_name_en'] ?? ''}
<br>{$system['company_type_en'] ?? ''}
</p>
</div>
{if isset($blocks['information']['wechat']) && !empty($blocks['information']['wechat'])}
<div class="column-between">
<p>&nbsp;</p>
<div class="ewm">
<img src="{$blocks['information']['wechat']['value'] ?? ''}" >
<p>微信二维码/Wechant</p>
</div>
</div>
{/if}
</div>
<div class="w-100 text-center"><img src="__IMG__/lx1_bg.png" ></div>
</div>
</div>
<div class="contact-box2 w-100" id="contact2">
<div class="w-1200">
<div class="all-title-box2 w-100"><span>{$blocks['jobs']['title']['value'] ?? ''}</span><p>{$blocks['jobs']['subtitle']['value'] ?? ''}</p></div>
<div class="marketing-box2 w-100">
<div class="center-block w-100">
<ul>
{if isset($jobList) && count($jobList) > 0}
{foreach $jobList as $job}
<li>
<div class="top-box w-100">
<div class="pull-left"><i>{$job.summary ?? ''}</i><span>{$job.title ?? ''}</span></div>
<div class="pull-right">展开</div>
</div>
<div class="lower-box w-100">
<div class="pull-left">{$job.create_time|date="Y.m.d"}</div>
<div class="pull-right">{$job.content|raw}</div>
</div>
</li>
{/foreach}
{/if}
</ul>
</div>
</div>
</div>
</div>
<div class="contact-box3 w-100" id="contact3">
<div class="w-1200">
<div class="all-title-box2 w-100"><span>{$blocks['message']['title']['value'] ?? ''}</span><p>{$blocks['message']['subtitle']['value'] ?? ''}</p></div>
<div class="box-info w-100">{:nl2br($blocks['message']['description']['value'] ?? '')}</div>
<form data-action="{:url('message/add')}" class="center-block w-100" method="post" id="message-form">
<input type="text" class="text" name="company_name" placeholder="公司名称" />
<input type="text" class="text" name="email" placeholder="邮箱" />
<input type="text" class="text" name="name" placeholder="联系人署名" />
<input type="text" class="text" name="phone" placeholder="联系电话" />
<textarea placeholder="咨询事项, 4 ~ 500 字以内" name="content"></textarea>
<div class="btns"><button type="button" id="message-submit">提交</button></div>
</form>
</div>
</div>
</div>