orderDetail.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841
  1. import React, { Component } from "react";
  2. import { Form, Upload, Modal, Button, Table, Col, message, Tag } from "antd";
  3. import {
  4. splitUrl,
  5. getProcessStatus,
  6. getjiedian,
  7. getLiquidationStatus,
  8. getboutique,
  9. getCuikuan,
  10. getApprovedState,
  11. getProjectStatus
  12. } from "@/tools.js";
  13. import img from "./img.png"
  14. import ResolutionDetail from "@/resolutionDetail";
  15. import ImgList from "../../../../common/imgList";
  16. import {getProjectName} from "../../../../tools";
  17. import ProjectDetailsReadOnly from "../../../../common/projectDetailsReadOnly";
  18. const FormItem = Form.Item;
  19. class OrderDetail extends Component {
  20. constructor(props) {
  21. super(props);
  22. this.state = {
  23. dataInfor:{},
  24. newContactsLists: [
  25. {
  26. title: "项目名称",
  27. dataIndex: "commodityName",
  28. key: "commodityName",
  29. render: (text, record) => {
  30. return <span>{text + "-" + record.tid}</span>;
  31. }
  32. },
  33. {
  34. title: "项目分类",
  35. dataIndex: "projectType",
  36. key: "projectType",
  37. render: text => {
  38. let arr = this.props.dataSourceX || [];
  39. let str = "";
  40. for (let i = 0; i < arr.length; i++) {
  41. if (this.props.dataSourceX[i].sort == text) {
  42. str = this.props.dataSourceX[i].cname;
  43. return <span>{str}</span>;
  44. }
  45. }
  46. if(!str){
  47. return <span>未知</span>;
  48. }
  49. }
  50. },
  51. {
  52. title: "催款科目",
  53. dataIndex: "dunTypeName",
  54. key: "dunTypeName",
  55. render: (text, record) => {
  56. if(record.customizeName) {
  57. return text + record.customizeName;
  58. }
  59. return <span>{text}</span>;
  60. }
  61. },
  62. {
  63. title: "时间",
  64. dataIndex: "waitDay",
  65. key: "waitDay",
  66. render: (text, record) => {
  67. if (record.dunTypeName) {
  68. if (record.customizeTimes) {
  69. return record.customizeTimes;
  70. }
  71. return <span>{text}</span>;
  72. }
  73. }
  74. },
  75. {
  76. title: "金额(万元)",
  77. dataIndex: "money",
  78. key: "money",
  79. render: (text, record) => {
  80. if (record.dunTypeName) {
  81. if (record.appropriationRatio && !record.money) {
  82. return <span>{record.appropriationRatio}(拨款比例)</span>;
  83. } else if (record.appropriationRatio && record.money) {
  84. return (
  85. <span>
  86. {text}(比例:{record.appropriationRatio})
  87. </span>
  88. );
  89. } else {
  90. return <span>{text}</span>;
  91. }
  92. }
  93. }
  94. },
  95. {
  96. title: "服务年限",
  97. dataIndex: "startDate",
  98. key: "startDate",
  99. render: (text, record) => {
  100. if (record.dunTypeName) {
  101. return <span>{text}</span>;
  102. }
  103. }
  104. },
  105. {
  106. title: "催款状态",
  107. dataIndex: "status",
  108. key: "status",
  109. render: text => {
  110. return <span>{text == 1 ? "已启动" : "未启动"}</span>;
  111. }
  112. }
  113. ],
  114. ContactsLists: [
  115. {
  116. title: "催款科目",
  117. dataIndex: "dunSubject",
  118. key: "dunSubject",
  119. render: text => {
  120. return getjiedian(text);
  121. }
  122. },
  123. {
  124. title: "金额(万元)",
  125. dataIndex: "money",
  126. key: "money"
  127. },
  128. {
  129. title: "催款状态",
  130. dataIndex: "dunStatus",
  131. key: "dunStatus",
  132. render: text => {
  133. return getCuikuan(text);
  134. }
  135. }
  136. ],
  137. resVisible: false,
  138. columnsX: [
  139. {
  140. title: "业务项目名称",
  141. dataIndex: "commodityName",
  142. key: "commodityName",
  143. render: (text, record) => {
  144. return text + "-" + record.id
  145. }
  146. },
  147. {
  148. title: "项目类别",
  149. dataIndex: "cname",
  150. key: "cname"
  151. },
  152. {
  153. title: "项目数量",
  154. dataIndex: "commodityQuantity",
  155. key: "commodityQuantity",
  156. render: (text, record) => {
  157. if (record.splitStatus == 1) {
  158. return (
  159. <span>
  160. {text}{" "}
  161. <Tag
  162. color="#108ee9"
  163. onClick={e => {
  164. e.stopPropagation();
  165. this.showRes(record);
  166. }}
  167. >
  168. 已拆
  169. </Tag>
  170. </span>
  171. );
  172. } else {
  173. return text;
  174. }
  175. }
  176. },
  177. {
  178. title: "金额(万元)",
  179. dataIndex: "commodityPrice",
  180. key: "commodityPrice",
  181. render: text => {
  182. return this.props.processState === 2 ? "***" : text;
  183. }
  184. },
  185. {
  186. title: "负责人",
  187. dataIndex: "contacts",
  188. key: "contacts"
  189. },
  190. {
  191. title: "负责人电话",
  192. dataIndex: "contactsMobile",
  193. key: "contactsMobile"
  194. },
  195. {
  196. title: "项目状态",
  197. dataIndex: "projectStatus",
  198. key: "projectStatus",
  199. render: text => {
  200. return getProjectName(text);
  201. }
  202. },
  203. {
  204. title: "主要项目",
  205. dataIndex: "main",
  206. key: "main",
  207. render: text => {
  208. return text ? "是" : "否";
  209. }
  210. },
  211. {
  212. title: "项目说明",
  213. dataIndex: "taskComment",
  214. key: "taskComment",
  215. render: text => {
  216. return text && text.length > 8 ? text.substr(0, 8) + "…" : text;
  217. }
  218. }
  219. ],
  220. rotateDeg: 0
  221. };
  222. this.tableRowClickX = this.tableRowClickX.bind(this);
  223. this.nextCancel = this.nextCancel.bind(this);
  224. this.rotate = this.rotate.bind(this);
  225. this.downImg = this.downImg.bind(this);
  226. this.upImg = this.upImg.bind(this);
  227. this.downImgs = this.downImgs.bind(this);
  228. this.upImgs = this.upImgs.bind(this);
  229. this.showRes = this.showRes.bind(this);
  230. this.resCancel = this.resCancel.bind(this);
  231. }
  232. rotate() {
  233. let rotateDeg = this.state.rotateDeg + 90;
  234. this.setState({
  235. rotateDeg
  236. });
  237. }
  238. //项目详情关闭
  239. nextCancel() {
  240. this.setState({
  241. visible: false
  242. });
  243. }
  244. //点击打卡项目详情
  245. tableRowClickX(record) {
  246. this.setState({
  247. dataInfor: record,
  248. jid: record.id, //项目ID
  249. kid: record.commodityId, //商品ID
  250. commodityName: record.commodityName, //金额
  251. commodityPrice: record.commodityPrice, //金额
  252. commodityQuantity: record.commodityQuantity, //数量
  253. taskComment: record.taskComment, //备注
  254. main: record.main.toString(), //是否为主要
  255. visible: true,
  256. addState: 0
  257. });
  258. }
  259. downImg() {
  260. const data = this.props.orderData;
  261. let num = 0;
  262. for (
  263. let i = 0;
  264. i <
  265. splitUrl(
  266. data.contractPictureUrl,
  267. ",",
  268. globalConfig.avatarHost + "/upload"
  269. ).length;
  270. i++
  271. ) {
  272. if (
  273. splitUrl(
  274. data.contractPictureUrl,
  275. ",",
  276. globalConfig.avatarHost + "/upload"
  277. )[i].url == this.state.previewImage
  278. ) {
  279. num = i;
  280. }
  281. }
  282. if (
  283. num ==
  284. splitUrl(
  285. data.contractPictureUrl,
  286. ",",
  287. globalConfig.avatarHost + "/upload"
  288. ).length -
  289. 1
  290. ) {
  291. return message.warning("已经是最后一张了哦");
  292. }
  293. this.state.previewImage = splitUrl(
  294. data.contractPictureUrl,
  295. ",",
  296. globalConfig.avatarHost + "/upload"
  297. )[num + 1].url;
  298. this.setState({
  299. previewImage: this.state.previewImage,
  300. rotateDeg: 0
  301. });
  302. }
  303. upImg() {
  304. const data = this.props.orderData;
  305. let num = 0;
  306. for (
  307. let i = 0;
  308. i <
  309. splitUrl(
  310. data.contractPictureUrl,
  311. ",",
  312. globalConfig.avatarHost + "/upload"
  313. ).length;
  314. i++
  315. ) {
  316. if (
  317. splitUrl(
  318. data.contractPictureUrl,
  319. ",",
  320. globalConfig.avatarHost + "/upload"
  321. )[i].url == this.state.previewImage
  322. ) {
  323. num = i;
  324. }
  325. }
  326. if (num == 0) {
  327. return message.warning("已经是第一张了哦");
  328. }
  329. this.state.previewImage = splitUrl(
  330. data.contractPictureUrl,
  331. ",",
  332. globalConfig.avatarHost + "/upload"
  333. )[num - 1].url;
  334. this.setState({
  335. previewImage: this.state.previewImage,
  336. rotateDeg: 0
  337. });
  338. }
  339. downImgs() {
  340. const data = this.props.orderData;
  341. let num = 0;
  342. for (
  343. let i = 0;
  344. i <
  345. splitUrl(
  346. data.rep,
  347. ",",
  348. globalConfig.avatarHost + "/upload"
  349. ).length;
  350. i++
  351. ) {
  352. if (
  353. splitUrl(data.agreementUrl, ",", globalConfig.avatarHost + "/upload")[i]
  354. .url == this.state.previewImage
  355. ) {
  356. num = i;
  357. }
  358. }
  359. if (
  360. num ==
  361. splitUrl(data.agreementUrl, ",", globalConfig.avatarHost + "/upload")
  362. .length -
  363. 1
  364. ) {
  365. return message.warning("已经是最后一张了哦");
  366. }
  367. this.state.previewImage = splitUrl(
  368. data.agreementUrl,
  369. ",",
  370. globalConfig.avatarHost + "/upload"
  371. )[num + 1].url;
  372. this.setState({
  373. previewImage: this.state.previewImage,
  374. rotateDeg: 0
  375. });
  376. }
  377. upImgs() {
  378. const data = this.props.orderData;
  379. let num = 0;
  380. for (
  381. let i = 0;
  382. i <
  383. splitUrl(data.agreementUrl, ",", globalConfig.avatarHost + "/upload")
  384. .length;
  385. i++
  386. ) {
  387. if (
  388. splitUrl(data.agreementUrl, ",", globalConfig.avatarHost + "/upload")[i]
  389. .url == this.state.previewImage
  390. ) {
  391. num = i;
  392. }
  393. }
  394. if (num == 0) {
  395. return message.warning("已经是第一张了哦");
  396. }
  397. this.state.previewImage = splitUrl(
  398. data.agreementUrl,
  399. ",",
  400. globalConfig.avatarHost + "/upload"
  401. )[num - 1].url;
  402. this.setState({
  403. previewImage: this.state.previewImage,
  404. rotateDeg: 0
  405. });
  406. }
  407. // 拆分详细
  408. showRes(record) {
  409. this.setState({
  410. resVisible: true,
  411. resRecord: record
  412. })
  413. }
  414. resCancel() {
  415. this.setState({
  416. resVisible: false
  417. })
  418. }
  419. render() {
  420. const formItemLayout = {
  421. labelCol: { span: 8 },
  422. wrapperCol: { span: 14 }
  423. };
  424. const data = this.props.orderData;
  425. const propsList = this.props.contactList || [];
  426. return (
  427. <div className="clearfix">
  428. {this.state.resVisible ? (
  429. <ResolutionDetail
  430. cancel={this.resCancel}
  431. detail={this.state.resRecord}
  432. visible={this.state.resVisible}
  433. id={this.state.resRecord.orderNo}
  434. />
  435. ) : (
  436. ""
  437. )}
  438. <FormItem className="half-item" {...formItemLayout} label="订单编号">
  439. <span>{data.orderNo}</span>
  440. </FormItem>
  441. <FormItem className="half-item" {...formItemLayout} label="合同编号">
  442. <span>{data.contractNo}</span>
  443. </FormItem>
  444. <FormItem className="half-item" {...formItemLayout} label="客户名称">
  445. <span>{data.userName}</span>
  446. </FormItem>
  447. <FormItem
  448. className="half-item"
  449. {...formItemLayout}
  450. label="合同签订时间"
  451. >
  452. <span>{data.signDate}</span>
  453. </FormItem>
  454. <FormItem className="half-item" {...formItemLayout} label="流程状态">
  455. <span>{getProcessStatus(data.processStatus)}</span>
  456. </FormItem>
  457. <FormItem className="half-item" {...formItemLayout} label="结算状态">
  458. <span>{getLiquidationStatus(data.liquidationStatus)}</span>
  459. </FormItem>
  460. <FormItem className="half-item" {...formItemLayout} label="企业联系人">
  461. {/* <span>{data.contacts}</span> */}
  462. <span>{this.props.isCaiWu ? "***" : data.contacts}</span>
  463. </FormItem>
  464. <FormItem className="half-item" {...formItemLayout} label="联系人电话">
  465. {/* <span>{data.contactMobile}</span> */}
  466. <span>{this.props.isCaiWu ? "***" : data.contactMobile}</span>
  467. </FormItem>
  468. <FormItem className="half-item" {...formItemLayout} label="企业法人">
  469. <span>{this.props.isCaiWu ? "***" : data.legalPerson}</span>
  470. </FormItem>
  471. <FormItem className="half-item" {...formItemLayout} label="法人电话">
  472. {/* <span>{data.legalPersonTel}</span> */}
  473. <span>{this.props.isCaiWu ? "***" : data.legalPersonTel}</span>
  474. </FormItem>
  475. <FormItem
  476. className="half-item"
  477. {...formItemLayout}
  478. label="签单金额(万元)"
  479. >
  480. <span>
  481. {this.props.processState === 2 ? "***" : data.totalAmount}
  482. </span>
  483. </FormItem>
  484. <FormItem
  485. className="half-item"
  486. {...formItemLayout}
  487. label="首付金额(万元)"
  488. >
  489. <span>
  490. {this.props.processState === 2 ? "***" : data.firstAmount}
  491. </span>
  492. </FormItem>
  493. <FormItem className="half-item" {...formItemLayout} label="特批立项">
  494. <span>{getApprovedState(data.approval)}</span>
  495. </FormItem>
  496. <FormItem
  497. className="half-item"
  498. {...formItemLayout}
  499. label="已收款项(万元)"
  500. >
  501. <span>
  502. {this.props.processState === 2 ? "***" : data.settlementAmount}
  503. </span>
  504. </FormItem>
  505. <FormItem className="half-item" {...formItemLayout} label="订单部门">
  506. <span>{data.depName}</span>
  507. </FormItem>
  508. {/*<FormItem className="half-item" {...formItemLayout} label="是否外包">*/}
  509. {/* {data.outsource == 0 ? "否" : "是"}*/}
  510. {/*</FormItem>*/}
  511. <div className="clearfix">
  512. <FormItem
  513. labelCol={{ span: 4 }}
  514. wrapperCol={{ span: 16 }}
  515. label="订单留言"
  516. >
  517. <p style={{ width: 500, wordWrap: "break-word" }}>
  518. {data.orderRemarks}
  519. </p>
  520. </FormItem>
  521. </div>
  522. <div className="clearfix">
  523. <FormItem
  524. labelCol={{ span: 4 }}
  525. wrapperCol={{ span: 18 }}
  526. label="合同扫描件"
  527. >
  528. {/*<Upload*/}
  529. {/* className="demandDetailShow-upload"*/}
  530. {/* listType="picture-card"*/}
  531. {/* fileList={*/}
  532. {/* data.contractPictureUrl*/}
  533. {/* ? splitUrl(*/}
  534. {/* data.contractPictureUrl,*/}
  535. {/* ",",*/}
  536. {/* globalConfig.avatarHost + "/upload"*/}
  537. {/* )*/}
  538. {/* : []*/}
  539. {/* }*/}
  540. {/* onPreview={(file) => {*/}
  541. {/* this.setState({*/}
  542. {/* previewImage: file.url || file.thumbUrl,*/}
  543. {/* previewVisible: true,*/}
  544. {/* });*/}
  545. {/* }}*/}
  546. {/*/>*/}
  547. {this.props.orderData && data.contractPictureUrl ?
  548. <ImgList
  549. domId={'orderDetail1'}
  550. fileList={
  551. data.contractPictureUrl ? splitUrl(data.contractPictureUrl, ",", globalConfig.avatarHost + "/upload") : []
  552. }
  553. /> :
  554. <div/>
  555. }
  556. <Modal
  557. maskClosable={false}
  558. footer={null}
  559. width={"50%"}
  560. visible={this.state.previewVisible}
  561. onCancel={() => {
  562. this.state.rotateDeg = 0;
  563. this.setState({
  564. previewVisible: false,
  565. rotateDeg: this.state.rotateDeg,
  566. });
  567. }}
  568. >
  569. <img
  570. alt=""
  571. style={{
  572. width: "100%",
  573. transform: `rotate(${this.state.rotateDeg}deg)`,
  574. }}
  575. src={this.state.previewImage || ""}
  576. />
  577. <Button
  578. onClick={this.rotate}
  579. style={{
  580. position: "relative",
  581. left: "50%",
  582. transform: "translateX(-50%)",
  583. }}
  584. >
  585. 旋转
  586. </Button>
  587. <Button
  588. onClick={this.upImg}
  589. style={{
  590. position: "absolute",
  591. left: -81,
  592. top: "50%",
  593. transform: "translateY(-50%)",
  594. }}
  595. >
  596. 上一张
  597. </Button>
  598. <Button
  599. onClick={this.downImg}
  600. style={{
  601. position: "absolute",
  602. right: -81,
  603. top: "50%",
  604. transform: "translateY(-50%)",
  605. }}
  606. >
  607. 下一张
  608. </Button>
  609. </Modal>
  610. <Button
  611. style={{
  612. float: "right",
  613. marginRight: "140px",
  614. marginTop: "20px",
  615. }}
  616. onClick={() => {
  617. this.props.getOrderLog(data.orderNo);
  618. }}
  619. >
  620. 查看订单日志
  621. </Button>
  622. </FormItem>
  623. <FormItem
  624. labelCol={{ span: 4 }}
  625. wrapperCol={{ span: 18 }}
  626. label="补充协议"
  627. >
  628. {/*<Upload*/}
  629. {/* className="demandDetailShow-upload"*/}
  630. {/* listType="picture-card"*/}
  631. {/* fileList={*/}
  632. {/* data.agreementUrl*/}
  633. {/* ? splitUrl(*/}
  634. {/* data.agreementUrl,*/}
  635. {/* ",",*/}
  636. {/* globalConfig.avatarHost + "/upload"*/}
  637. {/* )*/}
  638. {/* : []*/}
  639. {/* }*/}
  640. {/* onPreview={(file) => {*/}
  641. {/* this.setState({*/}
  642. {/* previewImage: file.url || file.thumbUrl,*/}
  643. {/* previewVisibles: true,*/}
  644. {/* });*/}
  645. {/* }}*/}
  646. {/*/>*/}
  647. <div style={{paddingTop:'10px',paddingBottom:'10px'}}>
  648. <ImgList
  649. domId={'orderDetail2'}
  650. fileList={
  651. data.agreementUrl ? splitUrl(data.agreementUrl, ",", globalConfig.avatarHost + "/upload") : []
  652. }/>
  653. </div>
  654. <Modal
  655. maskClosable={false}
  656. footer={null}
  657. width={"50%"}
  658. visible={this.state.previewVisibles}
  659. onCancel={() => {
  660. this.state.rotateDeg = 0;
  661. this.setState({
  662. previewVisibles: false,
  663. rotateDeg: this.state.rotateDeg,
  664. });
  665. }}
  666. >
  667. <img
  668. alt=""
  669. style={{
  670. width: "100%",
  671. transform: `rotate(${this.state.rotateDeg}deg)`,
  672. }}
  673. src={this.state.previewImage || ""}
  674. />
  675. <Button
  676. onClick={this.rotate}
  677. style={{
  678. position: "relative",
  679. left: "50%",
  680. transform: "translateX(-50%)",
  681. }}
  682. >
  683. 旋转
  684. </Button>
  685. <Button
  686. onClick={this.upImgs}
  687. style={{
  688. position: "absolute",
  689. left: -81,
  690. top: "50%",
  691. transform: "translateY(-50%)",
  692. }}
  693. >
  694. 上一张
  695. </Button>
  696. <Button
  697. onClick={this.downImgs}
  698. style={{
  699. position: "absolute",
  700. right: -81,
  701. top: "50%",
  702. transform: "translateY(-50%)",
  703. }}
  704. >
  705. 下一张
  706. </Button>
  707. </Modal>
  708. </FormItem>
  709. </div>
  710. <div className="clearfix">
  711. <FormItem
  712. className="half-item"
  713. {...formItemLayout}
  714. label="订单负责人"
  715. >
  716. <span>{data.salesmanName}</span>
  717. </FormItem>
  718. <FormItem
  719. className="half-item"
  720. {...formItemLayout}
  721. label="订单负责人电话"
  722. >
  723. <span>{data.salesmanMobile}</span>
  724. </FormItem>
  725. </div>
  726. <div className="clearfix">
  727. <FormItem
  728. className="half-item"
  729. {...formItemLayout}
  730. label="当前财务负责人"
  731. >
  732. <span>{data.nowFinance}</span>
  733. </FormItem>
  734. <FormItem
  735. className="half-item"
  736. {...formItemLayout}
  737. label="当前财务负责人电话"
  738. >
  739. <span>{data.nowFinanceMobile}</span>
  740. </FormItem>
  741. </div>
  742. {/*<div className="clearfix">*/}
  743. {/* <FormItem*/}
  744. {/* className="half-item"*/}
  745. {/* {...formItemLayout}*/}
  746. {/* style={{ opacity: ".5" }}*/}
  747. {/* label="原订单负责人"*/}
  748. {/* >*/}
  749. {/* <span>{data.oldSalesmanName}</span>*/}
  750. {/* </FormItem>*/}
  751. {/* <FormItem*/}
  752. {/* className="half-item"*/}
  753. {/* {...formItemLayout}*/}
  754. {/* style={{ opacity: ".5" }}*/}
  755. {/* label="原订单负责人电话"*/}
  756. {/* >*/}
  757. {/* <span>{data.oldSalesmanMobile}</span>*/}
  758. {/* </FormItem>*/}
  759. {/*</div>*/}
  760. {/*<div className="clearfix">*/}
  761. {/* <FormItem*/}
  762. {/* className="half-item"*/}
  763. {/* style={{ opacity: ".5" }}*/}
  764. {/* {...formItemLayout}*/}
  765. {/* label="实际财务操作人"*/}
  766. {/* >*/}
  767. {/* <span>{data.financeName}</span>*/}
  768. {/* </FormItem>*/}
  769. {/* <FormItem*/}
  770. {/* className="half-item"*/}
  771. {/* {...formItemLayout}*/}
  772. {/* style={{ opacity: ".5" }}*/}
  773. {/* label="实际财务操作人电话"*/}
  774. {/* >*/}
  775. {/* <span>{data.financeMobile}</span>*/}
  776. {/* </FormItem>*/}
  777. {/*</div>*/}
  778. <div>
  779. <span style={{ marginLeft: "50px", fontSize: "20px" }}>项目业务</span>
  780. </div>
  781. <div className="patent-table">
  782. <Table
  783. columns={this.state.columnsX}
  784. pagination={false}
  785. dataSource={this.props.dataSourceX}
  786. onRowClick={this.tableRowClickX}
  787. bordered
  788. size="small"
  789. />
  790. </div>
  791. {/*<div>*/}
  792. {/* <span style={{ marginLeft: "50px", fontSize: "20px" }}>催款节点</span>*/}
  793. {/* <span*/}
  794. {/* style={{*/}
  795. {/* display: propsList.length ? "none" : "inline-block",*/}
  796. {/* marginLeft: 10,*/}
  797. {/* color: "red",*/}
  798. {/* }}*/}
  799. {/* >*/}
  800. {/* 金额总计(万元): {this.props.totalCui}*/}
  801. {/* </span>*/}
  802. {/*</div>*/}
  803. {/*<div className="clearfix">*/}
  804. {/* <Form layout="horizontal" id="demand-form">*/}
  805. {/* <Table*/}
  806. {/* pagination={false}*/}
  807. {/* bordered*/}
  808. {/* size="small"*/}
  809. {/* // columns={this.state.ContactsLists}*/}
  810. {/* columns={*/}
  811. {/* propsList.length*/}
  812. {/* ? this.state.ContactsLists*/}
  813. {/* : this.state.newContactsLists*/}
  814. {/* }*/}
  815. {/* dataSource={*/}
  816. {/* propsList.length*/}
  817. {/* ? this.props.contactList*/}
  818. {/* : this.props.contactListNew*/}
  819. {/* }*/}
  820. {/* />*/}
  821. {/* <Col span={24} offset={9} style={{ marginTop: "15px" }}></Col>*/}
  822. {/* </Form>*/}
  823. {/*</div>*/}
  824. {this.state.visible && <ProjectDetailsReadOnly
  825. infor={this.state.dataInfor}
  826. visible={this.state.visible}
  827. onCancel={this.nextCancel}
  828. />}
  829. </div>
  830. );
  831. }
  832. }
  833. export default OrderDetail;