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
  • 相关阅读:
    运算符重载
    LPCRITICAL_SECTION 函数
    让你弄明白高斯核是怎样进行滤波工作的
    sln文件
    内联函数
    C++对文本的操作
    数组形参
    内存区划分、内存分配、常量存储区、堆、栈、自由存储区、全局区[C++][内存管理]
    怎样对付win7黑屏
    C++ 模板
  • 原文地址:https://www.cnblogs.com/codeDevotee/p/14430653.html
Copyright © 2011-2022 走看看