import React,{ Component } from "react"; import { Modal,Checkbox,Select,Input} from "antd"; import axios from'axios'; import Modals from '../../modals/Modals'; const Option = Select.Option; const Search = Input.Search; function formatDate(date) { var dateee = new Date(date).toJSON(); return new Date(+new Date(dateee) + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace(/\.[\d]{3}Z/, '') } class Showoldfiles extends Component{ constructor(props){ super(props); this.state={ Searchvalue:undefined, type:'all', category_id:0, page:1, Resourcelist:undefined, getallfiles:false, searchtype:'getallfiles' } } componentDidMount() { } componentDidUpdate = (prevProps) => { if ( prevProps.visible != this.props.visible ) { } } cloasshanchudiao=()=>{ this.props.closaoldfilesprops() } showfiless=(url)=>{ this.props.ShowOnlinePdf(url) } render(){ let {visible,allfiles}=this.props; return(
{/*提示*/} {visible===true?
注:该文件有历史版本,请选择您需要的文件,点击文件名 下载。
  • 资源名称
  • 版本
{ allfiles === undefined ? "":
  • {allfiles.title} {/*{allfiles.is_pdf===false?*/} {/*{allfiles.title}:*/} {/*this.showfiless(allfiles.url)} >{allfiles.title}*/} {/*}*/} 当前版本
  • {formatDate(allfiles.created_on)}
  • { allfiles.attachment_histories.length===0?"":allfiles.attachment_histories.map((item,key)=>{ return(
  • {item.title} {/*{item.is_pdf===false?*/} {/*{item.title}:*/} {/*this.showfiless(item.url)} >{item.title}*/} {/*}*/}
  • {formatDate(item.created_on)}
  • ) }) }
    }
    :""}
    ) } } export default Showoldfiles;