Ant Design Vue1.7.8分页a-table分页pagination

1. html页面

 :pagination="{ ...pagination, current }"

@change="handlePageChange"

2.列表数据

   /**抖音下单默认旅行社列表 */

    getAgents () {

      getAgentsData({ page: this.current }).then(res => {

        this.travelAgencyList=res.data.list

        this.travelAgency=res.data

      })

    },

3.分页切换

    /**分页 */

    handlePageChange ({ current }) {

      this.current=current

      this.getAgents()

    },

Ant Design Vue1.7.8分页a-table分页pagination_第1张图片

 代码示例: