【vue】 elementui 分页使用

前端开发 作者: 2024-08-26 02:00:01
vue文件: <!-- 分页 --> <div class="block" "position: fixed;bottom: 5px;&qu
vue文件:
        <!--    分页  -->
    <div class="block" style=position: fixed;bottom: 5px;">
      <el-pagination
        @size-change=handleSizeChange"
        @current-change=handleCurrentChange
        :current-page.sync=currentPage
        :page-size="10"
        layout=prev,pager,next,jumper
        :total=total>
      </el-pagination>
    </div>

vue 定义的变量:
export default {
    data() {
      return {

        currentPage: 1,page: 1,size: 10,total:1,watchGoodsArr: [],
      

        }],}
    },import {addedSuperviseGoods} from '@/api/searchWords' 导入 ajax请求封装方法

打开首页渲染方法:
    mounted() {
      addedSuperviseGoods(this.page,this.size).then(response => {    # ajax请求封装方法
        console.log(response.data)
        if (response.code === 200) {
          this.total = response.count
          return this.watchGoodsArr = response.data

        } else 10001this.$router.push('/login')
        }
      })
    }


element分页规定用法:
 // 分页
      handleSizeChange(val) {         每页几条


      },handleCurrentChange(val) {      //当前页
          this.page =  val
          this.size = 10;
          addedSuperviseGoods(this.page,this.size).then(response => {  # 点击请求页数返回数据渲染

            this.total = response.count
            this.watchGoodsArr = [];
            return this.watchGoodsArr = response.data
          })
      },
ajax文件请求封装函数

export const addedSuperviseGoods = (page,size) => ajax(BASE_URL+'/keyword/monitored/showgoods',{page,size},'GET')
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_68717.html