shLineCodeList.html 1.86 KB
<link href="css/trafficManage.css" rel="stylesheet" type="text/css" />
<link href="css/autocompleter.css" rel="stylesheet" type="text/css" />
<ul class="page-breadcrumb breadcrumb">
	<li><a href="/pages/home.html" data-pjax>Home page</a> <i
		class="fa fa-circle"></i></li>
	<li><span class="active">Transportation management office</span> <i class="fa fa-circle"></i></li>
	<li><span class="active">Shanghai standard line code query</span></li>
</ul>
<div class="tab_line">
	<div class="col-md-12">
		<ul class="breadcrumb">
			<li>Line name:</li>
			<li><input type="text" class="form-control form-filter input-sm"
				name="name_like" placeholder="Enter Line name" maxlength="40" /></li>
			<li><a class="btn btn-circle blue" id="search">查询</a></li>
		</ul>
	</div>
	<div class="col-md-12 panel-wrap">
		<div class="_panel">
			<div class="table-container">
				<table
					class="table table-striped table-bordered table-advance pb-table head">
					<thead>
						<tr>
							<th width="5%">Serial number</th>
							<th width="20%">Line name</th>
							<th width="15%">Company</th>
							<th width="25%">调度方式</th>
							<th>Shanghai line code</th>
						</tr>
					</thead>
					<tbody>
					</tbody>
				</table>
				<div style="text-align: right;">
					<ul id="pagination" class="pagination"></ul>
				</div>
			</div>
		</div>
	</div>
</div>
<script id="shLineCode_list_temp" type="text/html">
{{each list as obj i}}
<tr>
	<td class="seq" style="vertical-align: middle;">
		{{i+1}}
	</td>
	<td>
		{{obj.name}}
	</td>
	<td class="ttInfoId">
		{{obj.company}}
	</td>
	<td>
		
	</td>
	<td >
		{{obj.shanghaiLinecode}}
	</td>
</tr>
{{/each}}
{{if list.length == 0}}
<tr class="muted">
	<td colspan=5 style="text-align: center;"><h6>No data</h6></td>
</tr>
{{/if}}
	</script>
<script src="./js/shLineCodeList.js"></script>