<div class="layui-form" id="Ci">
<table class="layui-table" id="Sinformation">
<colgroup>
<col width="auto">
<col width="auto">
<col width="auto">
<col width="auto">
<col width="auto">
<col width="auto">
<col width="auto">
<col width="auto">
</colgroup>
<thead>
<tr >
<th>线路名称</th>
<th>车站名称</th>
<th>下一站名称</th>
<th>换乘线路</th>
</tr>
</thead>
<tbody>
<tr v-for="site in itemss">
<td> {{ site.xname }}</td>
<td> {{ site.zname}}</td>
<td> {{ site.next }}</td>
<td> {{ site.changestop }}</td>
</tr>
</tbody>
</table>
</div>
<script>
function SInformation(){
var start=$("#start").val();
var end=$("#end").val();
var tableVue = new Vue({
el:"#Sinformation",
data:{
itemss:[]
}
});