ExportAndImportAndDetail.js 540 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
/***
 * 钟是志 权限配置
 * 2020年5月8日 16:57:11
 * 这个只需要 新增 删除 详情 导入 导出 编辑
 * */
import React from 'react';
import GetIdByPath from './GetIdByPath';

const ExportAndImportAndDetail = (props) => {
10 11 12 13 14 15 16 17 18
	const Authority = {
		add: true, // 新增
		delete: true, // 删除
		edit: true, // 编辑
		auditDetail: false, // 审核详情
		exportUtil: true, // 导出
		importUtil: true, // 导入
	};
	return <GetIdByPath {...props} Authority={Authority} />;
19 20
};

21
export default ExportAndImportAndDetail;