# Props
# 布局类
# height
- type: [String, Number]
- default: null
优先级最高,设置整体布局高度,包含顶部标题栏、搜索栏、正文区域、页码区域所有内容的高度,支持百分比。
# fullHeight
- type: Boolean
- default: true
垂直高度是否铺满屏幕高度。
# headerTitle
- type: String
- default: ''
设置页面顶部通栏内的页面标题文本。
# headerNav
- type: Array
- default: []
设置页面顶部通栏内的面包屑,子项可为字符串或 object , object 支持属性有:
| 参数 | 说明 | 
|---|---|
| text | 显示文字 | 
| to | 可选,路由跳转对象,同 vue-router 的 to | 
# contentMessage
- type: [Object, String]
- default: {}
可用在 autoload 为 false 时候,初始显示的提示信息。
如果为 String 类型则不带图标只显示文本。如果为 Object 类型则支持格式为 { type: '', text: '' } ,其中 type 支持 warning , info , error 。
# 搜索栏
# filterButtons
- type: Array
- default: []
搜索栏左侧按钮配置,具体可查看 Prop filterButtons 。
# filterFields
- type: Array
- default: []
搜索栏搜索字段配置,具体可查看 Prop filterFields 。
# filterModel
- type: Object
- default: {}
可选,存储搜索栏的搜索条件值。如果有需要跟随请求直接发送的数据也可在此设置,以实现类似“隐藏域”的提交效果。
有效值过滤
注意,提交时只会对内部有效值进行提交,会过滤掉以下内容的参数值: '' , null , undefined , [] , {} 。
# searchButton
- type: Object|Boolean
- default: { text: '搜索', icon: 'el-icon-search', type: 'primary' }
搜索按钮自定义配置,除 text 属性为按钮文字外,支持所有 <el-button> props 。
传入 false 则不显示搜索栏的“提交”按钮。
# resetButton
- type: Object
- default: { text: '重置', icon: '', type: 'default' }
重置按钮自定义配置,除 text 属性为按钮文字外,支持所有 <el-button> props 。
传入 false 则不显示搜索栏的“重置”按钮。
# filterbarFold
- type: Boolean
- default: true
搜索栏默认是否折叠。
# filterbarFoldable
- type: Boolean
- default: true
是否开启搜索栏折叠收起功能。
# 内容区域/表格
# tableColumns
- type: Array
- default: []
表格列配置,具体可查看 Prop tableColumns。
# tableSelectionColumn
- type: Boolean|String|Object
- default: true
是否开启表格行选择功能。传入 'single' 为表格单选效果。如果需要禁用部分行的可选状态,可传入 selectable 属性:
{
  tableSelectionColumn: {
    // 不传该属性默认为多选
    type: 'single',
    // 用法与 <el-table-column /> 的 selectable 一致,返回 false 表示当行不可选择
    selectable(row, index) {
      return index % 2 === 0
    }
  }
}
2
3
4
5
6
7
8
9
10
11
# selection
- type: Array
- default: []
表格行选择的选中数据。可通过 .sync 修饰符获取更新:
<listview :selection.sync="selection" />
# contentProps
- type: Object
- default: {}
可传入 Element-UI table#table-attributes (opens new window) 的所有属性。
内部通过 v-bind 传递给 <el-table> 元素。
# contentEvents
- type: Object
- default: {}
可传入 Element-UI table#table-events (opens new window) 的所有支持事件。
内部通过 v-on 绑定给 <el-table> 元素。
# 分页
# usePage
- type: Boolean | Object
- default: true|{ pageIndex: 'page_index', pageSize: 'page_size' }
是否开启底部分页功能,传入 Boolean 类型,则表示功能开启与否,开启后在请求时参数上除了包含搜索栏内的数据,还会自动附加上 page_index 和 page_size 2 个参数。
如果接口的分页参数与默认的不一致,可以通过传入 Object 类型,指定 pageIndex 和 pageSize 2 个 key 名,相应的分页参数值会以配置好的 key 名发送。
# pageSize
- type: Number
- default: 20
默认每页分页数量。
# pageSizes
- type: Array
- default: [20, 50, 100]
分页“每页数量”可选值。
# pagePosition
- type: String
- default: -
- 可选值: right
设置页码位置,传入 right 可让页码显示于底部右侧。注意 slot footer-right 会覆盖出现于底部右侧的页码。
# pageProps
- type: Object
- default: {}
除了 total 和 currentPage 之外的所有 <el-pagination> 支持的 Props (opens new window) 。
# 数据请求
# autoload
- type: Boolean
- default: true
初始化后是否自动加载第一页内容。
# requestUrl
- type: String
- default: ''
数据请求接口地址。
# requestMethod
- type: String
- default: post
支持 Axios 支持的方法: get, delete, head, options, post, put, patch 。
# requestConfig
- type: Object
- default: {}
兼容 Axios 的所有 requestConfig (opens new window) 配置,除了 cancelToken 。
# contentDataMap
- type: Object
- default: { items: 'result.items', total: 'result.total' }
数据接口响应内容属性映射。可以直接配置各属性相对于接口响应数据的取值路径来直接映射返回值。默认会有表格视图所需的 2 个属性映射 items (表格数据) 和 total 用于分页组件。
在发起请求并判断接口获取成功(validateResponse 方法验证通过)后:
- 【默认表格样式】会分别在表格数据和分页组件使用 items和total2 个属性。- <el-table :data="contentData.items" />
- <el-pagination :total="contentData.total" />
 
- 【自定义 slot 】数据挂载在 slot-scope 的 content-data属性上。
- 如果 contentDataMap设置为null,则不进行映射处理,直接返回接口响应数据。
例如:有接口响应为
{
  is_success: true,
  errorInfos: null,
  result: {
    items: [1, 2, 3],
    total: 20
  }
}
2
3
4
5
6
7
8
通过映射表配置
{
  items: 'result.items',
  total: 'result.total',
  errorInfos: 'errorInfos'
}
2
3
4
5
可得到:
{
  items: [1, 2, 3],
  total: 20,
  errorInfos: null
}
2
3
4
5
# 错误处理
# validateResponse
- type: Function
- default: null
验证接口响应是否成功。若接口响应格式字段有差异,可修改该配置。
例:
function (response) {
  try {
    return response.is_success
  } catch (e) {
    return false
  }
}
2
3
4
5
6
7
# resolveResponseErrorMessage
- type: (res) => string
- default: null
在 validateResponse 返回 false 标识请求失败后,会调用 resolveResponseErrorMessage 解析错误提示信息。
- 【默认表格样式】错误信息会出现在表格内容区域内
- 【自定义 slot 】数据挂载在 slot-scope 的 content-message属性上。
例:
function (response) {
  try {
    return response.error_info.msg
  } catch (e) {
    return '未知错误'
  }
}
2
3
4
5
6
7
# 数据请求 - 高级配置
如果对于数据接口请求在发送前、接受后有特殊的处理流程,或者接口数据格式与规范不一致,可通过以下几个 props 对数据进行加工处理。
# requestHandler
- type: (requestData) => Promise<data> | data
- default: null
自定义请求方法,需要返回 Promise ,该方法优先级最高。若设置了 validateResponse 方法,亦会以返回的内容进行验证流程。
# transformRequestData
- type: (requestData) => requestData
- default: null
该方法可对接口发起请求参数在发送前作最后的更改,方法最终 return 的数据会作为提交参数。参数 requestData 包含搜索栏的所有数据,如果有开启分页还会包含 page_index 和 page_size 。
如果该方法显式的返回 false 则会阻止提交,可用于发起请求前进行参数验证等。
# transformResponseData
- type: (responseData) => responseData
- default: null
对原始响应数据的加工方法,接收原始响应数据,方法处理后 return 的返回值会交由给 contentDataMap 进行映射。
一般用于接口响应的数据无法简单一次映射到需要的数据(如需要根据其他条件重组、聚合)时,亦可使用该配置项对数据进行加工再返回。