element页码在table表格中的使用

Dom部分 

1、表单绑定 policeForm

<el-form ref="policeForm" :model="policeForm" style="display: flex;">  </el-form>

2、通过绑定的policeForm来同步页数,后期保证搜索的实现 

<pagination v-show="total > 0" :total="total" :page.sync="policeForm.pageNum" :limit.sync="policeForm.pageSize" @pagination="handlePolice" />

js部分

return中 定义变量

      policeForm: {

        pageNum: 1,

        pageSize: 10,

        name: null,       

      },

methods方法中接口中传入参数  例如:handlePolice 为点击事件

    handlePolice() {

      soundList(this.policeForm).then(response => {

        this.policeList = response.rows  //table列表赋值

        this.total = response.total; // 列表条目数

        this.policeOpen = true  //弹窗显示参数

        this.title = '报警信息查询'

      })

    },

 /** 报警信息搜索按钮操作 */

    handleQuery() {

      this.loading = true;

      this.policeForm.pageNum = 1;

      this.loading = false;

      this.handlePolice();

    },

    /** 报警信息重置按钮操作 */

    resetQuery() {

      this.reset();

      this.handleQuery();

    },

APi中搜索接口的写法

// 获取报警信息请求
export function soundList(query) {
  return request({
    url: '/system/sound/list',
    method: 'get',
    params: query
  })
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值