Vue backend management system implementation of paging function example

Vue backend management system implementation of paging function example

This article mainly introduces the implementation of the paging function of the Vue background management system, and shares it with you, as follows:

Effect picture:

Functional description:

  • Display the total number of data
  • You can choose the number of items to display per day
  • Click on the page number to jump to the specified page
  • Enter the page number to jump to the specified page

1. Function Implementation

1.1 Structure

        <!-- Pagination -->
        <el-pagination
          @size-change="handleSizeChange"
          @current-change="handleCurrentChange"
          :current-page="queryInfo.pagenum"
          :page-sizes="[2, 5, 10, 15]"
          :page-size="queryInfo.pagesize"
          layout="total, sizes, prev, pager, next, jumper"
          :total="total"
        >
        </el-pagination>

1.2 Logic

    data() {
      return {
        //Request parameter queryInfo: {
          type: 3,
          //Current page number pagenum: 1,
          //Specify the number of pages displayed pagesize: 5,
        },
        goodsList: [],
        //Total data total: 0,
      }
    }
 
  methods: {
      //Get product classification data async getGoodsCate() {
        const { data: res } = await this.$http.get("categories", {
          params: this.queryInfo,
        })
        if (res.meta.status !== 200) {
          this.$message.error("Failed to get parameters")
        }
        this.total = res.data.total
        this.goodsList = res.data.result
        //console.log(this.goodsList)
      },
      //Monitor the number of entries per page handleSizeChange(pagesize) {
        // console.log(`${val} items per page`)
        this.queryInfo.pagesize = pagesize
        this.getGoodsCate()
      },
      //Monitor the current page number handleCurrentChange(pageNum) {
        this.queryInfo.pagenum = pageNum
        this.getGoodsCate()
      },
    },

1.3 Parameter Description

1.4 Effect Demonstration

This is the end of this article about the Vue backend management system's implementation of the paging function example. For more relevant Vue paging content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue3 encapsulates its own paging component
  • Vue+Element realizes paging effect
  • Vue implements paging function
  • Vue project realizes paging effect
  • Vue+Element-U realizes paging display effect
  • vue+Element-ui front-end realizes paging effect

<<:  Detailed explanation of commonly used styles in CSS3 [Basic text and font styles]

>>:  How to point the target link of a tag to iframe

Recommend

Use overflow: hidden to disable page scrollbars

Copy code The code is as follows: html { overflow...

Detailed explanation of VUE Token's invalidation process

Table of contents Target Thought Analysis Code la...

How to install MySQL 5.7.17 and set the encoding to utf8 in Windows

download MySQL official download, select Windows ...

HTML meta viewport attribute description

What is a Viewport Mobile browsers place web page...

7 interesting ways to achieve hidden elements in CSS

Preface The similarities and differences between ...

JavaScript built-in date and time formatting time example code

1. Basic knowledge (methods of date objects) 😜 ge...

How to configure path alias for react scaffolding

The react version when writing this article is 16...

Let's talk about the issue of passing parameters to React onClick

Background In a list like the one below, clicking...

Understanding and application scenarios of enumeration types in TypeScript

Table of contents 1. What is 2. Use Numeric Enume...

Full analysis of web page elements

Relative Length Units em Description: Relative len...

Three Vue slots to solve parent-child component communication

Table of contents Preface Environment Preparation...

Implementation of Nginx+ModSecurity security module deployment

Table of contents 1. Download 2. Deployment 1.Ngi...

How to upload and download files between Linux server and Windows system

Background: Linux server file upload and download...