|
@@ -28,7 +28,7 @@ import {
|
|
|
} from '../../services/file';
|
|
|
import { queryGetContractList } from '../../services/contract';
|
|
|
import { downloadFile, getToken } from '@/utils/utils';
|
|
|
-import { PlusOutlined } from '@ant-design/icons';
|
|
|
+import { PlusCircleOutlined } from '@ant-design/icons';
|
|
|
import AddFileModal from './components/model';
|
|
|
import PerModal from './components/PreModal';
|
|
|
import { queryAuditList, createAduit } from '@/services/boom';
|
|
@@ -336,14 +336,18 @@ function FileManagement(props) {
|
|
|
return item.dir_name == '部门文件' ? (
|
|
|
<Space>
|
|
|
<span>{item.dir_name}</span>
|
|
|
- <Button
|
|
|
+ <PlusCircleOutlined style={{fontSize:'16px'}} onClick={() => {
|
|
|
+ setNode(item);
|
|
|
+ setVisible(true);
|
|
|
+ }}/>
|
|
|
+ {/* <Button
|
|
|
shape="circle"
|
|
|
icon={<PlusOutlined style={{fontSize:'16px'}} />}
|
|
|
onClick={() => {
|
|
|
setNode(item);
|
|
|
setVisible(true);
|
|
|
}}
|
|
|
- />
|
|
|
+ /> */}
|
|
|
</Space>
|
|
|
) : (
|
|
|
<span>{item.dir_name}</span>
|