import React,{Component} from 'react'; import {Form} from 'antd'; import { getRefundStatus } from '@/tools'; import ImgList from "../../../common/imgList"; const formItemLayout = { labelCol: { span: 8 }, wrapperCol: { span: 14 }, } class OldInforProject extends Component{ constructor(props) { super(props); this.state={ } } render() { const {oldInfor} = this.props; return (
{oldInfor.companyName}
{oldInfor.unitPrice}
{oldInfor.unitNumber}
{oldInfor.amount}
{oldInfor.outsourceRemarks}
{getRefundStatus(oldInfor.refundStatus)}
) } } export default OldInforProject;