factory_web/src/config/table.js

18 lines
491 B
JavaScript

//数据表格配置
export default {
pageSize: 20, //表格每一页条数
parseData: function (res) { //数据分析
return {
rows: res.data, //分析行数据字段结构
total: res.count, //分析总数字段结构
msg: res.message, //分析描述字段结构
code: res.code //分析状态字段结构
}
},
request: { //请求规定字段
page: 'page', //规定当前分页字段
pageSize: 'pageSize' //规定一页条数字段
}
}