ExportAndDetail.js 467 Bytes
Newer Older
钟是志's avatar
钟是志 committed
1 2 3 4 5 6 7 8 9
import React from 'react';
import List from './index';
import GetIdByPath from './GetIdByPath';

const ExportAndDetail = (props) => {
  const Authority = {
    add: false, // 新增
    delete: false, // 删除
    detail: true, // 详情
10
    auditDetail: true, // 审核详情
钟是志's avatar
钟是志 committed
11 12 13 14 15 16 17 18 19
    exportUtil: true, // 导出
    importUtil: false, // 导入
  };
  return <GetIdByPath {...props}
                      Authority={Authority}
  />;
};

export default ExportAndDetail;