index.jsx 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  1. import React, { Component } from "react";
  2. import { View, Image, Button } from "@tarojs/components";
  3. import Taro, { getCurrentInstance } from "@tarojs/taro";
  4. import {
  5. AtButton,
  6. AtCalendar,
  7. AtIcon,
  8. AtTextarea,
  9. AtModal,
  10. AtModalContent,
  11. AtModalAction,
  12. } from "taro-ui";
  13. import Skeleton from "taro-skeleton";
  14. import InquiryModal from "../../components/common/inquiryModal";
  15. import Modify from "./modify";
  16. import {
  17. examinePublicRelease,
  18. getReleasetDails,
  19. updatePublicRelease,
  20. } from "../../utils/servers/servers";
  21. import { resourceAddress } from "../../utils/config";
  22. import "./index.less";
  23. import "taro-ui/dist/style/components/icon.scss";
  24. import "taro-ui/dist/style/components/textarea.scss";
  25. import "taro-ui/dist/style/components/modal.scss";
  26. import "taro-ui/dist/style/components/timeline.scss";
  27. import "taro-ui/dist/style/components/icon.scss";
  28. import "taro-ui/dist/style/components/calendar.scss";
  29. import Rejected from "../../image/rejected.png";
  30. import Passed from "../../image/passed.png";
  31. import Reviewed from "../../image/reviewed.png";
  32. import Wx from "../../image/wx.png";
  33. import Revoke from "../../image/revoke.png";
  34. import ImagePicker from "../../components/common/imagePicker";
  35. import MessageNoticebar from "../../components/common/messageNoticebar";
  36. import { getClockState } from "../../utils/tools";
  37. import HistoricalClock from "../../components/historicalClock";
  38. class EgressDetails extends Component {
  39. $instance = getCurrentInstance();
  40. constructor(props) {
  41. super(props);
  42. this.state = {
  43. dtails: {},
  44. opinion: "",
  45. publicReleaseLog: [],
  46. isDetailedOpened: false,
  47. isModifyOpened: false,
  48. reasonsInvalidation: "",
  49. isVerify: false, //判断是否在审核中修改
  50. selectArrderLocation: {},
  51. current: "",
  52. isNo: true,
  53. };
  54. this.examinePublicRelease = this.examinePublicRelease.bind(this);
  55. this.getReleasetDails = this.getReleasetDails.bind(this);
  56. this.oidApplication = this.oidApplication.bind(this);
  57. }
  58. componentDidMount() {
  59. this.setState({
  60. current: this.$instance.router.params.status || "",
  61. });
  62. this.getReleasetDails();
  63. }
  64. componentDidShow() {
  65. //获取地区选定数据
  66. const chooseLocation = requirePlugin("chooseLocation");
  67. const location = chooseLocation.getLocation();
  68. if (location) {
  69. this.setState({
  70. selectArrderLocation: location,
  71. });
  72. }
  73. }
  74. getReleasetDails() {
  75. getReleasetDails({
  76. id: this.$instance.router.params.id,
  77. })
  78. .then((v) => {
  79. if (v.error.length === 0) {
  80. if (v.data) {
  81. let list = [];
  82. for (let i of v.data.annexUrl.split(",")) {
  83. if (i) {
  84. list.push({ url: resourceAddress + i });
  85. }
  86. }
  87. v.data.annexUrl = list;
  88. this.setState({
  89. dtails: v.data,
  90. selectArrderLocation: {
  91. longitude: parseFloat(v.data.longitude),
  92. latitude: parseFloat(v.data.latitude),
  93. name: v.data.userName,
  94. },
  95. });
  96. } else {
  97. setTimeout(() => {
  98. Taro.switchTab({
  99. url: "/pages/punchClock/index",
  100. });
  101. }, 1800);
  102. Taro.showToast({
  103. title: "您没有权限查看此公出详情",
  104. icon: "none",
  105. duration: 1800,
  106. });
  107. }
  108. } else {
  109. Taro.showToast({ title: v.error[0].message, icon: "none" });
  110. }
  111. })
  112. .catch((err) => {
  113. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  114. // console.log(err);
  115. });
  116. }
  117. // 同意
  118. agree() {
  119. if (!this.state.opinion) {
  120. Taro.showToast({ title: "请填写审批意见", icon: "none" });
  121. return;
  122. }
  123. getReleasetDails({
  124. id: this.$instance.router.params.id,
  125. })
  126. .then((v) => {
  127. if (v.error.length === 0) {
  128. //如果在审核期间修改过
  129. if (
  130. v.data.updateTime != null &&
  131. this.state.dtails.updateTime !== v.data.updateTime
  132. ) {
  133. this.setState({
  134. isInquiryOpened: true,
  135. isNo: false,
  136. inquiryTitle: "提醒",
  137. inquiryContent: "当前公出申请已修改,请重新审核",
  138. });
  139. } else {
  140. this.examinePublicRelease(2);
  141. }
  142. if (v.data) {
  143. let list = [];
  144. for (let i of v.data.annexUrl.split(",")) {
  145. if (i) {
  146. list.push({ url: resourceAddress + i });
  147. }
  148. }
  149. v.data.annexUrl = list;
  150. this.setState({
  151. dtails: v.data,
  152. selectArrderLocation: {
  153. longitude: parseFloat(v.data.longitude),
  154. latitude: parseFloat(v.data.latitude),
  155. name: v.data.userName,
  156. },
  157. });
  158. } else {
  159. setTimeout(() => {
  160. Taro.switchTab({
  161. url: "/pages/punchClock/index",
  162. });
  163. }, 1800);
  164. Taro.showToast({
  165. title: "您没有权限查看此公出详情",
  166. icon: "none",
  167. duration: 1800,
  168. });
  169. }
  170. } else {
  171. Taro.showToast({ title: v.error[0].message, icon: "none" });
  172. }
  173. })
  174. .catch((err) => {
  175. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  176. // console.log(err);
  177. });
  178. }
  179. examinePublicRelease(status) {
  180. if (!this.state.opinion) {
  181. Taro.showToast({ title: "请填写审批意见", icon: "none" });
  182. return;
  183. }
  184. Taro.showLoading({ title: "加载中..." });
  185. examinePublicRelease({
  186. status,
  187. remarks: this.state.opinion,
  188. id: this.state.dtails.id,
  189. })
  190. .then((v) => {
  191. Taro.hideLoading();
  192. if (v.error.length === 0) {
  193. Taro.showToast({
  194. title: status === 0 ? "驳回成功" : "通过成功",
  195. icon: "none",
  196. });
  197. this.state.dtails.status = status;
  198. this.setState({
  199. dtails: this.state.dtails,
  200. });
  201. Taro.eventCenter.trigger("listOperation", {
  202. type: this.state.dtails.permission,
  203. index: this.$instance.router.params.index,
  204. status: status === 0 ? 0 : 2,
  205. });
  206. } else {
  207. Taro.showToast({ title: v.error[0].message, icon: "none" });
  208. }
  209. })
  210. .catch(() => {
  211. Taro.hideLoading();
  212. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  213. });
  214. }
  215. onShareAppMessage() {
  216. return {
  217. title:
  218. this.state.dtails.status === 3
  219. ? this.state.dtails.aname +
  220. "撤销了前往" +
  221. this.state.dtails.userName +
  222. "的公出"
  223. : this.state.dtails.aname + "将要去" + this.state.dtails.userName,
  224. path: "pages/egressDetails/index?id=" + this.$instance.router.params.id,
  225. };
  226. }
  227. oidApplication() {
  228. if (!this.state.reasonsInvalidation) {
  229. Taro.showToast({ title: "请填写撤销原因", icon: "none" });
  230. return;
  231. }
  232. this.setState({
  233. loading: true,
  234. });
  235. updatePublicRelease({
  236. id: this.$instance.router.params.id,
  237. status: 3,
  238. uid: this.state.dtails.uid,
  239. reason: this.state.reasonsInvalidation,
  240. })
  241. .then((v) => {
  242. this.setState({
  243. loading: false,
  244. });
  245. if (v.error.length === 0) {
  246. Taro.showToast({
  247. title: "修改成功",
  248. });
  249. this.setState(
  250. {
  251. isInquiryOpened: false,
  252. inquiryTitle: "",
  253. inquiryContent: "",
  254. },
  255. () => {
  256. this.getReleasetDails();
  257. }
  258. );
  259. Taro.eventCenter.trigger("listOperation", {
  260. type: this.state.dtails.permission,
  261. index: this.$instance.router.params.index,
  262. status: 3,
  263. });
  264. } else {
  265. Taro.showToast({
  266. title: v.error[0].message,
  267. icon: "none",
  268. });
  269. }
  270. })
  271. .catch(() => {
  272. this.setState({
  273. loading: false,
  274. });
  275. });
  276. }
  277. render() {
  278. const { dtails, current } = this.state;
  279. return (
  280. <View className="egressDetails">
  281. <MessageNoticebar />
  282. <View
  283. className="titleContent"
  284. style={{
  285. padding: Object.keys(dtails).length === 0 ? "0 30px" : "20px 30px",
  286. }}
  287. >
  288. {Object.keys(dtails).length === 0 ? (
  289. <Skeleton
  290. title
  291. row={3}
  292. animateName="elastic"
  293. avatarShape="square"
  294. loading
  295. />
  296. ) : (
  297. <View>
  298. <View className="title">
  299. {dtails.aname}提交的公出申请
  300. {dtails.updateStatus == 1 && (
  301. <View className="titRight">改</View>
  302. )}
  303. </View>
  304. <View className="address">申请时间: {dtails.createTimes}</View>
  305. <View
  306. className="state"
  307. style={{
  308. color: getClockState(dtails.status).color,
  309. }}
  310. >
  311. {getClockState(dtails.status).title}
  312. </View>
  313. <Image
  314. src={
  315. dtails.status === 0
  316. ? Rejected
  317. : dtails.status === 1
  318. ? Reviewed
  319. : dtails.status === 2
  320. ? Passed
  321. : dtails.status === 3
  322. ? Revoke
  323. : ""
  324. }
  325. className="startIcon"
  326. />
  327. </View>
  328. )}
  329. </View>
  330. {Object.keys(dtails).length === 0 ? (
  331. <View style={{ margin: "20px" }}>
  332. <Skeleton title row={3} avatarShape="square" loading />
  333. </View>
  334. ) : (
  335. <View className="valueContent">
  336. <View className="item">
  337. <View className="title">
  338. 公出地点:
  339. {dtails.permission === 0 &&
  340. (dtails.status === 0 || dtails.status === 3) ? (
  341. <View
  342. className="edit"
  343. onClick={() => {
  344. this.setState({
  345. isModifyOpened: true,
  346. });
  347. }}
  348. >
  349. <View style={{ color: "#3864ef", fontSize: "15px" }}>
  350. 修改
  351. <AtIcon value="edit" size="18" color="#3864ef" />
  352. </View>
  353. </View>
  354. ) : null}
  355. </View>
  356. <View className="value">{dtails.userName}</View>
  357. <View className="timeContent">
  358. <View className="time">
  359. <View className="num">公出{dtails.duration}小时</View>
  360. <View
  361. className="journal"
  362. onClick={(e) => {
  363. e.stopPropagation();
  364. this.setState({
  365. isDetailedOpened: true,
  366. });
  367. }}
  368. >
  369. 明细
  370. </View>
  371. </View>
  372. <View className="timeAxis">
  373. <View className="startTime">
  374. <View className="circle" />
  375. {dtails.releaseStarts}
  376. </View>
  377. <View className="axis" />
  378. <View className="endTime">
  379. <View className="circle" />
  380. {dtails.releaseEnds}
  381. </View>
  382. </View>
  383. </View>
  384. </View>
  385. <AtModal
  386. onClose={() => {
  387. this.setState({
  388. isDetailedOpened: false,
  389. });
  390. }}
  391. isOpened={this.state.isDetailedOpened}
  392. >
  393. <AtModalContent>
  394. {dtails.validDate ? (
  395. <AtCalendar
  396. currentDate={JSON.parse(dtails.validDate)[0]["value"]}
  397. isSwiper={false}
  398. validDates={JSON.parse(dtails.validDate)}
  399. />
  400. ) : null}
  401. </AtModalContent>
  402. <AtModalAction>
  403. <Button
  404. onClick={() => {
  405. this.setState({
  406. isDetailedOpened: false,
  407. });
  408. }}
  409. >
  410. 确定
  411. </Button>
  412. </AtModalAction>
  413. </AtModal>
  414. <View className="item">
  415. <View className="title">公出类型:</View>
  416. <View className="value">
  417. {dtails.type == 0
  418. ? "业务公出"
  419. : dtails.type == 1
  420. ? "技术公出"
  421. : dtails.type == 2 && "行政公出"}
  422. </View>
  423. </View>
  424. {dtails.type == 1 ? (
  425. <View className="item">
  426. <View className="title">合同编号:</View>
  427. <View className="value">{dtails.contractNo}</View>
  428. </View>
  429. ) : (
  430. ""
  431. )}
  432. <View className="item">
  433. <View className="title">公出企业</View>
  434. <View className="value">{dtails.nickname}</View>
  435. </View>
  436. {/* 公出目标 */}
  437. <View className="item">
  438. <View className="title">公出目标</View>
  439. <View className="value">{dtails.remarks}</View>
  440. </View>
  441. {/* 公出计划 */}
  442. {dtails.type != 2 && (
  443. <View className="item">
  444. <View className="title">公出计划</View>
  445. <View className="value">{dtails.plan}</View>
  446. </View>
  447. )}
  448. {/* 预计效果 */}
  449. {dtails.type != 2 && (
  450. <View className="item">
  451. <View className="title">预计效果</View>
  452. <View className="value">{dtails.expectedEffect}</View>
  453. </View>
  454. )}
  455. {dtails.annexUrl && dtails.annexUrl.length > 0 ? (
  456. <View className="item">
  457. <View className="title">附件</View>
  458. <View className="value">
  459. <ImagePicker files={dtails.annexUrl} showAddBtn={false} />
  460. </View>
  461. </View>
  462. ) : null}
  463. {dtails.permission === 1 &&
  464. dtails.status === 1 &&
  465. current !== "2" ? (
  466. <View className="item">
  467. <View className="title">
  468. 填写审批意见
  469. <View className="titleTips">
  470. 根据公出申请记录指导怎么沟通?并提出详细指导建议
  471. </View>
  472. </View>
  473. <AtTextarea
  474. value={this.state.opinion}
  475. onChange={(value) => {
  476. this.setState({
  477. opinion: value,
  478. });
  479. }}
  480. maxLength={20}
  481. placeholder="请填写审批意见"
  482. />
  483. </View>
  484. ) : null}
  485. {dtails.permission === 1 &&
  486. dtails.status === 1 &&
  487. current !== "2" ? (
  488. <View className="operation">
  489. <AtButton
  490. type="secondary"
  491. circle
  492. loading={this.state.loading}
  493. onClick={() => {
  494. this.setState({
  495. isInquiryOpened: true,
  496. inquiryTitle: "提醒",
  497. inquiryContent: "您确定要驳回此申请吗?",
  498. inquiryFn: () => {
  499. this.examinePublicRelease(0);
  500. },
  501. });
  502. }}
  503. >
  504. 驳回
  505. </AtButton>
  506. <AtButton
  507. type="primary"
  508. loading={this.state.loading}
  509. circle
  510. onClick={() => {
  511. if (this.state.loading) {
  512. return;
  513. }
  514. this.setState({
  515. isInquiryOpened: true,
  516. inquiryTitle: "提醒",
  517. inquiryContent: "您确定要同意此申请吗?",
  518. inquiryFn: () => {
  519. this.agree();
  520. // this.examinePublicRelease(2);
  521. },
  522. });
  523. }}
  524. >
  525. 同意
  526. </AtButton>
  527. </View>
  528. ) : null}
  529. {dtails.permission === 0 && dtails.status !== 3 ? (
  530. <View className="item">
  531. <View className="title">修改/撤销</View>
  532. <AtTextarea
  533. value={this.state.reasonsInvalidation}
  534. onChange={(value) => {
  535. this.setState({
  536. reasonsInvalidation: value,
  537. });
  538. }}
  539. maxLength={20}
  540. placeholder="请填写修改或撤销的详细原因"
  541. />
  542. </View>
  543. ) : null}
  544. {dtails.permission === 0 && dtails.status !== 3 ? (
  545. <View className="operation">
  546. <Button
  547. type="warn"
  548. loading={this.state.loading}
  549. onClick={() => {
  550. if (this.state.loading) {
  551. return;
  552. }
  553. this.setState({
  554. isInquiryOpened: true,
  555. inquiryTitle: "提醒",
  556. inquiryContent: "您确定要撤销此申请吗?",
  557. inquiryFn: () => {
  558. this.oidApplication();
  559. },
  560. });
  561. }}
  562. >
  563. 撤销申请
  564. </Button>
  565. <Button
  566. style={{ color: "#fff", background: "#4876FF" }}
  567. loading={this.state.loading}
  568. onClick={() => {
  569. if (this.state.loading) {
  570. return;
  571. }
  572. this.setState({
  573. isInquiryOpened: true,
  574. inquiryTitle: "提醒",
  575. inquiryContent:
  576. "您确定修改此公出申请吗?确定修改,已完成的审核,将自动解除,重新转化为待审核状态!!!",
  577. inquiryFn: () => {
  578. if (!this.state.reasonsInvalidation) {
  579. Taro.showToast({
  580. title: "请填写修改原因",
  581. icon: "none",
  582. });
  583. return;
  584. }
  585. this.setState({
  586. isModifyOpened: true,
  587. isVerify: true,
  588. });
  589. },
  590. });
  591. }}
  592. >
  593. 修改申请
  594. </Button>
  595. </View>
  596. ) : null}
  597. </View>
  598. )}
  599. {Object.keys(dtails).length === 0 ? (
  600. <View style={{ margin: "20px" }}>
  601. <Skeleton title row={3} avatarShape="square" loading />
  602. </View>
  603. ) : (
  604. <View
  605. className="valueContent history"
  606. onClick={(e) => {
  607. e.stopPropagation();
  608. this.setState({
  609. historicalIsOpened: true,
  610. });
  611. }}
  612. >
  613. 查看公出申请日志
  614. <AtIcon value="chevron-right" size="20" color="#767272" />
  615. </View>
  616. )}
  617. {Object.keys(dtails).length === 0 ? (
  618. <View style={{ margin: "20px" }}>
  619. <Skeleton title row={3} avatarShape="square" loading />
  620. </View>
  621. ) : (
  622. <View className="valueContent history">
  623. <View className="shareContent">
  624. <Button open-type="share" className="share">
  625. <Image src={Wx} className="shareIcon" />
  626. </Button>
  627. <View className="shareTitle">微信分享</View>
  628. </View>
  629. </View>
  630. )}
  631. {this.state.isModifyOpened ? (
  632. <Modify
  633. permission={dtails.permission}
  634. index={this.$instance.router.params.index}
  635. dtails={dtails}
  636. locationInfor={this.state.selectArrderLocation}
  637. id={this.$instance.router.params.id}
  638. isOpened={this.state.isModifyOpened}
  639. isVerify={this.state.isVerify}
  640. reason={this.state.reasonsInvalidation}
  641. onModalClose={() => {
  642. this.setState({
  643. isModifyOpened: false,
  644. });
  645. }}
  646. onClose={() => {
  647. this.setState(
  648. {
  649. isModifyOpened: false,
  650. dtails: {},
  651. reasonsInvalidation: "",
  652. },
  653. () => {
  654. this.getReleasetDails();
  655. }
  656. );
  657. }}
  658. />
  659. ) : null}
  660. <InquiryModal
  661. isOpened={this.state.isInquiryOpened}
  662. title={this.state.inquiryTitle}
  663. content={this.state.inquiryContent}
  664. color={this.state.isNo ? "black" : "red"}
  665. isNo={this.state.isNo}
  666. onClose={() => {
  667. this.setState({
  668. isInquiryOpened: false,
  669. inquiryTitle: "",
  670. inquiryContent: "",
  671. isNo: true,
  672. });
  673. }}
  674. onDetermine={() => {
  675. this.state.inquiryFn();
  676. this.setState({
  677. isInquiryOpened: false,
  678. inquiryTitle: "",
  679. inquiryContent: "",
  680. isNo: true,
  681. inquiryFn: () => {},
  682. });
  683. }}
  684. />
  685. {this.state.historicalIsOpened ? (
  686. <HistoricalClock
  687. id={this.$instance.router.params.id}
  688. isOpened={this.state.historicalIsOpened}
  689. onClose={() => {
  690. this.setState({
  691. historicalIsOpened: false,
  692. });
  693. }}
  694. />
  695. ) : null}
  696. </View>
  697. );
  698. }
  699. }
  700. export default EgressDetails;