projectDetails.jsx 73 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462
  1. import React,{Component} from 'react';
  2. import {Button, Form, Input, message, Modal, Spin, Table, Tabs, Tag} from "antd";
  3. import PatentSchedule from "../task/patentSchedule";
  4. import ImgList from "../../../common/imgList";
  5. import OrderDetail from "../../order/orderNew/changeComponent/orderDetail";
  6. import {
  7. getProcessStatus,
  8. getApproval,
  9. getTaskStatus,
  10. getLiquidationStatus,
  11. splitUrl,
  12. getProjectStatus,
  13. getboutique,
  14. getprovince,
  15. ShowModal,
  16. getProjectName
  17. } from "@/tools";
  18. import OrderRiZi from "@/orderRiZi.jsx";
  19. import $ from "jquery";
  20. import DeclarationProgress from "../../../common/declarationProgress";
  21. const FormItem =Form.Item;
  22. const {TabPane} = Tabs;
  23. const formItemLayout = {
  24. labelCol: { span: 8 },
  25. wrapperCol: { span: 14 },
  26. };
  27. const utils = {
  28. getSatisfaction: function (num) {
  29. switch (num) {
  30. case 0:
  31. return "未收回";
  32. case 1:
  33. return "已收回";
  34. default:
  35. return "其它";
  36. }
  37. },
  38. getChargeback: function (num) {
  39. switch (num) {
  40. case 0:
  41. return "已完成";
  42. case 1:
  43. return "未完成";
  44. default:
  45. return "其它";
  46. }
  47. },
  48. };
  49. class ProjectDetails extends Component{
  50. constructor(props) {
  51. super(props);
  52. this.state={
  53. timeRecordparse:{},
  54. activeKey: '1',
  55. loading: false,
  56. orderData: [],
  57. orderNo: "",
  58. jiedian: [],
  59. jiedianNew: [],
  60. searchMore: true,
  61. assignVisible: false,
  62. releaseDate: [],
  63. roleName: "",
  64. testFlag: true,
  65. departmentArr: [],
  66. boHuivisible: false,
  67. selectedRowKeys: [],
  68. selectedRows: [],
  69. paginations: false,
  70. pagination: {
  71. defaultCurrent: 1,
  72. defaultPageSize: 10,
  73. showQuickJumper: true,
  74. pageSize: 10,
  75. onChange: function (page) {
  76. this.loadData(page);
  77. }.bind(this),
  78. showTotal: function (total) {
  79. return "共" + total + "条数据";
  80. },
  81. },
  82. columns: [
  83. {
  84. title: "项目编号",
  85. dataIndex: "id",
  86. key: "id",
  87. render: (text, record) => {
  88. if (record.splitStatus == 2) {
  89. return <span>{record.splitSuper + "-" + record.splitId}</span>;
  90. } else {
  91. return text;
  92. }
  93. },
  94. },
  95. {
  96. title: "任务名称",
  97. dataIndex: "taskName",
  98. key: "taskName",
  99. className: "taskName",
  100. },
  101. {
  102. title: "订单编号",
  103. dataIndex: "orderNo",
  104. key: "orderNo",
  105. },
  106. {
  107. title: "业务类别",
  108. dataIndex: "cname",
  109. key: "cname",
  110. },
  111. {
  112. title: "客户名称",
  113. dataIndex: "userName",
  114. key: "userName",
  115. className: "userName",
  116. },
  117. {
  118. title: "任务状态",
  119. dataIndex: "taskStatus",
  120. key: "taskStatus",
  121. render: (text) => {
  122. return getTaskStatus(text);
  123. },
  124. },
  125. {
  126. title: "项目状态",
  127. dataIndex: "projectStatus",
  128. key: "projectStatus",
  129. render: (text) => {
  130. return getProjectStatus(text);
  131. },
  132. },
  133. {
  134. title: "分配时间",
  135. dataIndex: "taskDate",
  136. key: "taskDate",
  137. },
  138. {
  139. title: "任务数量",
  140. dataIndex: "commodityQuantity",
  141. key: "commodityQuantity",
  142. },
  143. {
  144. title: "任务责任人",
  145. dataIndex: "receiverName",
  146. key: "receiverName",
  147. },
  148. {
  149. title: "订单部门",
  150. dataIndex: "depName",
  151. key: "depName",
  152. },
  153. ],
  154. dataSource: [],
  155. searchTime: [],
  156. columnsX: [
  157. {
  158. title: "业务项目名称",
  159. dataIndex: "commodityName",
  160. key: "commodityName",
  161. },
  162. {
  163. title: "项目类别",
  164. dataIndex: "cname",
  165. key: "cname",
  166. },
  167. {
  168. title: "项目数量",
  169. dataIndex: "commodityQuantity",
  170. key: "commodityQuantity",
  171. render: (text, record) => {
  172. if (record.splitStatus == 1) {
  173. return (
  174. <span>
  175. {text}{" "}
  176. <Tag
  177. color="#108ee9"
  178. onClick={(e) => {
  179. e.stopPropagation();
  180. this.showRes(record);
  181. }}
  182. >
  183. 已拆
  184. </Tag>
  185. </span>
  186. );
  187. } else {
  188. return text;
  189. }
  190. },
  191. },
  192. {
  193. title: "金额(万元)",
  194. dataIndex: "commodityPrice",
  195. key: "commodityPrice",
  196. render: (text, record) => {
  197. return (
  198. <span>
  199. {this.props.isZxs || text === -1 ? '***' : text}
  200. </span>
  201. )
  202. }
  203. },
  204. {
  205. title: "负责人",
  206. dataIndex: "contacts",
  207. key: "contacts",
  208. },
  209. {
  210. title: "负责人电话",
  211. dataIndex: "contactsMobile",
  212. key: "contactsMobile",
  213. },
  214. {
  215. title: "主要项目",
  216. dataIndex: "main",
  217. key: "main",
  218. render: (text) => {
  219. return text ? "是" : "否";
  220. },
  221. },
  222. {
  223. title: "项目说明",
  224. dataIndex: "taskComment",
  225. key: "taskComment",
  226. render: (text) => {
  227. return text && text.length > 8 ? text.substr(0, 8) + "…" : text;
  228. },
  229. },
  230. ],
  231. columnsA: [
  232. {
  233. title: "流程",
  234. dataIndex: "content",
  235. key: "content",
  236. align: "center",
  237. },
  238. {
  239. title: "操作人",
  240. dataIndex: "aName",
  241. key: "aName",
  242. align: "center",
  243. },
  244. {
  245. title: "时间",
  246. dataIndex: "createTimes",
  247. key: "createTimes",
  248. align: "center",
  249. },
  250. ],
  251. dataSourceX: [],
  252. dataSourceA: [],
  253. ContactsLists: [
  254. {
  255. title: "批次",
  256. dataIndex: "num",
  257. key: "num",
  258. },
  259. {
  260. title: "下证时间",
  261. dataIndex: "licenceTimes",
  262. key: "licenceTimes",
  263. },
  264. {
  265. title: "下证数量",
  266. dataIndex: "alreadyNumber",
  267. key: "alreadyNumber",
  268. },
  269. {
  270. title: "未下证数量",
  271. dataIndex: "notCount",
  272. key: "notCount",
  273. },
  274. ],
  275. displayFees: "none",
  276. costReduction: '',
  277. officialCost: '',
  278. isSoftware: false,
  279. }
  280. this.orderChange = this.orderChange.bind(this);
  281. this.caozuorizhi = this.caozuorizhi.bind(this);
  282. this.getOrderLog = this.getOrderLog.bind(this);
  283. this.rizhi = this.rizhi.bind(this);
  284. }
  285. orderChange(key){
  286. this.setState({
  287. activeKey: key,
  288. });
  289. if (key === '2') {
  290. this.orderDetailData(this.props.orderNo);
  291. this.xiangmu(this.props.orderNo);
  292. this.jiedian(this.props.orderNo);
  293. this.jiedianNew(this.props.orderNo);
  294. }
  295. }
  296. caozuorizhi(){
  297. this.setState({
  298. visibleA: true,
  299. });
  300. $.ajax({
  301. method: "get",
  302. dataType: "json",
  303. crossDomain: false,
  304. url: globalConfig.context + "/api/admin/orderProject/TaskLogList",
  305. data: {
  306. id: this.props.id,
  307. },
  308. success: function (data) {
  309. let theArr = [];
  310. if (data.error.length || data.data.list == "") {
  311. if (data.error && data.error.length) {
  312. message.warning(data.error[0].message);
  313. }
  314. } else {
  315. for (let i = 0; i < data.data.length; i++) {
  316. let thisdata = data.data[i];
  317. theArr.push({
  318. key: i,
  319. id: thisdata.id, //日志ID
  320. content: thisdata.content, //流程
  321. taskId: thisdata.taskId, //任务ID
  322. aName: thisdata.aName, //负责人
  323. createTimes: thisdata.createTimes, //时间
  324. });
  325. }
  326. }
  327. this.setState({
  328. dataSourceA: theArr,
  329. });
  330. }.bind(this),
  331. }).always(
  332. function () {
  333. this.setState({
  334. loading: false,
  335. });
  336. }.bind(this)
  337. );
  338. }
  339. //节点列表
  340. jiedian(orderNos) {
  341. $.ajax({
  342. method: "get",
  343. dataType: "json",
  344. crossDomain: false,
  345. url: globalConfig.context + "/api/admin/newOrder/selectOrderDun",
  346. data: {
  347. orderNo: orderNos,
  348. },
  349. success: function (data) {
  350. let theArr = [];
  351. let thisData = [];
  352. if (data.error.length || data.data.list == "") {
  353. if (data.error && data.error.length) {
  354. message.warning(data.error[0].message);
  355. }
  356. } else {
  357. for (let i = 0; i < data.data.length; i++) {
  358. thisData = data.data[i];
  359. theArr.push({
  360. key: i,
  361. dunSubject: thisData.dunSubject
  362. ? thisData.dunSubject.toString()
  363. : "", //催款科目
  364. id: thisData.id, //节点Id
  365. money: thisData.money, //催款金额
  366. dunStatus: thisData.dunStatus, //催款状态
  367. });
  368. }
  369. this.setState({
  370. jiedian: theArr,
  371. });
  372. }
  373. }.bind(this),
  374. });
  375. }
  376. //部门
  377. departmentList() {
  378. this.setState({
  379. loading: true,
  380. });
  381. $.ajax({
  382. method: "get",
  383. dataType: "json",
  384. crossDomain: false,
  385. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  386. data: {},
  387. success: function (data) {
  388. let thedata = data.data;
  389. let theArr = [];
  390. if (!thedata) {
  391. if (data.error && data.error.length) {
  392. message.warning(data.error[0].message);
  393. }
  394. } else {
  395. thedata.map(function (item, index) {
  396. theArr.push({
  397. key: index,
  398. name: item.name,
  399. id: item.id,
  400. });
  401. });
  402. }
  403. this.setState({
  404. departmentArr: theArr,
  405. });
  406. }.bind(this),
  407. }).always(
  408. function () {
  409. this.setState({
  410. loading: false,
  411. });
  412. }.bind(this)
  413. );
  414. }
  415. //订单详情
  416. xiangqing(id) {
  417. $.ajax({
  418. method: "get",
  419. dataType: "json",
  420. crossDomain: false,
  421. url: globalConfig.context + "/api/admin/orderProject/orderTaskDetail",
  422. data: {
  423. id: id,
  424. },
  425. success: function (data) {
  426. if (data.error.length || data.data.list == "") {
  427. if (data.error && data.error.length) {
  428. message.warning(data.error[0].message);
  429. }
  430. } else {
  431. let thisdata = data.data;
  432. this.setState({
  433. certificationCorporate: thisdata.certificationCorporate,//认证费公司
  434. certificationFee: thisdata.certificationFee,//认证费
  435. ifCertificationFee: thisdata.ifCertificationFee,//是否包含认证费
  436. id: thisdata.id, //ID
  437. orderNo: thisdata.orderNo, //订单编号
  438. userName: thisdata.userName, //客户名称
  439. taskName: thisdata.taskName, //任务名称
  440. cname: thisdata.cname, //项目品类
  441. contractNo: thisdata.contractNo, //合同编号
  442. projectStatus: thisdata.projectStatus, //项目状态
  443. taskStatus: thisdata.taskStatus, //任务状态
  444. taskDate: thisdata.taskDate, //分配时间
  445. taskComment: thisdata.taskComment, //说明
  446. attachmentUrl: thisdata.attachmentUrl
  447. ? splitUrl(
  448. thisdata.attachmentUrl,
  449. ",",
  450. globalConfig.avatarHost + "/upload"
  451. )
  452. : [], //图片地址
  453. salesmanName: thisdata.salesmanName, //订单负责人
  454. startDate: thisdata.startDate, //启动日期
  455. endDate: thisdata.endDate, //结束日期
  456. acceptDate: thisdata.acceptDate, //受理日期
  457. reviewDate: thisdata.reviewDate, //评审日期
  458. publicityDate: thisdata.publicityDate, //公示日期
  459. licenceDate: thisdata.licenceDate, //发证日期
  460. contacts: thisdata.contacts, //联系人
  461. contactMobile: thisdata.contactMobile, //联系人电话
  462. legalPerson: thisdata.legalPerson, //法人
  463. legalPersonTel: thisdata.legalPersonTel, //法人电话
  464. certificateNumber: thisdata.certificateNumber, //证书编号
  465. status: thisdata.status, //状态
  466. formRetrieve: thisdata.formRetrieve, //满意度表格
  467. taskRefund: thisdata.taskRefund, //退单
  468. refundContent: thisdata.refundContent, //退单信息
  469. retrieveContent: thisdata.retrieveContent, //回收信息
  470. arrivalMoney: thisdata.arrivalMoney, //是否到款
  471. setUpAmount: thisdata.setUpAmount, //立项金额
  472. declareUser: thisdata.declareUser, //账号
  473. declarePwd: thisdata.declarePwd, //密码
  474. depName: thisdata.depName, //订单部门
  475. outsourceName: thisdata.outsourceName, //外包公司名称
  476. outsourcePrice: thisdata.outsourcePrice, //外包价格
  477. declarationBatch: thisdata.declarationBatch,
  478. bpType:thisdata.bpType,//0 正常 1专利 2软著 3审计 4双软 5高新 6商标
  479. cSort: thisdata.sort,
  480. specialComment: thisdata.specialComment,
  481. urgentDay: thisdata.urgentDay, //有无材料
  482. ifMaterial: thisdata.ifMaterial, //加急情况
  483. spotCheckStatus: thisdata.spotCheckStatus,
  484. setUpStatus: thisdata.setUpStatus,
  485. setUpTime: thisdata.setUpTime,
  486. highTechStatus: thisdata.highTechStatus,
  487. acceptCount:thisdata.acceptCount, //受理数
  488. certificatesCount:thisdata.certificatesCount, //授权数
  489. rejectCount:thisdata.rejectCount, //驳回数
  490. commodityQuantity:thisdata.commodityQuantity, //派单项目数
  491. timeRecordparse: thisdata.timeRecord ? JSON.parse(thisdata.timeRecord) : {},//项目状态JSON
  492. });
  493. }
  494. }.bind(this),
  495. }).always(
  496. function () {
  497. this.setState({
  498. loading: false,
  499. });
  500. }.bind(this)
  501. );
  502. }
  503. //订单详情
  504. xiangqings(orderNos) {
  505. $.ajax({
  506. method: "get",
  507. dataType: "json",
  508. crossDomain: false,
  509. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  510. data: {
  511. orderNo: orderNos,
  512. },
  513. success: function (data) {
  514. let thisdata = data.data;
  515. let ProvinceCityArr = [];
  516. let ProvinceS = thisdata.locationProvince; //省
  517. let citys = thisdata.locationCity; //市
  518. let Areas = thisdata.locationArea; //区
  519. ProvinceCityArr.push(ProvinceS, citys, Areas);
  520. if (data.error.length || data.data.list == "") {
  521. if (data.error && data.error.length) {
  522. message.warning(data.error[0].message);
  523. }
  524. } else {
  525. this.setState({
  526. processStatus: thisdata.processStatus, //流程状态
  527. liquidationStatus: thisdata.liquidationStatus, //结算状态
  528. approval: thisdata.approval, //特批状态
  529. orderRemarks: thisdata.orderRemarks, //订单留言
  530. salesmanName: thisdata.salesmanName, //营销员名称
  531. salesmanMobile: thisdata.salesmanMobile, //营销员电话
  532. oldSalesmanName: thisdata.oldSalesmanName, //营销员名称
  533. oldSalesmanMobile: thisdata.oldSalesmanMobile, //营销员电话
  534. financeName: thisdata.financeName, //财务名称
  535. financeMobile: thisdata.financeMobile, //财务电话
  536. nowFinance: thisdata.nowFinance, //财务名称
  537. nowFinanceMobile: thisdata.nowFinanceMobile, //财务电话
  538. depName: thisdata.depName, //订单部门
  539. locationProvince: thisdata.locationProvince,
  540. locationCity: thisdata.locationCity,
  541. locationArea: thisdata.locationArea,
  542. ProvinceCity: ProvinceCityArr,
  543. postalAddress: thisdata.postalAddress, //详细地址
  544. outsource: thisdata.outsource,
  545. });
  546. }
  547. }.bind(this),
  548. }).always(
  549. function () {
  550. this.setState({
  551. loading: false,
  552. });
  553. }.bind(this)
  554. );
  555. }
  556. //查看下证信息
  557. loaduserss(id) {
  558. $.ajax({
  559. method: "get",
  560. dataType: "json",
  561. crossDomain: false,
  562. url: globalConfig.context + "/api/admin/orderProject/selectTaskProgress",
  563. data: {
  564. tid: id,
  565. },
  566. success: function (data) {
  567. let theArr = [];
  568. let thisData = [];
  569. if (!thisData) {
  570. if (data.error && data.error.length) {
  571. message.warning(data.error[0].message);
  572. }
  573. } else {
  574. for (let i = 0; i < data.data.length; i++) {
  575. thisData = data.data[i];
  576. theArr.push({
  577. num: i + 1,
  578. key: i,
  579. id: thisData.id, //编号
  580. alreadyNumber: thisData.alreadyNumber, //下证数
  581. licenceTimes: thisData.licenceTimes, //下证时间
  582. notCount: thisData.notCount, //未下证数
  583. flag: true,
  584. });
  585. }
  586. this.setState({
  587. contactList: theArr,
  588. });
  589. }
  590. }.bind(this),
  591. }).always(
  592. function () {
  593. this.setState({
  594. loading: false,
  595. });
  596. }.bind(this)
  597. );
  598. }
  599. jiedianNew(orderNos) {
  600. $.ajax({
  601. method: "get",
  602. dataType: "json",
  603. crossDomain: false,
  604. url:
  605. globalConfig.context + "/api/admin/newOrderDun/selectListNewOrderDun",
  606. data: {
  607. orderNo: orderNos,
  608. },
  609. success: function (data) {
  610. if (data.error && data.error.length) {
  611. message.warning(data.error[0].message);
  612. } else {
  613. let theArr = [];
  614. let thisData = [];
  615. let arr = data.data || [];
  616. let totalCui = 0;
  617. for (let i = 0; i < arr.length; i++) {
  618. thisData = arr[i];
  619. totalCui += +thisData.money;
  620. thisData.key = i;
  621. thisData.dunSubject = thisData.dunSubject
  622. ? thisData.dunSubject.toString()
  623. : "", //催款科目
  624. theArr.push(thisData);
  625. }
  626. if (!totalCui) {
  627. totalCui = 0;
  628. }
  629. totalCui = (Math.round(totalCui * 1000000) / 1000000).toFixed(6);
  630. this.setState({
  631. jiedianNew: theArr,
  632. totalCui,
  633. });
  634. }
  635. }.bind(this),
  636. }).always(
  637. function () {
  638. this.setState({
  639. loading: false,
  640. });
  641. }.bind(this)
  642. );
  643. }
  644. orderDetailData(orderNos) {
  645. this.setState({
  646. loading: true,
  647. });
  648. $.ajax({
  649. method: "get",
  650. dataType: "json",
  651. crossDomain: false,
  652. url: globalConfig.context + "/api/admin/newOrder/getOrderNewDetail",
  653. data: {
  654. orderNo: orderNos,
  655. },
  656. success: function (data) {
  657. if (data.error.length || data.data.list == "") {
  658. if (data.error && data.error.length) {
  659. message.warning(data.error[0].message);
  660. this.setState({
  661. loading: false,
  662. });
  663. }
  664. } else {
  665. let thisdata = data.data;
  666. this.setState({
  667. loading: false,
  668. userName: thisdata.userName,
  669. primaryOrderNo: thisdata.primaryOrder,
  670. additionalOrder: thisdata.additionalOrder,
  671. contractNo: thisdata.contractNo,
  672. orderData: thisdata,
  673. isAddition: thisdata.additionalOrder ? true : false,
  674. contractPictureUrl: thisdata.contractPictureUrl
  675. ? splitUrl(
  676. thisdata.contractPictureUrl,
  677. ",",
  678. globalConfig.avatarHost + "/upload"
  679. )
  680. : [],
  681. });
  682. }
  683. }.bind(this),
  684. });
  685. }
  686. //项目列表
  687. xiangmu(orderNos) {
  688. this.setState({
  689. loading: true,
  690. });
  691. $.ajax({
  692. method: "get",
  693. dataType: "json",
  694. crossDomain: false,
  695. url: globalConfig.context + "/api/admin/newOrder/getOrderTask",
  696. data: {
  697. orderNo: orderNos,
  698. },
  699. success: function (data) {
  700. let theArr = [];
  701. if (data.error.length || data.data.list == "") {
  702. if (data.error && data.error.length) {
  703. message.warning(data.error[0].message);
  704. }
  705. } else {
  706. for (let i = 0; i < data.data.length; i++) {
  707. let thisdata = data.data[i];
  708. thisdata.key = i;
  709. theArr.push(thisdata);
  710. }
  711. }
  712. this.setState({
  713. dataSourceX: theArr,
  714. });
  715. }.bind(this),
  716. }).always(
  717. function () {
  718. this.setState({
  719. loading: false,
  720. });
  721. }.bind(this)
  722. );
  723. }
  724. rizhi() {
  725. this.setState({
  726. loading: true,
  727. });
  728. $.ajax({
  729. method: "get",
  730. dataType: "json",
  731. crossDomain: false,
  732. url: "/api/admin/newOrder/selectOrderLog",
  733. data: {
  734. orderNo: this.props.orderNo,
  735. },
  736. success: function (data) {
  737. let theArr = [];
  738. let thisData = data.data;
  739. if (!thisData.length) {
  740. if (data.error && data.error.length) {
  741. message.warning(data.error[0].message);
  742. }
  743. } else {
  744. for (let i = 0; i < data.data.length; i++) {
  745. let thisdata = data.data[i];
  746. theArr.push({
  747. processName: thisdata.processName,
  748. adminName: thisdata.adminName,
  749. createDate: thisdata.createDate,
  750. remarks: thisdata.remarks,
  751. });
  752. }
  753. }
  754. this.setState({
  755. dataSourceY: theArr,
  756. });
  757. }.bind(this),
  758. }).always(
  759. function () {
  760. this.setState({
  761. loading: false,
  762. });
  763. }.bind(this)
  764. );
  765. }
  766. getOrderLog() {
  767. this.setState({
  768. avisible: true,
  769. });
  770. this.rizhi();
  771. }
  772. componentDidMount() {
  773. if (this.props.taskName.substring(0, 5) === "软件著作权") {
  774. this.setState({
  775. isSoftware: true,
  776. })
  777. }
  778. this.setState({
  779. isIso: this.props.taskName.indexOf("贯标") !== -1,
  780. })
  781. this.departmentList();
  782. this.xiangqing(this.props.id);
  783. this.xiangqings(this.props.orderNo);
  784. this.xiangmu(this.props.orderNo);
  785. this.loaduserss(this.props.id);
  786. }
  787. render() {
  788. return (
  789. this.props.visible ? <Modal
  790. maskClosable={false}
  791. className="customeDetails"
  792. footer=""
  793. title=""
  794. width="900px"
  795. visible={this.props.visible}
  796. onOk={()=>{
  797. this.props.visitOk && this.props.visitOk()
  798. }}
  799. onCancel={()=>{
  800. this.props.visitCancel && this.props.visitCancel();
  801. }}
  802. >
  803. <Tabs activeKey={this.state.activeKey} onChange={this.orderChange}>
  804. <TabPane tab="项目概况" key="1">
  805. {this.state.activeKey === "1" ? <Form
  806. layout="horizontal"
  807. id="demand-form"
  808. style={{ paddingBottom: "0px" }}
  809. >
  810. <Spin spinning={this.state.loading}>
  811. <div className="clearfix" style={{paddingTop:'15px'}}>
  812. <div className="clearfix">
  813. <FormItem
  814. className="half-item"
  815. {...formItemLayout}
  816. label="项目状态"
  817. >
  818. <span>{getProjectName(parseInt(this.state.projectStatus))}</span>
  819. <Button
  820. type="primary"
  821. size="small"
  822. onClick={this.caozuorizhi}
  823. >
  824. 操作日志
  825. </Button>
  826. {this.state.visibleA ? <Modal
  827. maskClosable={false}
  828. width="800px"
  829. visible={this.state.visibleA}
  830. onCancel={()=>{
  831. this.setState({
  832. visibleA: false
  833. })
  834. }}
  835. title="操作日志"
  836. footer=""
  837. className="admin-desc-content"
  838. >
  839. <div className="patent-table patent-table-center">
  840. <Spin spinning={this.state.loading}>
  841. <Table
  842. columns={this.state.columnsA}
  843. dataSource={this.state.dataSourceA}
  844. pagination={false}
  845. bordered
  846. size="small"
  847. />
  848. </Spin>
  849. </div>
  850. </Modal> : null}
  851. </FormItem>
  852. <FormItem
  853. className="half-item"
  854. {...formItemLayout}
  855. label="合同编号"
  856. >
  857. <span>{this.state.contractNo}</span>
  858. </FormItem>
  859. </div>
  860. <div className="clearfix">
  861. <FormItem
  862. className="half-item"
  863. {...formItemLayout}
  864. label="是否特批"
  865. >
  866. <span>{getApproval(this.state.approval)}</span>
  867. </FormItem>
  868. <FormItem
  869. className="half-item"
  870. {...formItemLayout}
  871. label="结算状态"
  872. >
  873. <span>
  874. {getLiquidationStatus(this.state.liquidationStatus)}
  875. </span>
  876. </FormItem>
  877. <FormItem
  878. className="half-item"
  879. {...formItemLayout}
  880. label="流程状态"
  881. >
  882. <span>
  883. {getProcessStatus(this.state.processStatus)}
  884. </span>
  885. </FormItem>
  886. <FormItem
  887. className="half-item"
  888. {...formItemLayout}
  889. label="订单编号"
  890. >
  891. <span>{this.state.orderNo}</span>
  892. </FormItem>
  893. {/*<FormItem*/}
  894. {/* className="half-item"*/}
  895. {/* {...formItemLayout}*/}
  896. {/* label="是否外包"*/}
  897. {/*>*/}
  898. {/* <span>{this.state.outsource === 0 ? "否" : "是"}</span>*/}
  899. {/*</FormItem>*/}
  900. </div>
  901. <div className="clearfix">
  902. <FormItem
  903. className="half-item"
  904. {...formItemLayout}
  905. label="满意度表格"
  906. >
  907. <span>
  908. {utils.getSatisfaction(this.state.formRetrieve)}
  909. </span>
  910. </FormItem>
  911. <FormItem
  912. className="half-item"
  913. {...formItemLayout}
  914. label="(满意度)备注"
  915. >
  916. <span>{this.state.retrieveContent}</span>
  917. </FormItem>
  918. </div>
  919. {/*软著显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  920. {this.state.bpType === 2 ? <div className="clearfix">
  921. <FormItem
  922. className="half-item"
  923. {...formItemLayout}
  924. label="加急天数"
  925. >
  926. {
  927. this.state.urgentDay === 1 ? '是' :
  928. this.state.urgentDay === 0 ? '否' : ''
  929. }
  930. </FormItem>
  931. <FormItem
  932. className="half-item"
  933. {...formItemLayout}
  934. label="有无材料"
  935. >
  936. {
  937. this.state.ifMaterial === 1 ? '是':
  938. this.state.ifMaterial === 0 ? '否': ''
  939. }
  940. </FormItem>
  941. </div> : null}
  942. <div className="clearfix">
  943. <div style={{
  944. paddingLeft: '8%',
  945. }}>
  946. <div style={{color:'#000',fontWeight:500}}>
  947. 特别说明
  948. <span style={{color: '#58a3ff',}}>(针对项目的特殊情况说明)</span>
  949. </div>
  950. <div style={{
  951. display:'flex',
  952. }}>
  953. <span style={{paddingRight:'10px',whiteSpace:"nowrap"}}>备注:</span>
  954. <span style={{
  955. flex: 1,
  956. wordBreak: 'break-all',
  957. }}>{this.state.specialComment}</span>
  958. </div>
  959. </div>
  960. </div>
  961. <div className="clearfix">
  962. <h3 className="sub-title">任务信息</h3>
  963. {/*0通用 1专利 2软著 3审计 4双软 5高新 6商标*/}
  964. {/*贯标需要显示*/}
  965. {
  966. this.state.isIso ?
  967. <div>
  968. <FormItem
  969. className="half-item"
  970. {...formItemLayout}
  971. label="认证费"
  972. >
  973. <span>
  974. {
  975. this.state.ifCertificationFee === 1 ? '包含' : '不包含'
  976. }
  977. </span>
  978. </FormItem>
  979. {this.state.ifCertificationFee === 1 ?<FormItem
  980. className="half-item"
  981. {...formItemLayout}
  982. label="认证费(万元)"
  983. >
  984. <span>
  985. {
  986. this.state.certificationFee
  987. }
  988. </span>
  989. </FormItem> : null}
  990. {this.state.ifCertificationFee === 1 ? <FormItem
  991. className="half-item"
  992. {...formItemLayout}
  993. label=""
  994. /> : null}
  995. {this.state.ifCertificationFee === 1 ? <FormItem
  996. className="half-item"
  997. {...formItemLayout}
  998. label="付款公司名称"
  999. >
  1000. <span>
  1001. {this.state.certificationCorporate}
  1002. </span>
  1003. </FormItem>:null}
  1004. </div> : null
  1005. }
  1006. <FormItem
  1007. className="half-item"
  1008. {...formItemLayout}
  1009. label="任务编号"
  1010. >
  1011. <span>
  1012. {
  1013. this.state.splitStatus === 2
  1014. ? this.state.splitSuper + "-" + this.state.splitId
  1015. : this.state.id
  1016. }
  1017. </span>
  1018. </FormItem>
  1019. <FormItem
  1020. className="half-item"
  1021. {...formItemLayout}
  1022. label="任务名称"
  1023. >
  1024. <span>{this.state.taskName}</span>
  1025. </FormItem>
  1026. <FormItem
  1027. className="half-item"
  1028. {...formItemLayout}
  1029. label="任务状态"
  1030. >
  1031. <span>{getTaskStatus(this.state.taskStatus)}</span>
  1032. </FormItem>
  1033. <FormItem
  1034. className="half-item"
  1035. {...formItemLayout}
  1036. label="任务类别"
  1037. >
  1038. <span>{this.state.cname}</span>
  1039. </FormItem>
  1040. <FormItem
  1041. className="half-item"
  1042. {...formItemLayout}
  1043. label="证书编号"
  1044. >
  1045. <span>{this.state.certificateNumber}</span>
  1046. </FormItem>
  1047. </div>
  1048. <div className="clearfix">
  1049. <h3 className="sub-title">联系信息</h3>
  1050. <FormItem
  1051. className="half-item"
  1052. {...formItemLayout}
  1053. label="客户名称"
  1054. >
  1055. <span>{this.state.userName}</span>
  1056. </FormItem>
  1057. <FormItem
  1058. className="half-item"
  1059. {...formItemLayout}
  1060. label="企业法人"
  1061. >
  1062. <span>{this.state.legalPerson}</span>
  1063. </FormItem>
  1064. <FormItem
  1065. className="half-item"
  1066. {...formItemLayout}
  1067. label="法人电话"
  1068. >
  1069. <span>{this.state.legalPersonTel}</span>
  1070. </FormItem>
  1071. <FormItem
  1072. className="half-item"
  1073. {...formItemLayout}
  1074. label="客户联系人"
  1075. >
  1076. <span>{this.state.contacts}</span>
  1077. </FormItem>
  1078. <FormItem
  1079. className="half-item"
  1080. {...formItemLayout}
  1081. label="联系人电话"
  1082. >
  1083. <span>{this.state.contactMobile}</span>
  1084. </FormItem>
  1085. <FormItem
  1086. className="half-item"
  1087. {...formItemLayout}
  1088. label="企业地址"
  1089. >
  1090. <span>
  1091. {getprovince(this.state.locationProvince)}/
  1092. {getprovince(this.state.locationCity)}/
  1093. {getprovince(this.state.locationArea)}
  1094. </span>
  1095. </FormItem>
  1096. <FormItem
  1097. className="half-item"
  1098. {...formItemLayout}
  1099. label=""
  1100. />
  1101. <FormItem className="half-item" {...formItemLayout}>
  1102. <span style={{ paddingLeft: "12em" }}>
  1103. {this.state.postalAddress}
  1104. </span>
  1105. </FormItem>
  1106. </div>
  1107. <div className="clearfix">
  1108. <h3 className="sub-title">订单负责人信息</h3>
  1109. <FormItem
  1110. className="half-item"
  1111. {...formItemLayout}
  1112. label="负责人"
  1113. >
  1114. <span>
  1115. {this.state.salesmanName +
  1116. "(" +
  1117. this.state.depName +
  1118. ")"}
  1119. </span>
  1120. </FormItem>
  1121. <FormItem
  1122. className="half-item"
  1123. {...formItemLayout}
  1124. label="负责人电话"
  1125. >
  1126. <span>{this.state.salesmanMobile}</span>
  1127. </FormItem>
  1128. <FormItem
  1129. className="half-item"
  1130. {...formItemLayout}
  1131. label="当前财务负责人"
  1132. >
  1133. <span>{this.state.nowFinance}</span>
  1134. </FormItem>
  1135. <FormItem
  1136. className="half-item"
  1137. {...formItemLayout}
  1138. label="当前财务负责人电话"
  1139. >
  1140. <span>{this.state.nowFinanceMobile}</span>
  1141. </FormItem>
  1142. {!this.state.isSoftware ? <div>
  1143. <FormItem
  1144. className="half-item"
  1145. {...formItemLayout}
  1146. style={{ opacity: ".5" }}
  1147. label="原负责人"
  1148. >
  1149. <span>{this.state.oldSalesmanName}</span>
  1150. </FormItem>
  1151. <FormItem
  1152. className="half-item"
  1153. {...formItemLayout}
  1154. style={{ opacity: ".5" }}
  1155. label="原负责人电话"
  1156. >
  1157. <span>{this.state.oldSalesmanMobile}</span>
  1158. </FormItem>
  1159. <FormItem
  1160. className="half-item"
  1161. {...formItemLayout}
  1162. style={{ opacity: ".5" }}
  1163. label="实际财务操作人"
  1164. >
  1165. <span>{this.state.financeName}</span>
  1166. </FormItem>
  1167. <FormItem
  1168. className="half-item"
  1169. {...formItemLayout}
  1170. style={{ opacity: ".5" }}
  1171. label="实际财务操作人电话"
  1172. >
  1173. <span>{this.state.financeMobile}</span>
  1174. </FormItem>
  1175. </div> : null }
  1176. <FormItem
  1177. className="half-item"
  1178. {...formItemLayout}
  1179. label="订单留言"
  1180. >
  1181. <span>{this.state.orderRemarks}</span>
  1182. </FormItem>
  1183. <FormItem
  1184. className="half-item"
  1185. {...formItemLayout}
  1186. label=""
  1187. >
  1188. <Button onClick={this.getOrderLog}>查看订单日志</Button>
  1189. </FormItem>
  1190. <OrderRiZi
  1191. dataSourcerizhi={this.state.dataSourceY}
  1192. closeOrderLog={()=>{
  1193. this.setState({
  1194. avisible: false
  1195. })
  1196. }}
  1197. visible={this.state.avisible}
  1198. loading={this.state.loading}
  1199. />
  1200. </div>
  1201. {!this.state.isSoftware ? <div className="clearfix">
  1202. <h3 className="sub-title">申报系统账户信息</h3>
  1203. <FormItem
  1204. className="half-item"
  1205. {...formItemLayout}
  1206. label="用户名"
  1207. >
  1208. <span>{this.state.declareUser}</span>
  1209. </FormItem>
  1210. <FormItem
  1211. className="half-item"
  1212. {...formItemLayout}
  1213. label="密码"
  1214. >
  1215. <span>{this.state.declarePwd}</span>
  1216. </FormItem>
  1217. </div> : null}
  1218. {this.state.isSoftware ?
  1219. <div className="clearfix">
  1220. <h3 className="sub-title">项目申报进度</h3>
  1221. <DeclarationProgress
  1222. timeRecordparse={this.state.timeRecordparse}
  1223. startDate={this.state.startDate}
  1224. taskDate={this.state.taskDate}
  1225. list={[
  1226. {id:4,name:'完成时间',value:this.state.endDate},
  1227. {id:6,name:'受理时间',value:this.state.acceptDate},
  1228. {id:8,name:'公示时间',value:this.state.publicityDate},
  1229. {id:10,name:'发证时间',value:this.state.licenceDate},
  1230. {id:15,name:'立项金额',value:this.state.setUpAmount}
  1231. ]}/>
  1232. {/*高新和科技项目显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  1233. {/*cSort: 3 科技项目 6: 会员*/}
  1234. {(this.state.bpType === 5 || this.state.cSort === 3) && <FormItem
  1235. className="half-item"
  1236. {...formItemLayout}
  1237. label="申报批次"
  1238. >
  1239. <span>{this.state.declarationBatch}</span>
  1240. </FormItem>}
  1241. <FormItem
  1242. className="half-item"
  1243. {...formItemLayout}
  1244. label="软著派单数量"
  1245. >
  1246. <span>{this.state.commodityQuantity}</span>
  1247. </FormItem>
  1248. <div className="patent-table patent-table-center">
  1249. <Spin spinning={this.state.loading}>
  1250. <Table
  1251. columns={this.state.ContactsLists}
  1252. dataSource={this.state.contactList}
  1253. pagination={false}
  1254. bordered
  1255. size="small"
  1256. />
  1257. </Spin>
  1258. </div>
  1259. </div>:
  1260. <div className="clearfix">
  1261. <h3 className="sub-title">项目申报进度</h3>
  1262. <DeclarationProgress
  1263. timeRecordparse={this.state.timeRecordparse}
  1264. startDate={this.state.startDate}
  1265. taskDate={this.state.taskDate}
  1266. list={[
  1267. {id:4,name:'完成时间',value:this.state.endDate},
  1268. {id:6,name:'受理时间',value:this.state.acceptDate},
  1269. {id:8,name:'公示时间',value:this.state.publicityDate},
  1270. {id:10,name:'发证时间',value:this.state.licenceDate},
  1271. {id:15,name:'立项金额',value:this.state.setUpAmount}
  1272. ]}/>
  1273. {
  1274. this.state.bpType === 1 || this.state.bpType === 6 ?
  1275. <div>
  1276. <FormItem
  1277. labelCol={{ span: 3 }}
  1278. wrapperCol={{ span: 16 }}
  1279. label="是否高新企业"
  1280. >
  1281. <span>
  1282. {
  1283. this.state.highTechStatus === 1 ? '是':
  1284. this.state.highTechStatus === 0 ? '否' : ''
  1285. }
  1286. </span>
  1287. </FormItem>
  1288. <FormItem/>
  1289. <PatentSchedule
  1290. readOnly
  1291. bpType={this.state.bpType}
  1292. taskId={this.state.id}
  1293. acceptCount={this.state.acceptCount}
  1294. certificatesCount={this.state.certificatesCount}
  1295. rejectCount={this.state.rejectCount}
  1296. commodityQuantity={this.state.commodityQuantity}
  1297. refresh={()=>{this.xiangqing(this.state.id)}}
  1298. />
  1299. </div> :
  1300. <div>
  1301. {/*高新显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  1302. {this.state.bpType === 5 ? <FormItem
  1303. className="half-item"
  1304. {...formItemLayout}
  1305. label="是否抽查">
  1306. {
  1307. this.state.spotCheckStatus === 0 ? '否':
  1308. this.state.spotCheckStatus === 1 ? '是,未通过':
  1309. this.state.spotCheckStatus === 2 ? '是,通过': ''
  1310. }
  1311. </FormItem> : null}
  1312. <FormItem/>
  1313. {this.state.bpType === 5 ? <FormItem
  1314. className="half-item"
  1315. {...formItemLayout}
  1316. label="是否立项"
  1317. >
  1318. {
  1319. this.state.setUpStatus === 1 ? '是' :
  1320. this.state.setUpStatus === 0 ? '否' : ''
  1321. }
  1322. </FormItem> : null}
  1323. {this.state.bpType === 5 ? <FormItem
  1324. className="half-item"
  1325. {...formItemLayout}
  1326. label={this.state.setUpStatus === 1 ? "立项时间" : ''}
  1327. >
  1328. {this.state.setUpStatus === 1 ?this.state.setUpTime : null }
  1329. </FormItem> : null}
  1330. {/*高新和科技项目显示 bpType: 0 正常 1专利 2软著 3审计 4双软 5高新 6商标*/}
  1331. {/*cSort: 3 科技项目 6: 会员*/}
  1332. {(this.state.bpType === 5 || this.state.cSort === 3) && <FormItem
  1333. className="half-item"
  1334. {...formItemLayout}
  1335. label="申报批次"
  1336. >
  1337. <span>{this.state.declarationBatch}</span>
  1338. </FormItem>}
  1339. {/*只有科技项目才有是否到款*/}
  1340. {/*cSort: 3 科技项目 6: 会员*/}
  1341. {this.state.cSort === 3 && <FormItem
  1342. className="half-item"
  1343. {...formItemLayout}
  1344. label="是否到款"
  1345. >
  1346. <span>
  1347. {this.state.arrivalMoney ? "已到企业" : "未到企业"}
  1348. </span>
  1349. </FormItem>}
  1350. </div>
  1351. }
  1352. </div>}
  1353. {this.state.bpType !== 1 && this.state.bpType !== 6 ? <div className="clearfix">
  1354. <FormItem
  1355. labelCol={{ span: 3 }}
  1356. wrapperCol={{ span: 18 }}
  1357. label="附件"
  1358. >
  1359. {this.state.visible && this.state.attachmentUrl && this.state.activeKey === "1" ? <div style={{paddingTop:'10px',paddingBottom:'10px'}}>
  1360. <ImgList fileList={this.state.attachmentUrl} domId={'taskQuery1'}/>
  1361. </div> : null}
  1362. </FormItem>
  1363. </div> : null}
  1364. {this.state.bpType !== 1 && this.state.bpType !== 6 ? <div className="clearfix">
  1365. <FormItem
  1366. labelCol={{ span: 3 }}
  1367. wrapperCol={{ span: 16 }}
  1368. label="项目说明"
  1369. >
  1370. <span>{this.state.taskComment}</span>
  1371. </FormItem>
  1372. </div>: null}
  1373. <div>
  1374. <h3 className="sub-title">项目业务</h3>
  1375. {this.state.processStatus === 0 ? (
  1376. <Button
  1377. type="primary"
  1378. onClick={this.addDetailed}
  1379. style={{
  1380. float: "right",
  1381. marginRight: "50px",
  1382. marginBottom: "15px",
  1383. }}
  1384. >
  1385. 添加项目明细
  1386. </Button>
  1387. ) : null}
  1388. </div>
  1389. <div className="patent-table">
  1390. <Spin spinning={this.state.loading}>
  1391. <Table
  1392. columns={this.state.columnsX}
  1393. dataSource={this.state.dataSourceX}
  1394. pagination={this.state.paginations}
  1395. onRowClick={this.tableRowClickX}
  1396. bordered
  1397. size="small"
  1398. />
  1399. </Spin>
  1400. </div>
  1401. </div>
  1402. </Spin>
  1403. </Form> : null}
  1404. </TabPane>
  1405. {!this.props.isZxs || (this.state.isHuiyuan && this.props.isZxs) ? (
  1406. <TabPane tab="订单详情" key="2">
  1407. <div style={{paddingTop:'15px'}}>
  1408. {this.state.activeKey === "2" ? <Spin spinning={this.state.loading}>
  1409. <OrderDetail
  1410. orderData={this.state.orderData}
  1411. getOrderLog={this.getOrderLog}
  1412. dataSourceX={this.state.dataSourceX}
  1413. contactList={this.state.jiedian}
  1414. orderNo={this.state.orderNo}
  1415. totalCui={this.state.totalCui}
  1416. contactListNew={this.state.jiedianNew}
  1417. pictureUrl={this.state.contractPictureUrl}
  1418. />
  1419. </Spin> : null}
  1420. <OrderRiZi
  1421. dataSourcerizhi={this.state.dataSourceY}
  1422. closeOrderLog={()=>{
  1423. this.setState({
  1424. avisible: false
  1425. })
  1426. }}
  1427. visible={this.state.avisible}
  1428. loading={this.state.loading}
  1429. />
  1430. </div>
  1431. </TabPane>
  1432. ) : null}
  1433. </Tabs>
  1434. </Modal> : null
  1435. );
  1436. }
  1437. }
  1438. export default ProjectDetails;