changeDetailYxjl.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. import React, { Component } from "react";
  2. import { Form, Upload, Modal, Button, message, Input, Table, Tooltip } from "antd";
  3. import AgreeButton from "./agreeButton.js";
  4. import Rizhi from "./rizhi.js";
  5. import { getProcessStatusNew } from "../../../../tools.js";
  6. import { shenghePeo, changeColor } from "@/tools.js";
  7. import { typeList } from '@/dataDic.js'
  8. import $ from "jquery/src/ajax";
  9. import tongguo from "../../../../../../image/tongguo.png";
  10. import quxiao from "../../../../../../image/quxiao.png";
  11. import ProAndCuiList from "./proAndCuiList.jsx";
  12. // import OrderCoor from "./orderCoor";
  13. import ReactToPrint from "react-to-print";
  14. const FormItem = Form.Item;
  15. import Refund from "./refund.js"
  16. import ImgList from "../../../../common/imgList/index";
  17. import EnterpriseNameChange from "../../../../common/enterpriseNameChange";
  18. import FlowChart from '../../../../common/flowchart'; // 流程图
  19. const { TextArea } = Input;
  20. const formItemLayout = {
  21. labelCol: { span: 8 },
  22. wrapperCol: { span: 14 }
  23. };
  24. const getChangeType = function (e) {
  25. if (e || e == 0) {
  26. let str = e.toString();
  27. let theType = "";
  28. typeList.map(function (item) {
  29. if (item.value == str) {
  30. theType = item.key;
  31. }
  32. });
  33. return theType;
  34. }
  35. };
  36. class Itemlist extends Component {
  37. constructor(props) {
  38. super(props);
  39. }
  40. render() {
  41. let pageData = this.props.pageData;
  42. return (
  43. <div className="clearfix">
  44. {pageData.labelA === '客户名称' ? <Form.Item
  45. label={pageData.labelA}
  46. {...pageData.formItemLayoutA}
  47. className="half-item"
  48. >
  49. <div>
  50. {pageData.dataA}
  51. <EnterpriseNameChange
  52. type='journal'
  53. style={{ marginLeft: 10 }}
  54. enterpriseId={this.props.orderUid} />
  55. </div>
  56. </Form.Item> : pageData.labelA === '变更原因' ? <Form.Item
  57. label={pageData.labelA}
  58. {...pageData.formItemLayoutA}
  59. className="half-item"
  60. >
  61. <Tooltip placement="topLeft" title={pageData.dataA}>
  62. <div style={{
  63. width: '350px !important',
  64. whiteSpace: 'nowrap',
  65. wordBreak: 'break-all',
  66. overflow: 'hidden',
  67. textOverflow: 'ellipsis',
  68. }}>{pageData.dataA}</div>
  69. </Tooltip>
  70. </Form.Item> : <Form.Item
  71. label={pageData.labelA}
  72. {...pageData.formItemLayoutA}
  73. className="half-item"
  74. >
  75. <div>{pageData.dataA}
  76. {
  77. pageData.labelA === '当前进度' &&
  78. <FlowChart id={this.props.id} />
  79. }
  80. </div>
  81. </Form.Item>}
  82. <Form.Item
  83. label={pageData.labelB}
  84. {...pageData.formItemLayoutB}
  85. className="half-item"
  86. >
  87. <span>{pageData.dataB}</span>
  88. </Form.Item>
  89. </div>
  90. );
  91. }
  92. }
  93. class ChangeDetail extends Component {
  94. constructor(props) {
  95. super(props);
  96. this.state = {
  97. rotateDeg: 0,
  98. previewVisible: false,
  99. buttonStatus: true,
  100. dataSource: [],
  101. reason: "",
  102. rejectState: 0,
  103. // 累计回收退票
  104. refundInvoice: 0,
  105. // 收款信息
  106. proceedsData: [],
  107. proceedsTotal: this.props.proceedsTotal,
  108. // 开票信息
  109. invoiceData: [],
  110. invoiceTotal: this.props.invoiceTotal,
  111. cost: 10,
  112. refund: 8,
  113. // 测试添加退票
  114. contactList: this.props.contactList,
  115. ContactsLists: [
  116. {
  117. title: "金额(万元)",
  118. dataIndex: "amount",
  119. key: "amount",
  120. render: (text, record) => {
  121. return (
  122. <div>
  123. 实际回收退票(万元)
  124. <Input
  125. value={record.amount}
  126. placeholder="请输入金额(必填项)"
  127. disabled={record.load}
  128. key={record.id}
  129. required="required"
  130. onChange={(e) => {
  131. record.amount = e.target.value;
  132. this.setState({ contactList: this.state.contactList });
  133. }}
  134. style={{ width: "120px" }}
  135. />
  136. </div>
  137. );
  138. },
  139. },
  140. {
  141. title: "时间",
  142. dataIndex: "createTimes",
  143. key: "createTimes",
  144. render: (text, record) => {
  145. return <div>{record.createTimes}</div>;
  146. },
  147. },
  148. ],
  149. };
  150. this.getOrgCodeUrl = this.getOrgCodeUrl.bind(this);
  151. this.changeButtonStatus = this.changeButtonStatus.bind(this);
  152. this.moneyOld = this.moneyOld.bind(this);
  153. this.downImg = this.downImg.bind(this);
  154. this.upImg = this.upImg.bind(this);
  155. this.rotate = this.rotate.bind(this);
  156. }
  157. // componentWillUpdate() {
  158. // this.loadDataChange();
  159. // console.log(this.props);
  160. // }
  161. // componentDidUpdate() {
  162. // this.loadDataChange();
  163. // console.log(this.props);
  164. // }
  165. // loadDataChange() {
  166. // console.log(this.props);
  167. // $.ajax({
  168. // method: "get",
  169. // dataType: "json",
  170. // crossDomain: false,
  171. // url: globalConfig.context + "/api/admin/orderChange/orderChangeLogList",
  172. // data: {
  173. // changeId: this.props.data.id
  174. // },
  175. // success: function(data) {
  176. // if (data.error.length || data.data.list == "") {
  177. // if (data.error && data.error.length) {
  178. // message.warning(data.error[0].message);
  179. // }
  180. // } else {
  181. // this.setState({
  182. // dataSource: data.data
  183. // });
  184. // }
  185. // }.bind(this)
  186. // });
  187. // }
  188. downImg() {
  189. let num = 0;
  190. for (let i = 0; i < this.props.pictureUrl.length; i++) {
  191. if (this.props.pictureUrl[i].url == this.state.previewImage) {
  192. num = i;
  193. }
  194. }
  195. if (num == this.props.pictureUrl.length - 1) {
  196. return message.warning("已经是最后一张了哦");
  197. }
  198. this.state.previewImage = this.props.pictureUrl[num + 1].url;
  199. this.setState({
  200. previewImage: this.state.previewImage,
  201. rotateDeg: 0,
  202. });
  203. }
  204. upImg() {
  205. let num = 0;
  206. for (let i = 0; i < this.props.pictureUrl.length; i++) {
  207. if (this.props.pictureUrl[i].url == this.state.previewImage) {
  208. num = i;
  209. }
  210. }
  211. if (num == 0) {
  212. return message.warning("已经是第一张了哦");
  213. }
  214. this.state.previewImage = this.props.pictureUrl[num - 1].url;
  215. this.setState({
  216. previewImage: this.state.previewImage,
  217. rotateDeg: 0,
  218. });
  219. }
  220. rotate() {
  221. let rotateDeg = this.state.rotateDeg + 90;
  222. this.setState({
  223. rotateDeg,
  224. });
  225. }
  226. moneyOld(str, money) {
  227. if (money) {
  228. return (
  229. <span style={{ color: "red", fontWeight: 900, fontSize: 16 }}>
  230. {str}(原合同金额{money}万元)
  231. </span>
  232. );
  233. } else {
  234. return (
  235. <span style={{ color: "red", fontWeight: 900, fontSize: 16 }}>
  236. {str}
  237. </span>
  238. );
  239. }
  240. }
  241. componentWillReceiveProps(nextProps) {
  242. this.setState({
  243. paymentTimes: nextProps.data.paymentTimes,
  244. paymentAmount: nextProps.data.paymentAmount,
  245. invoiceTimes: nextProps.data.invoiceTimes,
  246. invoiceAmount: nextProps.data.invoiceAmount,
  247. cwCost: nextProps.data.cwCost,
  248. refundableAmount: nextProps.data.refundableAmount,
  249. cwRemarks: nextProps.data.cwRemarks,
  250. contactList: nextProps.contactList,
  251. refundInvoice: nextProps.data.refundInvoice,
  252. });
  253. }
  254. getOrgCodeUrl(e) {
  255. this.setState({
  256. orgCodeUrl: e,
  257. });
  258. }
  259. //同意拒绝按钮的有无
  260. changeButtonStatus() {
  261. this.setState({
  262. buttonStatus: !this.state.buttonStatus,
  263. });
  264. window.setTimeout(() => {
  265. this.setState({
  266. reason: "",
  267. });
  268. }, 100);
  269. }
  270. render() {
  271. const pageData = [
  272. {
  273. labelA: "客户名称",
  274. formItemLayoutA: formItemLayout,
  275. dataA: this.props.data.userName,
  276. labelB: "合同编号",
  277. formItemLayoutB: formItemLayout,
  278. dataB: this.props.data.contractNo,
  279. },
  280. {
  281. labelA: "时间",
  282. formItemLayoutA: formItemLayout,
  283. dataA: this.props.data.createTimes,
  284. labelB: "发起人",
  285. formItemLayoutB: formItemLayout,
  286. dataB: this.props.data.applicant,
  287. },
  288. {
  289. labelA: "当前进度",
  290. formItemLayoutA: formItemLayout,
  291. // 当前是咨询师以及咨询师经理时使用shenhePeo函数,其他流程正常显示
  292. dataA:
  293. this.props.data.processState == 3 || this.props.data.processState == 4
  294. ? shenghePeo(this.props.data.examineName, this.props.data.processState)
  295. : getProcessStatusNew(
  296. this.props.data.examineName,
  297. this.props.data.processState,
  298. this.props.data.status
  299. ),
  300. labelB: "变更类型",
  301. formItemLayoutB: formItemLayout,
  302. dataB: getChangeType(this.props.data.type),
  303. },
  304. {
  305. labelA: "合同额(万元)",
  306. formItemLayoutA: formItemLayout,
  307. dataA: this.moneyOld(this.props.data.totalAmount, this.props.money),
  308. labelB: "已收款(万元)",
  309. formItemLayoutB: formItemLayout,
  310. dataB: changeColor(this.props.data.settlementAmount),
  311. },
  312. {
  313. labelA: "欠款(万元)",
  314. formItemLayoutA: formItemLayout,
  315. dataA: changeColor(this.props.data.arrears),
  316. labelB: "申请退款(万元)",
  317. formItemLayoutB: formItemLayout,
  318. dataB: changeColor(this.props.data.changeAmount),
  319. },
  320. {
  321. labelA: "首付款(万元)",
  322. formItemLayoutA: formItemLayout,
  323. dataA: changeColor(this.props.data.firstAmount),
  324. },
  325. {
  326. labelA: "变更原因",
  327. formItemLayoutA: formItemLayout,
  328. dataA: this.props.data.remarks,
  329. },
  330. ];
  331. const planData = [
  332. {
  333. labelA: "项目进度",
  334. formItemLayoutA: formItemLayout,
  335. dataA: this.props.data.projectState,
  336. labelB: "发生成本费用(万元)",
  337. formItemLayoutB: formItemLayout,
  338. dataB: this.props.data.zxsCost,
  339. },
  340. {
  341. labelA: "变更原因",
  342. formItemLayoutA: formItemLayout,
  343. dataA: this.props.data.zxsRemarks,
  344. },
  345. ];
  346. const financeData = [
  347. {
  348. labelA: "发生成本(万元)",
  349. formItemLayoutA: formItemLayout,
  350. dataA: this.props.data.cwCost,
  351. labelB: "应退金额(万元)",
  352. formItemLayoutB: formItemLayout,
  353. dataB: this.props.data.refundableAmount,
  354. },
  355. ];
  356. const buttonData = [
  357. {
  358. name: "同意",
  359. title: "理由",
  360. placeholder: "请输入理由",
  361. type: "primary",
  362. status: 2,
  363. onChange: (value) => {
  364. this.setState({
  365. remarks: value,
  366. });
  367. },
  368. },
  369. {
  370. name: "拒绝",
  371. title: "理由",
  372. placeholder: "请输入理由",
  373. type: "danger",
  374. status: 3,
  375. onChange: (value) => {
  376. this.setState({
  377. remarks: value,
  378. });
  379. },
  380. },
  381. ];
  382. const orgCodeUrl = this.props.pictureUrl;
  383. const attachment = this.props.attachment
  384. // console.log(this.props.attachment);
  385. // console.log(this.props.orderUid);
  386. return (
  387. <div className="clearfix changeDetail">
  388. <div
  389. className="clearfix"
  390. ref={(e) => {
  391. this.refs = e;
  392. }}
  393. >
  394. <div
  395. style={{
  396. borderRadius: "50%",
  397. width: 300,
  398. height: 300,
  399. position: "absolute",
  400. top: 230,
  401. left: 525,
  402. transform: "rotate(-5deg)",
  403. zIndex: 1,
  404. display:
  405. this.props.data.status == 4
  406. ? "block"
  407. : "none",
  408. }}
  409. >
  410. <img src={tongguo} style={{ width: "100%" }} />
  411. </div>
  412. <div
  413. style={{
  414. borderRadius: "50%",
  415. width: 300,
  416. height: 300,
  417. position: "absolute",
  418. top: 284,
  419. left: 586,
  420. transform: "rotate(-5deg)",
  421. zIndex: 1,
  422. display: this.props.data.status == 5 ? "block" : "none",
  423. }}
  424. >
  425. <img src={quxiao} style={{ width: "63%" }} />
  426. </div>
  427. <h2 style={{ textAlign: "center", marginBottom: 10, marginTop: 20 }}>
  428. 合同变更记录
  429. </h2>
  430. {pageData.map((item, index) => {
  431. return <Itemlist orderUid={this.props.orderUid} key={index} pageData={item} id={this.props.id} />;
  432. })}
  433. <Form.Item
  434. label="变更凭证"
  435. labelCol={{ span: 4 }}
  436. wrapperCol={{ span: 18 }}
  437. >
  438. <div style={{ paddingTop: '10px', paddingBottom: '10px' }}>
  439. <ImgList domId={"bfpz"} fileList={orgCodeUrl} ItemWidth={'96px'} />
  440. </div>
  441. <Rizhi changeId={this.props.id} />
  442. </Form.Item>
  443. {
  444. this.props.contractPictureUrl && this.props.contractPictureUrl.length != 0 &&
  445. <div className="clearfix">
  446. <Form.Item
  447. labelCol={{ span: 4 }}
  448. wrapperCol={{ span: 18 }}
  449. label="最新合同"
  450. >
  451. <div style={{ paddingTop: 10 }}>
  452. <ImgList
  453. domId={"zxht"}
  454. fileList={
  455. this.props.contractPictureUrl
  456. }
  457. ItemWidth={"96px"}
  458. />
  459. </div>
  460. </Form.Item>
  461. </div>
  462. }
  463. {/* <h2 style={{ textAlign: "center", marginBottom: 0 }}>变更日志</h2> */}
  464. <ul
  465. style={{
  466. width: "868px",
  467. overflow: "hidden",
  468. paddingLeft: "90px",
  469. position: "relative",
  470. }}
  471. >
  472. {/* <span>操作人:</span> */}
  473. {this.props.dataSource.map((item, index) => {
  474. if (item.status == 0) {
  475. item.status = "发起";
  476. } else if (item.status == 1) {
  477. item.status = "审核中";
  478. } else if (item.status == 2) {
  479. item.status = "通过";
  480. } else if (item.status == 3) {
  481. item.status = "驳回";
  482. } else if (item.status == 4) {
  483. item.status = "完成";
  484. } else if (item.status == 5) {
  485. item.status = "撤销";
  486. }
  487. return (
  488. <li
  489. key={index}
  490. style={{
  491. width: "100%",
  492. height: "auto",
  493. wordBreak: "break-all",
  494. marginBottom: "10px",
  495. }}
  496. >
  497. {item.aname + ":" + "【" + item.status + "】" + item.remarks + "(" + item.createTimes + ")"}
  498. </li>
  499. );
  500. })}
  501. </ul>
  502. <ProAndCuiList id={this.props.id} />
  503. {/* 收款情况 */}
  504. <div className="clearfix">
  505. <h3 style={{ marginLeft: 20, fontWeight: 800, marginBottom: 10 }}>
  506. 收款情况
  507. </h3>
  508. <div style={{ marginLeft: "90px" }}>
  509. <ul>
  510. {(this.props.proceedsData.bill || []).map((item, index) => (
  511. <li key={index}>
  512. {item.payTime +
  513. " " +
  514. item.aName +
  515. " 收款:" +
  516. item.transactionAmount +
  517. "万元"}
  518. </li>
  519. ))}
  520. </ul>
  521. <div>收款总计:{this.props.proceedsTotal}万元</div>
  522. </div>
  523. <br />
  524. <div style={{ marginLeft: "90px" }}>
  525. <ul>
  526. {(this.props.proceedsData.invoice || []).map((item, index) => (
  527. <li key={index}>
  528. {item.createTime + " " + " 开票:" + item.amount + "万元"}
  529. </li>
  530. ))}
  531. </ul>
  532. <div>开票总计:{this.props.invoiceTotal}万元</div>
  533. </div>
  534. <p style={{ marginLeft: "90px", color: "red" }}>
  535. 系统预估 产生成本(万元):
  536. {this.props.data.estimateCost
  537. ? this.props.data.estimateCost
  538. : "0"}{" "}
  539. &nbsp;应退金额(万元):
  540. {this.props.data.estimateRefundable
  541. ? this.props.data.estimateRefundable
  542. : "0"}
  543. </p>
  544. </div>
  545. {/* 当前财务状态 */}
  546. <div
  547. style={{
  548. display: this.props.data.processState > 6 ? "block" : "none",
  549. }}
  550. >
  551. <h3 style={{ marginLeft: 20, fontWeight: 800, marginBottom: 10 }}>
  552. 当前财务状态(财务填写)
  553. </h3>
  554. {financeData.map((item, index) => {
  555. return <Itemlist orderUid={this.props.orderUid} key={index} pageData={item} id={this.props.id} />;
  556. })}
  557. </div>
  558. {/* 回收退票 */}
  559. <div
  560. style={{
  561. display:
  562. (this.props.data.processState == 9 ||
  563. this.props.data.processState == 8) &&
  564. (this.props.data.status == 2 || this.props.data.status == 4 || this.props.data.status == 3 || this.props.data.status == 6)
  565. ? "block"
  566. : "none",
  567. }}
  568. >
  569. <h3 style={{ marginLeft: 20, fontWeight: 800, marginBottom: 10 }}>
  570. 回收退票
  571. </h3>
  572. <Table
  573. size="middle"
  574. pagination={false}
  575. bordered
  576. columns={this.state.ContactsLists}
  577. dataSource={this.state.contactList}
  578. />
  579. </div>
  580. {/* 完成审核,上传附件 */}
  581. <div style={{
  582. position: "relative",
  583. display:
  584. (this.props.data.processState == 8 ||
  585. this.props.data.processState == 9) &&
  586. this.props.data.status == 2 || this.props.data.status == 4 || this.props.data.status == 3 || this.props.data.status == 6
  587. ? "block"
  588. : "none",
  589. marginTop: 10,
  590. }}
  591. >
  592. <hr
  593. style={{
  594. marginTop: 12,
  595. marginBottom: 10,
  596. backgroundColor: "black",
  597. height: 1,
  598. border: "none",
  599. }}
  600. />
  601. <h3
  602. style={{
  603. marginLeft: 20,
  604. fontWeight: 800,
  605. marginBottom: 10,
  606. display: "inline-block",
  607. }}
  608. >
  609. 完成审核,上传附件{" "}
  610. <span
  611. style={{ fontSize: 12, fontWeight: "normal", color: "red" }}
  612. >
  613. (注:由营销员上传变更后附件,全变更流程完成。)
  614. </span>
  615. </h3>
  616. <div>
  617. <Form.Item
  618. label="变更附件"
  619. labelCol={{ span: 4 }}
  620. wrapperCol={{ span: 18 }}
  621. >
  622. <div style={{ paddingTop: '10px', paddingBottom: '10px' }}>
  623. {attachment.length > 0 ? <ImgList domId={this.props.domId + 2 ? this.props.domId + 2 : 'changeDetailyxgly1'} fileList={attachment} ItemWidth={'96px'} /> : '无附件'}
  624. </div>
  625. </Form.Item>
  626. </div>
  627. </div>
  628. <div
  629. style={{
  630. display:
  631. (this.props.data.processState == 8 ||
  632. this.props.data.processState == 9) &&
  633. this.props.data.status == 4 &&
  634. this.props.data.refundStatus
  635. ? "block"
  636. : "none",
  637. }}
  638. >
  639. <Refund data={this.props.data} id={this.props.id} />
  640. </div>
  641. </div>
  642. {
  643. ((this.props.processState == this.props.data.processState) &&
  644. (this.props.data.status == 1 || this.props.data.status == 3)) &&
  645. <div>
  646. <div className="clearfix">
  647. <FormItem
  648. style={{ height: "auto" }}
  649. labelCol={{ span: 4 }}
  650. wrapperCol={{ span: 18 }}
  651. label="备注"
  652. >
  653. <TextArea
  654. rows={4}
  655. placeholder="请输入备注信息"
  656. style={{ width: "95%" }}
  657. value={this.state.reason}
  658. onChange={(e) => {
  659. let reason = e.target.value;
  660. this.setState({ reason });
  661. }}
  662. />
  663. </FormItem>
  664. </div>
  665. <div
  666. className="clearfix"
  667. style={{ display: "flex", justifyContent: "space-around" }}
  668. >
  669. {buttonData.map((item, index) => {
  670. return (
  671. <AgreeButton
  672. data={item}
  673. key={index}
  674. backData={this.props.data}
  675. processState={this.props.processState}
  676. visible={this.changeButtonStatus}
  677. loadData={this.props.loadData}
  678. reason={this.state.reason}
  679. ajaxData={this.state}
  680. rejectState={this.state.rejectState}
  681. onCancel={this.props.onCancel}
  682. />
  683. );
  684. })}
  685. </div>
  686. </div>
  687. }
  688. {/* <ReactToPrint
  689. trigger={() => (
  690. <div className="clearfix">
  691. <Button type="primary" style={{ float: "right", marginTop: 10 }}>
  692. 打印
  693. </Button>
  694. </div>
  695. )}
  696. content={() => this.refs}
  697. /> */}
  698. {/* <OrderCoor
  699. orderNo={this.props.orderNo}
  700. /> */}
  701. <ReactToPrint
  702. trigger={() => (
  703. <Button
  704. type="primary"
  705. style={{
  706. float: "right",
  707. marginTop: 10,
  708. position: "absolute",
  709. top: 0,
  710. right: 30,
  711. }}
  712. >
  713. 打印
  714. </Button>
  715. )}
  716. content={() => this.refs}
  717. />
  718. </div>
  719. );
  720. }
  721. }
  722. export { ChangeDetail, getChangeType };