index.jsx 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. import React, { Component } from "react";
  2. import Taro, { getCurrentInstance } from "@tarojs/taro";
  3. import { View, Image, Button } from "@tarojs/components";
  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 {
  15. recordDetails,
  16. examineRecord,
  17. } from "../../utils/servers/servers";
  18. import InquiryModal from "../../components/common/inquiryModal";
  19. import ImagePicker from "../../components/common/imagePicker";
  20. import { resourceAddress } from "../../utils/config";
  21. import "../mybusiness/index";
  22. class Detail extends Component {
  23. $instance = getCurrentInstance();
  24. constructor(props) {
  25. super(props);
  26. this.state = {
  27. opinion: "",
  28. attachmentUrl: [],
  29. data: {},
  30. }
  31. this.getReleasetDails = this.getReleasetDails.bind(this);
  32. }
  33. componentDidMount() {
  34. this.getReleasetDails();
  35. }
  36. // 项目详情
  37. getReleasetDails() {
  38. recordDetails({
  39. id: this.$instance.router.params.id,
  40. }).then((v) => {
  41. if (v.code === 200) {
  42. if (v.data) {
  43. let list = [];
  44. console.log("---", v.data.annexUrl)
  45. for (let i of (v.data.annexUrl || '').split(',')) {
  46. if (i) {
  47. list.push({ 'url': resourceAddress + i })
  48. }
  49. }
  50. this.setState({
  51. data: v.data,
  52. attachmentUrl: list,
  53. })
  54. } else {
  55. setTimeout(() => {
  56. Taro.switchTab({
  57. url: "/pages/mybusiness/index",
  58. });
  59. }, 1800);
  60. Taro.showToast({
  61. title: "您没有权限查看此公出详情",
  62. icon: "none",
  63. duration: 1800,
  64. });
  65. }
  66. } else {
  67. Taro.showToast({ title: v.msg, icon: "none" });
  68. }
  69. })
  70. .catch((err) => {
  71. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  72. // console.log(err);
  73. });
  74. }
  75. // 同意/驳回
  76. agree(sta) {
  77. if (!this.state.opinion) {
  78. Taro.showToast({ title: "请填写审批意见", icon: "none" });
  79. return;
  80. }
  81. examineRecord({
  82. id: this.$instance.router.params.id,
  83. processStatus: sta,
  84. content: this.state.opinion,
  85. })
  86. .then((v) => {
  87. if (v.code === 200) {
  88. Taro.showToast({
  89. title: "操作成功",
  90. icon: "none",
  91. });
  92. this.getReleasetDails();
  93. } else {
  94. Taro.showToast({ title: v.msg, icon: "none" });
  95. }
  96. })
  97. .catch((err) => {
  98. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  99. // console.log(err);
  100. });
  101. }
  102. render() {
  103. const { data, attachmentUrl } = this.state
  104. return (
  105. <View className="indexPage">
  106. {Object.keys(data).length === 0 ?
  107. <Skeleton
  108. title
  109. row={3}
  110. animateName="elastic"
  111. avatarShape="square"
  112. loading
  113. /> :
  114. <View className="list">
  115. <View
  116. className="item"
  117. >
  118. <View className="infor">
  119. <View className="title">
  120. <View className="aname">
  121. {data.projectName}
  122. </View>
  123. </View>
  124. <View className="userName">
  125. <View className="uNtext">
  126. 负责人:{data.adminName}
  127. </View>
  128. </View>
  129. <View className="userName">
  130. <View className="uNtext">
  131. 研发人员:{data.name}
  132. </View>
  133. </View>
  134. <View className="userName">
  135. <View className="uNtext">
  136. 累积工时:{data.duration}
  137. </View>
  138. </View>
  139. <View className="userName">
  140. {console.log("====", attachmentUrl)}
  141. {attachmentUrl && attachmentUrl.length > 0 &&
  142. <ImagePicker
  143. files={attachmentUrl || []}
  144. showAddBtn={false}
  145. />}
  146. </View>
  147. {data.processStatus == 1 && <View style={{ marginTop: "30px" }}>
  148. <AtTextarea
  149. value={this.state.opinion}
  150. onChange={(value) => {
  151. this.setState({
  152. opinion: value,
  153. });
  154. }}
  155. maxLength={50}
  156. placeholder="请填写审批意见"
  157. />
  158. <View className="operation">
  159. <AtButton
  160. type="secondary"
  161. circle
  162. loading={this.state.loading}
  163. onClick={() => {
  164. this.setState({
  165. isInquiryOpened: true,
  166. inquiryTitle: "提醒",
  167. inquiryContent: "您确定要驳回此申请吗?",
  168. inquiryFn: () => {
  169. this.agree(3);
  170. },
  171. });
  172. }}
  173. >
  174. 驳回
  175. </AtButton>
  176. <AtButton
  177. type="primary"
  178. loading={this.state.loading}
  179. circle
  180. onClick={() => {
  181. if (this.state.loading) {
  182. return;
  183. }
  184. this.setState({
  185. isInquiryOpened: true,
  186. inquiryTitle: "提醒",
  187. inquiryContent: "您确定要同意此申请吗?",
  188. inquiryFn: () => {
  189. this.agree(2);
  190. },
  191. });
  192. }}
  193. >
  194. 同意
  195. </AtButton>
  196. </View>
  197. </View>}
  198. </View>
  199. </View>
  200. </View>}
  201. <InquiryModal
  202. isOpened={this.state.isInquiryOpened}
  203. title={this.state.inquiryTitle}
  204. content={this.state.inquiryContent}
  205. onClose={() => {
  206. this.setState({
  207. isInquiryOpened: false,
  208. inquiryTitle: "",
  209. inquiryContent: "",
  210. isNo: true,
  211. });
  212. }}
  213. onDetermine={() => {
  214. this.state.inquiryFn();
  215. this.setState({
  216. isInquiryOpened: false,
  217. inquiryTitle: "",
  218. inquiryContent: "",
  219. isNo: true,
  220. inquiryFn: () => { },
  221. });
  222. }}
  223. />
  224. </View>
  225. );
  226. }
  227. }
  228. export default Detail;