list.html 1.56 KB
<div id="basicTable_wrapper" class="dataTables_wrapper no-footer">
    <div class="dataTables_length" id="basicTable_length">
        <table id="basicTable" class="table table-striped table-bordered responsive dataTable no-footer" role="grid" aria-describedby="basicTable_info">
            <thead class="">
                <tr role="row">
                    <th>店铺ID</th>
                    <th>店铺名称</th>
                    <th>创建时间</th>
                    <th>更新时间</th>
                    <th>审核状态</th>
                    <th>操作</th>
                </tr>
            </thead>
            {{# date}}
                <tr role="row">
                    <td>{{ id}}</td>
                    <td>{{ name}}</td>
                    <td>{{ statrtime}}</td>
                    <td>{{ endtime}}</td>
                    <td>{{ type}}</td>
                    <td>
                        <a href="/supplier/store/info/{{ id}}" class="btn btn-info btn-xs">查看</a>
                        <a href="/supplier/store/update/{{ id}}"  class="btn btn-success btn-xs">编辑</a>
                        <button type="button" data-id='{{ id}}' class="btn btn-warning btn-xs">关店</button>
                        <button type="button" data-id='{{ id}}' class="btn btn-danger btn-xs">开店</button>
                    </td>
                </tr>
            {{/ date}}
             <tbody>
            </tbody>
        </table>
    </div>
    <nav>
        <ul id="pagination" class="pagination pagination-lg" data-page="{{pagination}}"></ul>
    </nav>
</div>