index.jsx 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. import React, { Component } from "react";
  2. import Taro, { getCurrentInstance } from "@tarojs/taro";
  3. import { View, Text, Image, } from "@tarojs/components";
  4. import {
  5. AtButton,
  6. AtTextarea,
  7. } from "taro-ui";
  8. import Skeleton from "taro-skeleton";
  9. import {
  10. recordDetails,
  11. examineRecord,
  12. } from "../../utils/servers/servers";
  13. import InquiryModal from "../../components/common/inquiryModal";
  14. import ImagePicker from "../../components/common/imagePicker";
  15. import HistoricalClock from '../../components/historicalClock';
  16. import { resourceAddress } from "../../utils/config";
  17. import { getStageState } from "../../utils/tools";
  18. import Un from "../../image/un.png";
  19. import Ok from "../../image/ok.png";
  20. import './index.less'
  21. class Detail extends Component {
  22. $instance = getCurrentInstance();
  23. constructor(props) {
  24. super(props);
  25. this.state = {
  26. opinion: "",
  27. attachmentUrl: [],
  28. data: {},
  29. historicalIsOpened: false,
  30. isOpened: false,
  31. }
  32. this.getReleasetDails = this.getReleasetDails.bind(this);
  33. }
  34. componentDidMount() {
  35. this.getReleasetDails();
  36. }
  37. componentDidShow() {
  38. this.setState({
  39. isOpened: false
  40. }, () => {
  41. this.getReleasetDails();
  42. })
  43. }
  44. // 项目详情
  45. getReleasetDails() {
  46. recordDetails({
  47. id: this.$instance.router.params.id,
  48. }).then((v) => {
  49. if (v.code === 200) {
  50. if (v.data) {
  51. let list = [];
  52. for (let i of (v.data.annexUrl || '').split(',')) {
  53. if (i) {
  54. list.push({ 'url': resourceAddress + i })
  55. }
  56. }
  57. this.setState({
  58. data: v.data,
  59. attachmentUrl: list,
  60. isOpened: true,
  61. })
  62. } else {
  63. setTimeout(() => {
  64. Taro.switchTab({
  65. url: "/pages/mybusiness/index",
  66. });
  67. }, 1800);
  68. Taro.showToast({
  69. title: "您没有权限查看此详情",
  70. icon: "none",
  71. duration: 1800,
  72. });
  73. }
  74. } else {
  75. Taro.showToast({ title: v.msg, icon: "none" });
  76. }
  77. })
  78. .catch((err) => {
  79. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  80. // console.log(err);
  81. });
  82. }
  83. // 同意/驳回
  84. agree(sta) {
  85. if (!this.state.opinion) {
  86. Taro.showToast({ title: "请填写审批意见", icon: "none" });
  87. return;
  88. }
  89. examineRecord({
  90. id: this.$instance.router.params.id,
  91. processStatus: sta,
  92. content: this.state.opinion,
  93. })
  94. .then((v) => {
  95. if (v.code === 200) {
  96. Taro.showToast({
  97. title: "操作成功",
  98. icon: "none",
  99. });
  100. this.getReleasetDails();
  101. } else {
  102. Taro.showToast({ title: v.msg, icon: "none" });
  103. }
  104. })
  105. .catch((err) => {
  106. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  107. // console.log(err);
  108. });
  109. }
  110. render() {
  111. const { data, attachmentUrl } = this.state
  112. return (
  113. <View className="indexPage">
  114. {Object.keys(data).length === 0 ?
  115. <Skeleton
  116. title
  117. row={3}
  118. animateName="elastic"
  119. avatarShape="square"
  120. loading
  121. /> :
  122. <View className="list">
  123. <View className="item">
  124. {
  125. // 我的打卡
  126. this.$instance.router.params.type == 0 &&
  127. <View className="infor">
  128. {data.processStatus == 1 && <Image className="statusicon" src={Un} />}
  129. {data.processStatus == 2 && <Image className="statusicon" src={Ok} />}
  130. <View className="title">
  131. <View className="aname">
  132. {data.projectName}
  133. </View>
  134. </View>
  135. <View className="userName">
  136. <View className="uNtext">
  137. 创建时间:{data.createTime}
  138. </View>
  139. </View>
  140. <View className="userName">
  141. <View className="uNtext">
  142. 打卡人员:{data.name}
  143. </View>
  144. </View>
  145. <View className="userName">
  146. <View className="uNtext">
  147. 打卡时间:{data.recordTime}
  148. </View>
  149. </View>
  150. <View className="userName">
  151. <View className="uNtext">
  152. 研发工时:{data.duration}
  153. </View>
  154. </View>
  155. <View className="userName">
  156. <View className="uNtext">
  157. 研发阶段:{getStageState(data.projectStatus)}
  158. </View>
  159. </View>
  160. <View className="userName">
  161. <View className="uNtext">
  162. 研发记录:{data.content}
  163. </View>
  164. </View>
  165. <View className="userName">
  166. <View className="uNtext">
  167. 附件:
  168. {this.state.isOpened &&
  169. <ImagePicker
  170. files={attachmentUrl || []}
  171. showAddBtn={false}
  172. />}
  173. </View>
  174. </View>
  175. <View className="userName" style={{ marginTop: 20 }}>
  176. <View className="uNtext">
  177. 当前审核状态:
  178. <Text style={{ color: ["#000000", "#dbc037", "#6eb173", "red"][data.processStatus] }}>
  179. {["", "待审核", "审核通过", "审核驳回"][data.processStatus]}
  180. </Text>
  181. <Text className="logbt" onClick={() => { this.setState({ historicalIsOpened: true }) }}>查看审核日志</Text>
  182. </View>
  183. </View>
  184. {
  185. data.processStatus == 3 &&
  186. <View className="option">
  187. <AtButton
  188. type="primary"
  189. loading={this.state.loading}
  190. circle
  191. onClick={() => {
  192. Taro.navigateTo({
  193. url: `/pages/reclockin/index?id=${this.$instance.router.params.id}`,
  194. });
  195. }}
  196. >
  197. 重新发起
  198. </AtButton>
  199. </View>}
  200. </View>
  201. }
  202. {
  203. // 审核
  204. this.$instance.router.params.type == 1 &&
  205. <View className="infor">
  206. <View className="title">
  207. <View className="aname">
  208. {data.projectName}
  209. </View>
  210. </View>
  211. <View className="userName">
  212. <View className="uNtext">
  213. 负责人:{data.adminName}
  214. </View>
  215. </View>
  216. <View className="userName">
  217. <View className="uNtext">
  218. 研发人员:{data.name}
  219. </View>
  220. </View>
  221. <View className="userName">
  222. <View className="uNtext">
  223. 打卡工时:{data.duration}
  224. </View>
  225. </View>
  226. <View className="userName">
  227. <View className="uNtext">
  228. 附件:
  229. {attachmentUrl && attachmentUrl.length > 0 &&
  230. <ImagePicker
  231. files={attachmentUrl || []}
  232. showAddBtn={false}
  233. />}
  234. </View>
  235. </View>
  236. <View className="userName">
  237. <View className="uNtext">
  238. 审核状态:
  239. <Text style={{ color: ["#000000", "#dbc037", "#6eb173", "red"][data.processStatus] }}>
  240. {["", "待审核", "审核通过", "审核驳回"][data.processStatus]}
  241. </Text>
  242. <Text className="logbt" onClick={() => { this.setState({ historicalIsOpened: true }) }}>查看审核日志</Text>
  243. </View>
  244. </View>
  245. {data.processStatus == 1 && <View style={{ marginTop: "30px" }}>
  246. <AtTextarea
  247. value={this.state.opinion}
  248. onChange={(value) => {
  249. this.setState({
  250. opinion: value,
  251. });
  252. }}
  253. maxLength={100}
  254. placeholder="请填写审批意见"
  255. />
  256. <View className="operation">
  257. <AtButton
  258. type="secondary"
  259. circle
  260. loading={this.state.loading}
  261. onClick={() => {
  262. this.setState({
  263. isInquiryOpened: true,
  264. inquiryTitle: "提醒",
  265. inquiryContent: "您确定要驳回此申请吗?",
  266. inquiryFn: () => {
  267. this.agree(3);
  268. },
  269. });
  270. }}
  271. >
  272. 驳回
  273. </AtButton>
  274. <AtButton
  275. type="primary"
  276. loading={this.state.loading}
  277. circle
  278. onClick={() => {
  279. if (this.state.loading) {
  280. return;
  281. }
  282. this.setState({
  283. isInquiryOpened: true,
  284. inquiryTitle: "提醒",
  285. inquiryContent: "您确定要同意此申请吗?",
  286. inquiryFn: () => {
  287. this.agree(2);
  288. },
  289. });
  290. }}
  291. >
  292. 同意
  293. </AtButton>
  294. </View>
  295. </View>}
  296. </View>
  297. }
  298. </View>
  299. </View>}
  300. <InquiryModal
  301. isOpened={this.state.isInquiryOpened}
  302. title={this.state.inquiryTitle}
  303. content={this.state.inquiryContent}
  304. onClose={() => {
  305. this.setState({
  306. isInquiryOpened: false,
  307. inquiryTitle: "",
  308. inquiryContent: "",
  309. isNo: true,
  310. });
  311. }}
  312. onDetermine={() => {
  313. this.state.inquiryFn();
  314. this.setState({
  315. isInquiryOpened: false,
  316. inquiryTitle: "",
  317. inquiryContent: "",
  318. isNo: true,
  319. inquiryFn: () => { },
  320. });
  321. }}
  322. />
  323. {
  324. this.state.historicalIsOpened &&
  325. <HistoricalClock
  326. id={data.id}
  327. isOpened={this.state.historicalIsOpened}
  328. onClose={() => {
  329. this.setState({
  330. historicalIsOpened: false
  331. })
  332. }}
  333. />
  334. }
  335. </View>
  336. );
  337. }
  338. }
  339. export default Detail;