2024.4.3

<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:[]
                    }
                });
posted @ 2024-04-03 21:22  Verneyyx  阅读(13)  评论(0)    收藏  举报