24 lines
619 B
JavaScript
24 lines
619 B
JavaScript
//表格选择器配置
|
|
|
|
export default {
|
|
pageSize: 20, //表格每一页条数
|
|
parseData: function (res) {
|
|
return {
|
|
data: res,
|
|
rows: res.results, //分析行数据字段结构
|
|
total: res.count, //分析总数字段结构
|
|
// msg: res.message, //分析描述字段结构
|
|
// code: res.code //分析状态字段结构
|
|
}
|
|
},
|
|
request: {
|
|
page: 'page', //规定当前分页字段
|
|
pageSize: 'page_size', //规定一页条数字段
|
|
keyword: 'search' //规定搜索字段
|
|
},
|
|
props: {
|
|
label: 'name', //映射label显示字段
|
|
value: 'id', //映射value值字段
|
|
}
|
|
}
|