index.html 2.0 KB
<include file="public@header" />
</head>
<body>
<div class="wrap js-check-wrap">
	<ul class="nav nav-tabs">
		<li class="active"><a href="{:url('about/index')}">关于我们</a></li>
	</ul>
	<form class="js-ajax-form" action="" method="post">
		<table class="table table-hover table-bordered">
			<div class="table-actions">
				<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
						<!--data-action="{:url('Appraise/sort')}">{:lang('SORT')}-->
				<!--</button>-->
				<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
						<!--data-action="{:url('Appraise/publish',array('yes'=>1))}" data-subcheck="true">发布-->
				<!--</button>-->
				<!--<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"-->
						<!--data-action="{:url('Appraise/publish',array('no'=>1))}" data-subcheck="true">取消发布-->
				<!--</button>-->
				<!--<button class="btn btn-danger btn-sm js-ajax-submit"-->
						<!--data-action="{:url('Logistics/delete')}" data-subcheck="true" data-msg="你确定删除吗?">-->
					<!--{:lang('DELETE')}-->
				<!--</button>-->
			</div>
			<thead>
			<tr>
				<!--<th width="20">ID</th>-->
				<th width="20">缩略图</th>
				<th width="50">页面内容</th>
				<th width="30">更新时间</th>
				<th width="30">操作</th>
			</tr>
			</thead>
			<tbody>
			<foreach name="data" item="vo">
				<tr>
					<!--<td>{$vo.id}</td>-->
					<td>
						<notempty name="$vo.thumbnail">
							<a href="javascript:parent.imagePreviewDialog('{:cmf_get_image_preview_url($vo.thumbnail)}');">
								<i class="fa fa-photo fa-fw"></i>
							</a>
						</notempty>
					</td>
					<td>{:cmf_replace_content_file_url(htmlspecialchars_decode($vo.content))}</td>
					<td>{:date('Y-m-d H:i:s',$vo['update_time'])}</td>
					<td>
						<a href='{:url("about/edit",array("id"=>$vo["id"]))}'>{:lang('EDIT')}</a>
					</td>
				</tr>
			</foreach>
			</tbody>
		</table>
		<div class="pagination">{$page|default=''}</div>
	</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>