details.html 2.73 KB
<div class="page-head">
	<div class="page-title">
		<h1>线路详细信息</h1>
	</div>
</div>

<ul class="page-breadcrumb breadcrumb">
	<li><a href="/pages/home.html" data-pjax>首页</a> <i class="fa fa-circle"></i></li>
	<li><span class="active">基础信息</span> <i class="fa fa-circle"></i></li>
	<li><a href="/pages/base/line/list.html" data-pjax>线路信息</a> <i class="fa fa-circle"></i></li>
	<li><span class="active">线路详情</span></li>
</ul>

<div class="row">
	<div class="col-md-12">
		<div class="portlet light porttlet-fit bordered">
			<div class="portlet-title">
				<div class="caption">
					 <i class="fa fa-info-circle font-dark"></i> 
					 <span class="caption-subject font-dark sbold uppercase">线路详情</span>
				</div>
				<div class="actions">
					<div class="btn-group btn-group-devided" data-toggle="buttons">
						<a class="btn btn-circle blue" href="list.html" data-pjax><i class="fa fa-reply"></i> 返回</a>
					</div>
				</div>
			</div>
			<div class="portlet-body">
				<div class="table-container" style="margin-top: 10px">
					<table class="table table-striped table-bordered table-hover table-checkable" id="line_details">
						<thead>
							<tr role="row" class="heading">
								<th width="8%">线路编码</th>
								<th width="8%">线路名称</th>
								<th width="10%">英文名称</th>
								<th width="10%">线路简称</th>
								<th width="10%">所属公司</th>
								<th width="10%">所属分公司</th>
								<th width="10%">线路性质</th>
								<th width="10%">线路等级</th>
								<th width="10%">是否撤消</th>
								<th width="10%">是否夜宵线</th>
								<th width="10%">起始站调度电话</th>
								<th width="10%">终点站调度电话</th>
								<th width="10%">开辟日期</th>
								<th width="10%">线路沿革</th>
							</tr>
						</thead>
						<tbody></tbody>
					</table>
					<div style="text-align: right;">
						<ul id="pagination" class="pagination"></ul>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>
<script type="text/html" id="line_details_temp">
{{each list as obj i }}
<tr>
	<td>
		{{obj.lineCode}}
	</td>
	<td>
		{{obj.name}}
	</td>
	<td>
		{{obj.es}}
	</td>
	<td>
		{{obj.shortName}}
	</td>
	<td>
		{{obj.company}}
	</td>
	<td>
		{{obj.brancheCompany}}
	</td>
	<td>
		{{obj.nature}}
	</td>
	<td>
		{{obj.level}}
	</td>
	<td>
		{{obj.destroy}}
	</td>
	<td>
		{{obj.supperLine}}
	</td>
	<td>
		{{obj.startPhone}}
	</td>
	<td>
		{{obj.endPhone}}
	</td>
	<td>
		{{obj.openDate}}
	</td>
	<td>
		{{obj.history}}
	</td>
</tr>
{{/each}}
</script>
<script type="text/javascript" src="/pages/base/line/js/line-details-info.js"></script>