1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| //表格选择器配置
|
| export default {
| pageSize: 20, //表格每一页条数
| parseData: function (res) {
| return {
| data: res.data,
| rows: res.data.rows, //分析行数据字段结构
| total: res.data.total, //分析总数字段结构
| msg: res.message, //分析描述字段结构
| code: res.code //分析状态字段结构
| }
| },
| request: {
| page: 'page', //规定当前分页字段
| pageSize: 'pageSize', //规定一页条数字段
| keyword: 'keyword' //规定搜索字段
| },
| props: {
| label: 'label', //映射label显示字段
| value: 'value', //映射value值字段
| }
| }
|
|