EOS Low-Code Platform 8 EOS Low-Code Platform 8
产品简介
安装部署
应用开发
专题场景实战案例
低代码(Low-Code)开发参考手册
高开开发参考手册
流程开发参考手册
AFCenter 使用指南
Governor 使用指南
升级手册
FAQ
8.3.2更新说明
  • PmPagination
  • 基础用法
  • Attributes

# PmPagination

继承自 el-pagination (opens new window), 提供了默认设置

# 基础用法

image-20241224143759971

基础用法

<template>
  <pm-pagination :total="100" >
  </pm-pagination>  
</template>
<script>
export default {
  data() {
    return {
      data: [
        {
          name: 'zzr'
        }
      ],
      addAttrs: {
        name: 'zzr'
      }
    }
  }
}
</script>
显示代码 复制代码 复制代码

# Attributes

参数 说明 类型 可选值 默认值
pageSizes 分页信息 array - [10, 20, 30, 40, 50, 100, 200, 300, 400, 500, 1000]
pageSize 默认每页多少条数据 number - 10
layout 布局 string - 'slot,total, prev, pager, next, sizes,jumper'

← table 表格 tree 树形 →