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.
88 lines
3.0 KiB
88 lines
3.0 KiB
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html class="ie ie8"> <![endif]-->
|
|
<!--[if IE 9]> <html class="ie ie9"> <![endif]-->
|
|
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>专家评审 {$site_name} </title>
|
|
<meta name="keywords" content="{$menu.menu_seo_key|default=$site_seo_keywords}" />
|
|
<meta name="description" content="{$menu.menu_seo_des|default=$site_seo_description}">
|
|
{include file="public:head" /}
|
|
</head>
|
|
<body class="body-white">
|
|
<div class="wrap">
|
|
{include file="public:nav" /}
|
|
<div id="main-cmf">
|
|
<div class="breadcrumb-wrapper">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-6">
|
|
<h2 class="title">{:lang('personal center')}</h2>
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-6">
|
|
<div class="breadcrumbs pull-right">
|
|
<ul>
|
|
<li>{:lang('current location')}:</li>
|
|
<li><a href="__ROOT__/">{:lang('home')}</a></li>
|
|
<li><a href="{:url('home/Center/index')}">{:lang('personal center')}</a></li>
|
|
<li>专家评审</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-12">
|
|
{include file="public:usernav"/}
|
|
</div>
|
|
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-12">
|
|
<div id="center-content">
|
|
<div class="col-xs-12 h2_title">
|
|
<h2>专家评审</h2>
|
|
</div>
|
|
<div class="row">
|
|
<table class="table table-bordered table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>登记挂牌类型</th>
|
|
<th>登记挂牌名称</th>
|
|
<th>登记挂牌状态</th>
|
|
<th>待操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach name="lists" item="vo" key="k"}
|
|
<tr>
|
|
<td>{$k+1}</td>
|
|
{switch name="vo.apply_type"}
|
|
{case value="2"}<td>{if condition="$vo['k_type'] eq 1"}项目挂牌{else/}非国有类{/if}</td><td>{$vo.p_name}</td>{/case}
|
|
{case value="3"}<td>{if condition="$vo['k_type'] eq 1"}人才挂牌{else/}其他{/if}</td><td>{$vo.t_apply_username}</td>{/case}
|
|
{default /}<td>{if condition="$vo['k_type'] eq 1"}企业挂牌{else/}国有类{/if}</td><td>{$vo.c_name}</td>
|
|
{/switch}
|
|
<td>{$vo.descr}</td>
|
|
<td>
|
|
<a class="editcheck btn btn-danger" href="{:url('home/Listn/gp_procheck',['apply_id'=>$vo.apply_id])}">专家评审</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
<tr>
|
|
<td colspan="12" align="right">{$page}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include file="public:footer"/}
|
|
{include file="public:scripts"/}
|
|
</body>
|
|
</html>
|