1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- import React from "react";
- import $ from "jquery/src/ajax";
- import "./public.less";
- import {
- Form,
- Button,
- Input,
- Spin,
- Table,
- message,
- Modal,
- Upload,
- Tabs,
- Popconfirm,
- Tooltip,
- } from "antd";
- import {
- getProvinceA,
- getInvoiceStatus,
- getprovince,
- getStatus,
- getProcessStatus,
- getPeople,
- splitUrl,
- } from "@/tools";
- const FormItem = Form.Item;
- import OrderDesc from "../orderDetail/orderDesc";
- import { ChooseList } from "../../order/orderNew/chooseList";
- import { getProjectName } from "../../../tools";
- import LogPopup from "../../../common/logPopup";
- const outSpecial = React.createClass({
- loadData(pageNo) {
- this.state.data = [];
- this.setState({
- loading: true,
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url:
- globalConfig.context +
- "/api/admin/orderInvoice/approvalOrderInvoiceList",
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.pagination.pageSize,
- name: this.state.nameSearch, //客户名称
- orderNo: this.state.orderNoSearch,
- orderDep: this.state.departmenttList,
- type: 1,
- },
- success: function (data) {
- let theArr = [];
- if (!data.data || !data.data.list) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- } else {
- for (let i = 0; i < data.data.list.length; i++) {
- let thisdata = data.data.list[i];
- theArr.push({
- key: i,
- id: thisdata.id,
- status: thisdata.status,
- unitName: thisdata.unitName,
- orderNo: thisdata.orderNo,
- name: thisdata.name,
- projectStatus: thisdata.projectStatus,
- examineName: thisdata.examineName,
- processStatus: thisdata.processStatus,
- amount: thisdata.amount,
- sumAmount: thisdata.sumAmount,
- createTime: thisdata.createTime
- ? new Date(thisdata.createTime).toLocaleString()
- : "",
- settlementAmount: thisdata.settlementAmount,
- notAmount: thisdata.notAmount,
- approval: thisdata.approval,
- });
- }
- }
- this.state.pagination.current = data.data.pageNo;
- this.state.pagination.total = data.data.totalCount;
- if (data.data && data.data.list && !data.data.list.length) {
- this.state.pagination.current = 0;
- this.state.pagination.total = 0;
- }
- this.setState({
- totalPage: data.data.totalPage,
- dataSource: theArr,
- pagination: this.state.pagination,
- });
- }.bind(this),
- }).always(
- function () {
- this.setState({
- loading: false,
- });
- }.bind(this)
- );
- },
- invoiceData() {
- this.setState({
- loading: true,
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url:
- globalConfig.context + "/api/admin/orderInvoice/selectByIdOrderInvoice",
- data: {
- id: this.state.id,
- },
- success: function (data) {
- let thisdata = data.data;
- this.setState({
- orderNo: thisdata.orderNo,
- type: thisdata.type,
- status: thisdata.status,
- remarks: thisdata.remarks,
- invoiceType: thisdata.invoiceType,
- unitName: thisdata.unitName,
- taxNumber: thisdata.taxNumber,
- amount: thisdata.amount,
- banks: thisdata.banks,
- content: thisdata.content,
- unitAddress: thisdata.unitAddress,
- invoiceRemarks: thisdata.invoiceRemarks,
- unitMobile: thisdata.unitMobile,
- contractNo: thisdata.contractNo,
- post: thisdata.post,
- addressee: thisdata.addressee,
- addresseeMobile: thisdata.addresseeMobile,
- addresseeProvince: thisdata.addresseeProvince,
- addresseeCity: thisdata.addresseeCity,
- addresseeArea: thisdata.addresseeArea,
- alreadyAmount: thisdata.alreadyAmount,
- recipientAddress: thisdata.recipientAddress,
- orgCodeUrl: thisdata.voucherUrl
- ? splitUrl(
- thisdata.voucherUrl,
- ",",
- globalConfig.avatarHost + "/upload"
- )
- : [],
- });
- }.bind(this),
- }).done(
- function () {
- this.setState({
- loading: false,
- });
- }.bind(this)
- );
- },
- getInitialState() {
- return {
- searchMore: true,
- assignVisible: false,
- releaseDate: [],
- totalPage: 0,
- boHuivisible: false,
- selectedRowKeys: [],
- selectedRows: [],
- contractNo: "",
- loading: false,
- reason: "",
- foo: 0,
- pagination: {
- defaultCurrent: 1,
- defaultPageSize: 10,
- showQuickJumper: true,
- pageSize: 10,
- onChange: function (page) {
- this.loadData(page);
- }.bind(this),
- showTotal: function (total) {
- return "共" + total + "条数据";
- },
- },
- columns: [
- {
- title: "编号",
- dataIndex: "id",
- key: "id",
- },
- {
- title: "客户",
- dataIndex: "unitName",
- key: "unitName",
- // width: 100,
- render: (text) => {
- return (
- <Tooltip title={text}>
- <div
- style={{
- // maxWidth: "100px",
- // overflow: "hidden",
- // textOverflow: "ellipsis",
- // whiteSpace: "nowrap",
- }}
- >
- {text}
- </div>
- </Tooltip>
- );
- },
- },
- {
- title: "跟单人/签单人",
- dataIndex: "name",
- key: "name",
- },
- {
- title: "开票状态",
- dataIndex: "status",
- key: "status",
- render: (text, record) => {
- // return getStatus(text);
- return getInvoiceStatus(text, record);
- },
- },
- {
- title: "流程状态",
- dataIndex: "processStatus",
- key: "processStatus",
- render: (text, record) => {
- return getProcessStatus(text, record.examineName, record.approval);
- },
- },
- {
- title: "项目状态",
- dataIndex: "projectStatus",
- key: "projectStatus",
- render: (text) => {
- return getProjectName(text);
- },
- },
- {
- title: "申请开票(万)",
- dataIndex: "amount",
- key: "amount",
- },
- {
- title: "已开票(万)",
- dataIndex: "sumAmount",
- key: "sumAmount",
- },
- {
- title: "已收款",
- dataIndex: "settlementAmount",
- key: "settlementAmount",
- },
- {
- title: "未收款",
- dataIndex: "notAmount",
- key: "notAmount",
- },
- {
- title: "申请时间",
- dataIndex: "createTime",
- key: "createTime",
- },
- {
- title: "操作",
- dataIndex: "caozuo",
- key: "caouzo",
- render: (text, record, index) => {
- return (
- <div>
- {
- <Button
- type="primary"
- onClick={(e) => {
- e.stopPropagation(), this.visit(index);
- }}
- style={{ background: "deepskyblue", border: "none" }}
- >
- 申请内容
- </Button>
- }
- {record.approval !== 2 ? (
- <Popconfirm
- placement="top"
- title="确定要通过吗?"
- onConfirm={(e) => {
- e.stopPropagation();
- this.setState({ examine: 2 }, () => {
- this.sende(record);
- });
- }}
- okText="确定"
- cancelText="取消"
- >
- <Button
- type="primary"
- style={{ marginLeft: "10px" }}
- onClick={(e) => {
- e.stopPropagation();
- }}
- >
- 通过
- </Button>
- </Popconfirm>
- ) : (
- ""
- )}
- {record.approval !== 2 ? (
- <Popconfirm
- placement="top"
- title="确定要拒绝吗?"
- onConfirm={(e) => {
- e.stopPropagation();
- this.setState({ examine: 3 }, () => {
- this.reject(record);
- });
- }}
- okText="确定"
- cancelText="取消"
- >
- <Button
- type="danger"
- onClick={(e) => {
- e.stopPropagation();
- }}
- style={{ marginLeft: "10px" }}
- >
- 拒绝
- </Button>
- </Popconfirm>
- ) : (
- ""
- )}
- {record.approval === 2 ? (
- <Button
- style={{ marginLeft: "10px", color: "black" }}
- disabled={true}
- >
- 已通过
- </Button>
- ) : (
- ""
- )}
- {
- <Button
- type="primary"
- style={{
- marginLeft: "10px",
- background: "orangered",
- border: "none",
- }}
- onClick={(e) => {
- e.stopPropagation(), this.inRecord(record, index);
- }}
- >
- 开票记录
- </Button>
- }
- </div>
- );
- },
- },
- ],
- columnsDate: [
- {
- title: "编号",
- dataIndex: "id",
- key: "id",
- },
- {
- title: "订单编号",
- dataIndex: "orderNo",
- key: "orderNo",
- },
- {
- title: "开票金额(万元)",
- dataIndex: "amount",
- key: "amount",
- },
- {
- title: "申请时间",
- dataIndex: "createTime",
- key: "createTime",
- },
- {
- title: "开票状态",
- dataIndex: "status",
- key: "status",
- render: (text, record) => {
- return (
- <div>
- {getInvoiceStatus(text, record)} <LogPopup id={record.id} />
- </div>
- );
- },
- },
- ],
- dataSource: [],
- searchTime: [,],
- };
- },
- loadSend(record) {
- this.setState({
- loading: true,
- });
- if (this.state.examine === 3 && this.state.reason === "") {
- message.warning("拒绝理由不能为空!");
- return;
- }
- $.ajax({
- method: "post",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/orderInvoice/approvalExamine",
- data: {
- id: this.state.examine === 2 ? record.id : this.state.id,
- examine: this.state.examine,
- reason: this.state.reason,
- },
- success: function () { }.bind(this),
- }).done(
- function () {
- this.setState({
- loading: false,
- });
- if (this.state.examine === 2) {
- message.success("通过成功!");
- this.loadData();
- } else {
- message.success("拒绝成功!");
- this.resetReason();
- this.rejectCancels();
- this.loadData();
- }
- }.bind(this)
- );
- },
- //重置拒绝理由
- resetReason() {
- this.setState({
- reason: "",
- });
- },
- sende(record) {
- this.loadSend(record);
- },
- commit() {
- this.loadSend();
- this.setState({
- avisible: false,
- });
- },
- visit(index) {
- this.setState(
- {
- id: this.state.dataSource[index].id,
- avisible: true,
- },
- () => {
- this.invoiceData();
- }
- );
- },
- visitCancels() {
- this.setState({
- avisible: false,
- });
- },
- reject(record) {
- this.setState({
- visibleR: true,
- id: record.id,
- });
- },
- rejectCancels() {
- this.setState({
- visibleR: false,
- });
- },
- inRecordData() {
- this.setState({
- loading: true,
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url:
- globalConfig.context +
- "/api/admin/orderInvoice/salesmanOrderInvoiceList",
- data: {
- orderNo: this.state.orderNo2,
- },
- success: function (data) {
- let theArr = [];
- let sum = 0;
- if (!data.data) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- }
- } else {
- for (let i = 0; i < data.data.list.length; i++) {
- let thisdata = data.data.list[i];
- sum += parseFloat(thisdata.amount);
- theArr.push({
- id: thisdata.id,
- orderNo: thisdata.orderNo, //订单编号
- amount: thisdata.amount, //签单金额
- createTime: thisdata.createTime, //流程状态
- status: thisdata.status, //结算状态
- rejectReason: thisdata.rejectReason,
- approval: thisdata.approval, //0非特批 1待审核 2审核通过
- examineName: thisdata.examineName,
- });
- }
- }
- this.setState({
- recordData: theArr,
- sum: sum.toFixed(6),
- });
- }.bind(this),
- }).done(
- function () {
- this.setState({
- loading: false,
- });
- }.bind(this)
- );
- },
- inRecord(record) {
- this.setState(
- {
- bvisible: true,
- orderNo2: record.orderNo,
- },
- () => {
- this.inRecordData();
- }
- );
- },
- inRecordCanl() {
- this.setState({
- bvisible: false,
- });
- },
- search() {
- this.loadData();
- },
- componentWillMount() {
- this.loadData();
- },
- // componentDidMount() {
- // window.setTimeout(() => {
- // console.log("321", this.state);
- // },100)
- // },
- reset() {
- this.state.nameSearch = "";
- this.state.releaseDate = [];
- this.state.orderNoSearch = "";
- this.state.processStatus = [];
- this.state.departmenttList = [];
- this.loadData();
- },
- tableRowClick(record) {
- this.state.RowData = record;
- this.setState({
- showDesc: true,
- });
- },
- closeDesc(e, s) {
- this.state.showDesc = e;
- if (s) {
- this.loadData(this.state.page);
- }
- },
- changeList(arr) {
- const newArr = [];
- this.state.columns.forEach((item) => {
- arr.forEach((val) => {
- if (val === item.title) {
- newArr.push(item);
- }
- });
- });
- this.setState({
- changeList: newArr,
- });
- },
- render() {
- const formItemLayout = {
- labelCol: { span: 8 },
- wrapperCol: { span: 14 },
- };
- const { TabPane } = Tabs;
- return (
- <div className="user-content">
- <div className="content-title" style={{ marginBottom: 10 }}>
- <span style={{ fontWeight: 900, fontSize: 16 }}>省外特批</span>
- </div>
- <Tabs defaultActiveKey="1" onChange={this.callback} className="test">
- <TabPane tab="搜索" key="1">
- <div className="user-search">
- <Input
- placeholder="订单编号"
- value={this.state.orderNoSearch}
- onChange={(e) => {
- this.setState({ orderNoSearch: e.target.value });
- }}
- />
- <Input
- placeholder="营销员名称"
- value={this.state.nameSearch}
- style={{ marginLeft: 10 }}
- onChange={(e) => {
- this.setState({ nameSearch: e.target.value });
- }}
- />
- {/*<Select placeholder="订单部门"
- style={{ width: 150 ,marginRight:10}}
- value={this.state.departmenttList}
- onChange={(e) => { this.setState({ departmenttList: e }) }}>
- {
- departmentArr.map(function (item) {
- return <Select.Option key={item.id} >{item.name}</Select.Option>
- })
- }
- </Select>*/}
- <Button
- type="primary"
- onClick={this.search}
- style={{ marginLeft: 10 }}
- >
- 搜索
- </Button>
- <Button onClick={this.reset}>重置</Button>
- </div>
- </TabPane>
- <TabPane tab="更改表格显示数据" key="2">
- <div style={{ marginLeft: 10 }}>
- <ChooseList
- columns={this.state.columns}
- changeFn={this.changeList}
- changeList={this.state.changeList}
- top={55}
- margin={11}
- />
- </div>
- </TabPane>
- </Tabs>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table
- columns={
- this.state.changeList
- ? this.state.changeList
- : this.state.columns
- }
- style={{
- cursor: "pointer",
- }}
- scroll={{ x: 1500, y: 0 }}
- onRowClick={this.tableRowClick}
- dataSource={this.state.dataSource}
- pagination={this.state.pagination}
- bordered
- size="small"
- />
- </Spin>
- </div>
- <Modal
- visible={this.state.visibleR}
- className="admin-desc-content"
- footer=""
- title="拒绝理由"
- width="400px"
- onCancel={this.rejectCancels}
- >
- <Input.TextArea
- placeholder="请输入拒绝理由"
- rows={4}
- value={this.state.reason}
- onChange={(e) => {
- this.setState({ reason: e.target.value });
- }}
- />
- <div className="clearfix" style={{ marginTop: "20px" }}>
- <Button
- type="primary"
- loading={this.state.loading}
- onClick={(e) => {
- e.stopPropagation(), this.commit();
- }}
- style={{ float: "right" }}
- >
- 提交
- </Button>
- </div>
- </Modal>
- <Modal
- className="admin-desc-content"
- footer=""
- title="开具发票申请单"
- width="1200px"
- visible={this.state.avisible}
- onOk={this.visitOks}
- onCancel={this.visitCancels}
- >
- <Form
- layout="horizontal"
- id="demand-form"
- style={{ paddingBottom: "40px" }}
- >
- <Spin spinning={this.state.loading}>
- <div className="clearfix">
- <div className="clearfix">
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="合同编号"
- >
- <span>{this.state.contractNo}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="备注"
- >
- <span>{this.state.remarks}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>省内/外
- </span>
- }
- >
- <span>{getProvinceA(this.state.type)}</span>
- </FormItem>
- </div>
- <hr
- style={{
- border: "1px dashed #aaa",
- width: "90%",
- margin: "auto",
- }}
- />
- <div style={{ marginTop: "13px", marginLeft: "16px" }}>
- <span style={{ fontSize: "14px" }}>发票内容</span>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>发票类型
- </span>
- }
- >
- <span>
- {this.state.invoiceType === 0
- ? "增值税专用发票"
- : this.state.invoiceType === 1
- ? "增值税普通发票"
- : "其他"}
- </span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>单位名称
- </span>
- }
- >
- <span>{this.state.unitName}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>税号
- </span>
- }
- >
- <span>{this.state.taxNumber}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>
- 开票金额(万元)
- </span>
- }
- >
- <span>{this.state.amount}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>
- 开户行银行账号
- </span>
- }
- >
- <span>{this.state.banks}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>
- 开票内容及说明
- </span>
- }
- >
- <span>{this.state.content}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>单位地址
- </span>
- }
- >
- <span>{this.state.unitAddress}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="备注"
- >
- <span>{this.state.invoiceRemarks}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>单位电话
- </span>
- }
- >
- <span>{this.state.unitMobile}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- labelCol={{ span: 4 }}
- wrapperCol={{ span: 18 }}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>附件
- </span>
- }
- >
- <Upload
- className="demandDetailShow-upload"
- listType="picture-card"
- fileList={this.state.orgCodeUrl}
- onPreview={(file) => {
- this.setState({
- previewImage: file.url || file.thumbUrl,
- previewVisible: true,
- });
- }}
- ></Upload>
- <Modal
- maskClosable={false}
- footer={null}
- visible={this.state.previewVisible}
- onCancel={() => {
- this.setState({ previewVisible: false });
- }}
- >
- <img
- alt=""
- style={{ width: "100%" }}
- src={this.state.previewImage || ""}
- />
- </Modal>
- </FormItem>
- </div>
- <hr
- style={{
- border: "1px dashed #aaa",
- width: "90%",
- margin: "auto",
- }}
- />
- <div className="clearfix" style={{ marginTop: "10px" }}>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="发票是否邮寄:"
- >
- <span>{this.state.post === 0 ? "是" : "否"}</span>
- </FormItem>
- </div>
- {this.state.post === 0 ? (
- <div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="收信人姓名"
- >
- <span>{this.state.addressee}</span>
- </FormItem>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="电话"
- >
- <span>{this.state.addresseeMobile}</span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="省-市-区"
- >
- <span>
- {getprovince(this.state.addresseeProvince)}/
- {getprovince(this.state.addresseeCity)}/
- {getprovince(this.state.addresseeArea)}
- </span>
- </FormItem>
- </div>
- <div className="clearfix">
- <FormItem
- className="half-item"
- {...formItemLayout}
- label="详细地址"
- >
- <span>{this.state.recipientAddress}</span>
- </FormItem>
- </div>
- </div>
- ) : (
- ""
- )}
- {/* <FormItem
- className="half-item"
- {...formItemLayout}
- label={
- <span>
- <strong style={{ color: "#f00" }}>*</strong>开票金额总计
- </span>
- }
- >
- <span>{this.state.alreadyAmount}万元</span>
- </FormItem> */}
- </div>
- </Spin>
- </Form>
- </Modal>
- <Modal
- visible={this.state.bvisible}
- footer=""
- title="开票历史记录"
- className="admin-desc-content"
- width="1200px"
- onCancel={this.inRecordCanl}
- >
- <Spin spinning={this.state.loading}>
- <div className="patent-table">
- <Table
- columns={this.state.columnsDate}
- dataSource={this.state.recordData}
- pagination={false}
- bordered
- size="small"
- />
- <div className="clearfix" style={{ marginTop: "20px" }}>
- <FormItem
- className="half-item"
- {...formItemLayout}
- label={<span style={{ fontSize: "14px" }}>开票总计</span>}
- >
- <span>{this.state.sum}</span>
- </FormItem>
- </div>
- </div>
- </Spin>
- </Modal>
- <OrderDesc
- data={this.state.RowData}
- showDesc={this.state.showDesc}
- closeDesc={this.closeDesc.bind(this)}
- />
- </div>
- );
- },
- });
- export default outSpecial;
|