重置和搜索按钮的共同事件写法

文章介绍了如何在Vue.js应用中将重置和搜索功能整合到一起,通过点击事件传递参数,当参数为reset时清空输入并调用查询接口,否则执行正常搜索操作。handleSearch函数处理这两种情况,getTableList函数用于获取列表数据。

前言  

以前在书写重置按钮时候都是额外书写一个点击事件,清空输入框中的数据再进行搜索

为了简洁才想起来 为什么两个事件不写在一起呢

 <el-button @click="handleSearch('reset')">重置</el-button>
            <el-button
              type="primary"
              icon="el-icon-search"
              @click="handleSearch()"
              >查询</el-button>

将查询数据接口单独写出一个方法  当传入数据为reset时候 请求携带参数全部为undefined,再重新调用搜索数据接口

 /**
     * @func 搜索/重置
     * @param {String} type
     */
    handleSearch(type) {
      if (type === 'reset') {
        this.reqData = {
          agent_id: undefined,
          agent_name_like: undefined,
          batch_no: undefined,
          start_date: undefined,
          end_date: undefined,
          status: undefined,
          page: 1,
          limit: 10
        }
        this.time = ''
      }
      this.reqData.page = 1
      this.getTableList()
    },
    /**
     * @func 获取列表数据
     * @param {Object} reqData
     */
    getTableList() {
      queryBatchList(this.reqData).then(res => {
        this.total = res.total
        this.tableData = res.list
      })
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值