标签:rev isa 点击 tab UNC 优秀 template ima 毕业
<div style="padding:20px;" id="app">
<div class="panel panel-primary">
<div class="panel-heading">用户管理</div>
<table class="table table-bordered table-striped text-center">
<thead>
<tr>
<th>用户名</th>
<th>年龄</th>
<th>毕业学校</th>
<th>备注</th>
</tr>
</thead>
<tbody>
<template v-for="(row, index) in rows ">
<tr v-if="index>=(curpage-1)*pagesize&&index<curpage*pagesize">
<td>{{row.Name}}</td>
<td>{{row.Age}}</td>
<td>{{row.School}}</td>
<td>{{row.Remark}}</td>
</tr>
</template>
</tbody>
</table>
</div>
<nav style="float:right;">
<ul class="pagination pagination-lg">
<template v-for="page in Math.ceil(rows.length/pagesize)">
<li v-on:click="PrePage()" id="prepage" v-if="page==1" class="disabled"><a class="numpage"><</a></li>
<li v-if="page==1" class="active" v-on:click="NumPage(page, $event)"><a>{{page}}</a></li>
<li v-else v-on:click="NumPage(page, $event)"><a>{{page}}</a></li>
<li id="nextpage" v-on:click="NextPage()" v-if="page==Math.ceil(rows.length/pagesize)"><a class="numpage">></a></li>
</template>
</ul>
</nav>
</div>
<script>
data:function () {
return{
rows: [
{ Id: 1, Name: ‘小明‘, Age: 18, School: ‘光明小学‘, Remark: ‘三好学生‘ },
{ Id: 2, Name: ‘小刚‘, Age: 20, School: ‘复兴中学‘, Remark: ‘优秀班干部‘ },
{ Id: 3, Name: ‘吉姆格林‘, Age: 19, School: ‘光明小学‘, Remark: ‘吉姆做了汽车公司经理‘ },
{ Id: 4, Name: ‘李雷‘, Age: 25, School: ‘复兴中学‘, Remark: ‘不老实的家伙‘ },
{ Id: 5, Name: ‘韩梅梅‘, Age: 22, School: ‘光明小学‘, Remark: ‘在一起‘ },
{ Id: 6, Name: ‘韩梅梅‘, Age: 22, School: ‘光明小学‘, Remark: ‘在一起‘ },