pageSetting.js 388 Bytes 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 11 const pageSetting = { type: 'list', // 页面类型 list列表 可能包含有其他类型的 比如 detail 详情 add 新增 update 更新 等等 .... listConfig: { selectRows: true, // 是否可以行选择, paging: false, // 是否可以分页, searchArea: true, // 是否拥有 搜索区dom, buttonArea: true, // 是否拥有 按钮区, }, }; export default pageSetting;