zoukankan      html  css  js  c++  java
  • vue elementui前端分页,无须请求获取数据

    <!-- 重要的是这段:
    shoppingCarList.slice((pageIndex-1)*pageSize,pageIndex*pageSize)
    -->
    <el-table :data="shoppingCarList.slice((pageIndex-1)*pageSize,pageIndex*pageSize)" class="zhihuDataListStyle" v-loading="isLoading"> <el-table-column label="关键词" min-width="150"> <template slot-scope="scope"> <span>{{ scope.row.keyword }}</span> <!-- <zhihu-title :maxLen="17" :title="scope.row.title" :url="scope.row.url"></zhihu-title> --> </template> </el-table-column> <el-table-column label="商品" min-width="200"> <template slot-scope="scope"> <labelhoverbtn :list="getTagList(scope.row.tags)"></labelhoverbtn> </template> </el-table-column> <el-table-column label="价格/佣金"> <template slot-scope="scope"> <rankpopper right_icon="chart-icon" speed="true" :dataid="scope.row.dataid" @showDialog="showHistoryDialog" :content="scope.row.read" :changeRanking="scope.row.read_c" :datetime="scope.row.dt"></rankpopper> </template> </el-table-column> <el-table-column label="编辑"> <template slot-scope="scope"> <span>删除</span> </template> </el-table-column> </el-table>
     <div slot="footer">
                    <div class="page" v-if="rowCount > 0">
                        <div>共找到:{{ rowCount }}条</div>
                        <!-- <el-pagination background layout="prev, pager, next,jumper" :total="getMaxTotalCount" :current-page="pageIndex" :page-size="pageSize" @current-change="getList" :hide-on-single-page="true" :pager-count="5">
                        </el-pagination> -->

                        <el-pagination background layout="prev, pager, next,jumper" :total="getMaxTotalCount" :current-page="pageIndex" :page-size="pageSize" @current-change="changePage" :hide-on-single-page="true" :pager-count="5">
                        </el-pagination>
                    </div>
                </div>
    交流扣扣:1328542512
  • 相关阅读:
    win7游戏窗口设置
    怎么在 html 中 动态的加载一个 script
    nodejs+express +jade模板引擎 新建项目
    将大数据利用 BCP 导出SqlServer数据到CSV
    产品经理如何赢得开发人员的尊重和支持?-摘自infoq
    Microsoft TFS 如何显示在Windows 的上下文菜单中
    使用PowerDesigner 设计SQL Server 数据库
    sqlserver 删掉日志文件ldf以后 救命语句
    SqlServer修改数据库文件及日志文件存放位置
    快速备份sqlserver2005以上版本数据库的方法-摘自网络
  • 原文地址:https://www.cnblogs.com/codeDevotee/p/14430653.html
Copyright © 2011-2022 走看看