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.
125 lines
4.3 KiB
125 lines
4.3 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="__TMPL__/static/css/layui.css" />
|
|
<!-- 通用 -->
|
|
{include file="common/head" /}
|
|
<!-- 当前 -->
|
|
<link rel="stylesheet" href="__TMPL__/static/css/mixin.css" />
|
|
<link rel="stylesheet" href="__TMPL__/static/css/message.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<!-- header start -->
|
|
{include file="common/header" /}
|
|
<!-- header end -->
|
|
<div class="bannerList">
|
|
<div class="img">
|
|
<img src="__TMPL__/static/images/zoujin/img-2.jpg" alt="" />
|
|
</div>
|
|
<div class="w1280">
|
|
<div class="bannerTitle">{$current_cate['title']}</div>
|
|
</div>
|
|
</div>
|
|
<div class="crumb-head">
|
|
<ul class="w1280">
|
|
<li><a href="">首页</a></li>
|
|
{hcTaglib:breadcrumb cid="$current_cate['id']" item="cate"}
|
|
<li>></li>
|
|
<li><a href="{$cate.url}">{$cate.title}</a></li>
|
|
{/hcTaglib:breadcrumb}
|
|
</ul>
|
|
</div>
|
|
<div class="tabs-container">
|
|
<div class="message-detail w1280">
|
|
<div class="line-title">特别提示</div>
|
|
<div class="message-block1">
|
|
{hcTaglib:content cid="130" moduleId="1" item="vo" mainField="id,title,description,content"}
|
|
<div class="message-colla">
|
|
<div class="content-title">
|
|
{$vo.description}
|
|
</div>
|
|
<div class="tool"></div>
|
|
<div class="message-content">
|
|
{$vo.content|raw}
|
|
</div>
|
|
</div>
|
|
{/hcTaglib:content}
|
|
<div class="message-description">
|
|
居间人如存在上述行为,其行为所产生的经济后果和法律责任由本人自负,与东亚期货无关
|
|
</div>
|
|
</div>
|
|
<div class="line-title">居间人公示表</div>
|
|
<div class="message-table">
|
|
<table class="layui-table">
|
|
<colgroup>
|
|
<col width="150">
|
|
<col width="150">
|
|
<col width="150">
|
|
<col width="150">
|
|
<col width="150">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>姓名</th>
|
|
<th>身份证</th>
|
|
<th>照片</th>
|
|
<th>合同到期时间</th>
|
|
<th>居间人登记编号</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{hcTaglib:content cid="67" moduleId="1" limit="100" mainField="id,title,sub_title,description,thumbnail" subField="id,sub_title" sort="sort asc"}
|
|
<tr>
|
|
<td>{$vo.title}</td>
|
|
<td>{$vo.sub_title}</td>
|
|
<td><a href="javascript:;" data-id="{$vo.thumbnail.url|default=''}" class="pic-view">查看照片</a></td>
|
|
<td>{$vo.description}</td>
|
|
<td>{$vo.main_content.sub_title}</td>
|
|
</tr>
|
|
{/hcTaglib:content}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="messagePeopleImg">
|
|
<div class="content">
|
|
<div class="close"><img src="__TMPL__/static/images/close.png" alt=""></div>
|
|
<div class="cont">
|
|
<img src="" alt="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- footer start-->
|
|
{include file="common/footer" /}
|
|
<!-- footer end -->
|
|
<!-- 通用 -->
|
|
{include file="common/foot" /}
|
|
<!-- 当前 -->
|
|
<script>
|
|
$('.message-colla .tool').click(function(){
|
|
if($(this).parent().hasClass('active')){
|
|
$(this).parent().removeClass('active')
|
|
return
|
|
}
|
|
$(this).parent().addClass('active')
|
|
})
|
|
// 查看图片
|
|
$('.message-table .layui-table td a').click(function(){
|
|
let imgUrl = $(this).data('id')
|
|
$('.messagePeopleImg .content .cont img').attr('src',imgUrl)
|
|
$('.messagePeopleImg').stop().fadeIn()
|
|
})
|
|
$('.messagePeopleImg .content .close').click(function(){
|
|
$('.messagePeopleImg').stop().fadeOut()
|
|
setTimeout(function(){
|
|
$('.messagePeopleImg .content .cont img').attr('src','')
|
|
},300)
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|