|  | @@ -60,10 +60,8 @@ const { RangePicker } = DatePicker;
 | 
	
		
			
				|  |  |  function FileManagement(props) {
 | 
	
		
			
				|  |  |    const [form] = Form.useForm();
 | 
	
		
			
				|  |  |    const [modal, contextHolder] = Modal.useModal();
 | 
	
		
			
				|  |  | -  const {
 | 
	
		
			
				|  |  | -    initialState,
 | 
	
		
			
				|  |  | -  } = useModel('@@initialState');
 | 
	
		
			
				|  |  | -  const user = initialState?.user || {}
 | 
	
		
			
				|  |  | +  const { initialState } = useModel('@@initialState');
 | 
	
		
			
				|  |  | +  const user = initialState?.user || {};
 | 
	
		
			
				|  |  |    const { userList, run: userListRun } = useModel('userList');
 | 
	
		
			
				|  |  |    const [tableData, setTableData] = useState([]);
 | 
	
		
			
				|  |  |    const [visible, setVisible] = useState(false);
 | 
	
	
		
			
				|  | @@ -336,7 +334,7 @@ function FileManagement(props) {
 | 
	
		
			
				|  |  |      {
 | 
	
		
			
				|  |  |        title: '上传时间',
 | 
	
		
			
				|  |  |        align: 'center',
 | 
	
		
			
				|  |  | -      dataIndex: 'create_time',
 | 
	
		
			
				|  |  | +      dataIndex: 'created_on',
 | 
	
		
			
				|  |  |        render: (text) => dayjs(text).format('YYYY-MM-DD'),
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      {
 |