/** * 会议资源管理 */ import React, { Component } from "react"; import { connect } from "dva"; import { Form, Alert, Row, Col, Tabs, Button } from "antd"; import PTable from "../../../components/Pro/PTable"; import { withRouter } from "dva/router"; import { formatCurrency } from '../../../utils/utils'; import "../meeting.less"; @Form.create() @withRouter export default class OrderInquiry extends Component { constructor(props, context) { super(props, context); this.state = { pageParm: { pageSize: 10, pageNumber: 1 }, forceUpdate: false }; } componentDidMount() { } render() { const columns = [ { title: "订单编号", dataIndex: "comOrderId", key: "comOrderId" }, { title: "产品名称", dataIndex: "productCategory", key: "productCategory" }, { title: "产品详情", dataIndex: "orderDetailList", key: "orderDetailList", width: 400, render: (text, record) => (
{text.map((item,index) => { return ( {item.productTypeName}({item.productName}){item.eachAmount} {item.unit} 数量{item.num}个 ); })}
) }, { title: "总价(元)", dataIndex: "amount", key: "amount", render: (text, record) => { return {formatCurrency(text)} } }, { title: "实际支付金额(元)", dataIndex: "actualPayAmount", key: "actualPayAmount", render: (text, record) => { return {formatCurrency(text)} } }, { title: "支付时间", dataIndex: "createTime", key: "createTime" }, { title: "订单状态", dataIndex: "orderStatus", key: "orderStatus" }, { title: "订单配置状态", dataIndex: "orderDeployStatus", key: "orderDeployStatus" } ]; return (
订单支付成功后,系统需要1~2个工作日完成资源配置。
} type="warning" showIcon style={{ marginBottom: "15px" }} /> ); } }