index.html 3.1 KB
<include file="public@header" />
</head>
<body>
<div class="wrap js-check-wrap">
	<ul class="nav nav-tabs">
		<li class="active"><a href="{:url('InsuranceCompany/index')}">保险公司列表</a></li>
		<li><a href="{:url('InsuranceCompany/add')}">添加保险公司</a></li>
	</ul>
	<form class="well form-inline margin-top-20" method="post" action="{:url('InsuranceCompany/index')}">
		保险公司:
		<input type="text" class="form-control" name="keyword" style="width: 150px;" value="{$keyword|default=''}" placeholder="请输入保险公司...">
		<input type="submit" class="btn btn-primary" value="搜索" />
		<a class="btn btn-danger" href="{:url('InsuranceCompany/index')}">清空</a>
	</form>
	<form class="js-ajax-form" action="" method="post">
		<table class="table table-hover table-bordered">
			<div class="table-actions">
				<button class="btn btn-danger btn-sm js-ajax-submit" type="submit"
						data-action="{:url('InsuranceCompany/delete')}" data-subcheck="true" data-msg="您确定删除吗?">
					{:lang('DELETE')}
				</button>
			</div>
			<thead>
			<tr>
				<th width="15">
					<label>
						<input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
					</label>
				</th>
				<th width="20">ID</th>
				<th width="20">缩略图</th>
				<th width="50">保险公司</th>
				<th width="30">创建时间</th>
				<th width="30">更新时间</th>
				<th width="100">操作</th>
			</tr>
			</thead>
			<tbody>
			<foreach name="data" item="vo">
				<tr>
					<td>
						<input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]"
							   value="{$vo.id}" title="ID:{$vo.id}">
					</td>
					<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>{$vo.insurance_company_name}</td>
					<td>{:date('Y-m-d H:i:s',$vo['create_time'])}</td>
					<td>{:date('Y-m-d H:i:s',$vo['update_time'])}</td>
					<td>
						<a href='{:url("InsuranceCompany/edit",array("id"=>$vo["id"]))}'>编辑</a>|
						<a class="js-ajax-delete" href="{:url('InsuranceCompany/delete',array('id'=>$vo['id']))}">{:lang('DELETE')}</a>
					</td>
				</tr>
			</foreach>
			</tbody>
			<tfoot>
			<tr>
				<th width="15">
					<label>
						<input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
					</label>
				</th>
				<th width="20">ID</th>
				<th width="20">缩略图</th>
				<th width="50">保险公司</th>
				<th width="30">创建时间</th>
				<th width="30">更新时间</th>
				<th width="100">操作</th>
			</tr>
			</tfoot>
		</table>
		<div class="table-actions">
			<button class="btn btn-danger btn-sm js-ajax-submit" type="submit"
					data-action="{:url('InsuranceCompany/delete')}" data-subcheck="true" data-msg="您确定删除吗?">
				{:lang('DELETE')}
			</button>
		</div>
		<div class="pagination">{$page}</div>
	</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>