vue-element-admin 封装分页组件

第一步 把需要封装的代码写入组件 pagination.vue

<template>
  <el-pagination
    style="position: fixed;bottom: 0;margin-bottom: 15px"
    background
    layout="prev, pager, next"
    :page-size="pageSize"
    :current-page="currentPage"
    @current-change="handleCurrentChange"
    :total="totalPage">
  </el-pagination>
</template>

<script>
  export default {
    name: "pagination",
    props: ['input_data', 'output_data'],
    data() {
      return {
        pageSize: 1,
        currentPage: 1,
        totalPage: 1,
        data: []
      }
    },
    //监听input_data input_data 发生改变及时改变分页
    watch: {
      input_data: {
        handler(newVal) {
          console.log(newVal);
          this.data = newVal;
          this.currentPage = 1;
          this.changePage(this.data);
        }
      }
    },
    methods: {
      //点击分页
      handleCurrentChange(currentPage) {
        this.currentPage = currentPage;
        this.changePage(this.data);
      },
      //重置分页数据
      changePage(data) {
        let start = (this.currentPage - 1) * this.pageSize;
        let end = this.currentPage * this.pageSize;
        this.$emit('update:output_data', data.slice(start, end)); //子组件可以使用  this.$emit('update:output_data', data) 更新父组件的数据
        this.totalPage = data.length;
      }
    }
  }
</script>

第二步 在父组件中引入

<template>
  <div class="app-container">
    <el-table :data="tableDataOut" style="width: 100%">
      <el-table-column type="index" label="#" width="180"></el-table-column>
      <el-table-column prop="user_name" label="用户名" width="180"></el-table-column>
      <el-table-column prop="user_mobile" label="手机" width="180"></el-table-column>
      <el-table-column prop="wechat_id" label="微信" width="180"></el-table-column>
    </el-table>

//子组件标签使用
    <Pagination :input_data.sync="tableDataIn" :output_data.sync="tableDataOut"></Pagination>
  </div>
</template>

<script>
  import {getUserInfoList} from '@/api/user_info'
  import Pagination from '@/views/components/pagination' //导入子组件
  export default {
    name:"user_info",
    components:{Pagination},
    inject:['reload'],
    data() {
      return {
        tableDataIn: [], //数据列表
        tableDataOut: [], //数据列表
        totalCount:'', //数据总数
      }
    },
    methods:{
      getUserInfoList(){
        getUserInfoList().then(res=>{
            if(res.code == 200){
              this.tableDataIn = res.data;
              this.totalCount = res.total_count;
            }else{
              this.$message.error('数据请求失败,请刷新后重试!!!');
            }
        })
      }
    },
    mounted(){
      this.getUserInfoList();
    }
  }
</script>

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值