index.jsx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. import React,{Component} from "react";
  2. import { View,Image,Button } from '@tarojs/components'
  3. import Taro, { getCurrentInstance } from "@tarojs/taro";
  4. import {AtButton, AtCalendar, AtIcon, AtTextarea,AtModal, AtModalContent, AtModalAction} from 'taro-ui'
  5. import Skeleton from 'taro-skeleton'
  6. import InquiryModal from '../../components/common/inquiryModal';
  7. import Modify from './modify';
  8. import {examinePublicRelease,getReleasetDails,updatePublicRelease} from '../../utils/servers/servers';
  9. import {resourceAddress} from '../../utils/config';
  10. import './index.less';
  11. import 'taro-ui/dist/style/components/icon.scss';
  12. import 'taro-ui/dist/style/components/textarea.scss'
  13. import 'taro-ui/dist/style/components/modal.scss';
  14. import 'taro-ui/dist/style/components/timeline.scss';
  15. import 'taro-ui/dist/style/components/icon.scss';
  16. import 'taro-ui/dist/style/components/calendar.scss';
  17. import Rejected from '../../image/rejected.png';
  18. import Passed from '../../image/passed.png';
  19. import Reviewed from '../../image/reviewed.png';
  20. import Wx from '../../image/wx.png';
  21. import Revoke from '../../image/revoke.png';
  22. import ImagePicker from "../../components/common/imagePicker";
  23. import MessageNoticebar from "../../components/common/messageNoticebar";
  24. import {getClockState} from "../../utils/tools";
  25. import HistoricalClock from "../../components/historicalClock";
  26. class EgressDetails extends Component{
  27. $instance = getCurrentInstance()
  28. constructor(props) {
  29. super(props);
  30. this.state={
  31. dtails:{},
  32. opinion:'',
  33. publicReleaseLog:[],
  34. isDetailedOpened:false,
  35. isModifyOpened:false,
  36. selectArrderLocation:{}
  37. }
  38. this.examinePublicRelease= this.examinePublicRelease.bind(this);
  39. this.getReleasetDails= this.getReleasetDails.bind(this);
  40. this.oidApplication= this.oidApplication.bind(this);
  41. }
  42. componentDidMount() {
  43. this.getReleasetDails();
  44. }
  45. componentDidShow() {
  46. //获取地区选定数据
  47. const chooseLocation = requirePlugin('chooseLocation');
  48. const location = chooseLocation.getLocation();
  49. if(location){
  50. this.setState({
  51. selectArrderLocation: location
  52. })
  53. }
  54. }
  55. getReleasetDails(){
  56. getReleasetDails({
  57. id:this.$instance.router.params.id
  58. }).then(v=>{
  59. if(v.error.length === 0){
  60. if(v.data){
  61. let list = [];
  62. for(let i of v.data.annexUrl.split(',')){
  63. if(i){
  64. list.push({'url':resourceAddress + i})
  65. }
  66. }
  67. v.data.annexUrl = list;
  68. this.setState({
  69. dtails:v.data,
  70. selectArrderLocation:{
  71. longitude:parseFloat(v.data.longitude),
  72. latitude:parseFloat(v.data.latitude),
  73. name:v.data.userName
  74. }
  75. })
  76. }else{
  77. setTimeout(()=>{
  78. Taro.switchTab({
  79. url: '/pages/punchClock/index',
  80. })
  81. },1800)
  82. Taro.showToast({
  83. title:'您没有权限查看此公出详情',
  84. icon:'none',
  85. duration:1800,
  86. })
  87. }
  88. }else{
  89. Taro.showToast({title:v.error[0].message,icon:'none'})
  90. }
  91. }).catch(err=>{
  92. Taro.showToast({title:'系统错误,请稍后再试',icon:'none'});
  93. console.log(err)
  94. })
  95. }
  96. examinePublicRelease(status){
  97. if(!this.state.opinion){
  98. Taro.showToast({title:'请填写审批意见',icon:'none'})
  99. return;
  100. }
  101. examinePublicRelease({
  102. status,
  103. remarks:this.state.opinion,
  104. id:this.state.dtails.id
  105. }).then(v=>{
  106. if(v.error.length === 0){
  107. Taro.showToast({title:status===0?'驳回成功':'通过成功',icon:'none'});
  108. this.state.dtails.status=status;
  109. this.setState({
  110. dtails:this.state.dtails
  111. })
  112. Taro.eventCenter.trigger('listOperation',{
  113. type:this.state.dtails.permission,
  114. index:this.$instance.router.params.index,
  115. status:status===0?0:2
  116. })
  117. }else{
  118. Taro.showToast({title:v.error[0].message,icon:'none'})
  119. }
  120. }).catch(()=>{
  121. Taro.showToast({title:'系统错误,请稍后再试',icon:'none'})
  122. })
  123. }
  124. onShareAppMessage(){
  125. return {
  126. title: this.state.dtails.status === 3 ? this.state.dtails.aname+ '撤销了前往' + this.state.dtails.userName + '的公出' : this.state.dtails.aname+ '将要去' + this.state.dtails.userName,
  127. path: 'pages/egressDetails/index?id='+this.$instance.router.params.id
  128. }
  129. }
  130. oidApplication(){
  131. if(!this.state.reasonsInvalidation){
  132. Taro.showToast({title:'请填写撤销原因',icon:'none'})
  133. return;
  134. }
  135. this.setState({
  136. loading:true
  137. })
  138. updatePublicRelease({
  139. id:this.$instance.router.params.id,
  140. status:3,
  141. reason:this.state.reasonsInvalidation,
  142. }).then(v=>{
  143. this.setState({
  144. loading:false
  145. })
  146. if(v.error.length === 0){
  147. Taro.showToast({
  148. title:'修改成功',
  149. })
  150. this.setState({
  151. isInquiryOpened:false,
  152. inquiryTitle:'',
  153. inquiryContent:'',
  154. },()=>{
  155. this.getReleasetDails();
  156. })
  157. Taro.eventCenter.trigger('listOperation',{
  158. type:this.state.dtails.permission,
  159. index:this.$instance.router.params.index,
  160. status: 3,
  161. })
  162. }else{
  163. Taro.showToast({
  164. title:v.error[0].message,
  165. icon:'none'
  166. })
  167. }
  168. }).catch(()=>{
  169. this.setState({
  170. loading:false
  171. })
  172. });
  173. }
  174. render() {
  175. const {dtails} = this.state;
  176. return (
  177. <View className='egressDetails'>
  178. <MessageNoticebar/>
  179. <View className='titleContent' style={{
  180. padding:Object.keys(dtails).length === 0? '0 30px' : '20px 30px'
  181. }}>
  182. {Object.keys(dtails).length === 0?
  183. <Skeleton title row={3} animateName='elastic' avatarShape='square' loading/>:
  184. <View>
  185. <View className='title'>{dtails.aname}提交的公出申请</View>
  186. <View className='address'>
  187. 申请时间: {dtails.createTimes}
  188. </View>
  189. <View className='state' style={{
  190. color:getClockState(dtails.status).color
  191. }}>
  192. {
  193. getClockState(dtails.status).title
  194. }
  195. </View>
  196. <Image src={
  197. dtails.status === 0 ? Rejected :
  198. dtails.status === 1 ? Reviewed :
  199. dtails.status === 2 ? Passed :
  200. dtails.status === 3 ? Revoke :''} className='startIcon'/>
  201. </View>
  202. }
  203. </View>
  204. {Object.keys(dtails).length === 0?
  205. <View style={{margin: '20px'}}>
  206. <Skeleton title row={3} avatarShape='square' loading/>
  207. </View>:
  208. <View className='valueContent'>
  209. <View className='item'>
  210. <View className='title'>
  211. 公出地点:
  212. {dtails.permission === 0 && dtails.status === 0 ?
  213. <View className='edit' onClick={()=>{
  214. this.setState({
  215. isModifyOpened:true,
  216. })
  217. }}>
  218. <AtIcon value='edit' size='18' color='#3864ef'/>
  219. </View> : null}
  220. </View>
  221. <View className='value'>{dtails.userName}</View>
  222. <View className='timeContent'>
  223. <View className='time'>
  224. <View className='num'>公出{dtails.duration}小时</View>
  225. <View className='journal' onClick={(e)=>{
  226. e.stopPropagation();
  227. this.setState({
  228. isDetailedOpened:true
  229. })
  230. }}>明细</View>
  231. </View>
  232. <View className='timeAxis'>
  233. <View className='startTime'>
  234. <View className='circle'/>
  235. {dtails.releaseStarts}
  236. </View>
  237. <View className='axis'/>
  238. <View className='endTime'>
  239. <View className='circle'/>
  240. {dtails.releaseEnds}
  241. </View>
  242. </View>
  243. </View>
  244. </View>
  245. <AtModal onClose={()=>{
  246. this.setState({
  247. isDetailedOpened:false
  248. })
  249. }} isOpened={this.state.isDetailedOpened}>
  250. <AtModalContent>
  251. {dtails.validDate ? <AtCalendar
  252. currentDate={JSON.parse(dtails.validDate)[0]['value']}
  253. isSwiper={false}
  254. validDates={JSON.parse(dtails.validDate)}
  255. /> : null
  256. }
  257. </AtModalContent>
  258. <AtModalAction>
  259. <Button onClick={()=>{
  260. this.setState({
  261. isDetailedOpened:false
  262. })
  263. }}>确定</Button>
  264. </AtModalAction>
  265. </AtModal>
  266. <View className='item'>
  267. <View className='title'>
  268. 公出企业
  269. </View>
  270. <View className='value'>
  271. {dtails.nickname}
  272. </View>
  273. </View>
  274. <View className='item'>
  275. <View className='title'>公出原因</View>
  276. <View className='value'>
  277. {dtails.remarks}
  278. </View>
  279. </View>
  280. {dtails.annexUrl && dtails.annexUrl.length > 0 ? <View className='item'>
  281. <View className='title'>附件</View>
  282. <View className='value'>
  283. <ImagePicker
  284. files={dtails.annexUrl}
  285. showAddBtn={false} />
  286. </View>
  287. </View> : null}
  288. {
  289. dtails.permission === 1 && dtails.status === 1 ?
  290. <View className='item'>
  291. <View className='title'>填写审批意见</View>
  292. <AtTextarea
  293. value={this.state.opinion}
  294. onChange={(value)=>{
  295. this.setState({
  296. opinion:value
  297. })
  298. }}
  299. maxLength={20}
  300. placeholder='请填写审批意见'
  301. />
  302. </View> : null
  303. }
  304. {
  305. dtails.permission === 1 && dtails.status === 1 ?
  306. <View className='operation'>
  307. <AtButton type='secondary' circle loading={this.state.loading} onClick={()=>{
  308. this.setState({
  309. isInquiryOpened:true,
  310. inquiryTitle:'提醒',
  311. inquiryContent:'您确定要驳回此申请吗?',
  312. inquiryFn:()=>{
  313. this.examinePublicRelease(0);
  314. }
  315. })
  316. }}>
  317. 驳回
  318. </AtButton>
  319. <AtButton type='primary' loading={this.state.loading} circle onClick={()=>{
  320. if(this.state.loading){return;}
  321. this.setState({
  322. isInquiryOpened:true,
  323. inquiryTitle:'提醒',
  324. inquiryContent:'您确定要同意此申请吗?',
  325. inquiryFn:()=>{
  326. this.examinePublicRelease(2);
  327. }
  328. })
  329. }}>
  330. 同意
  331. </AtButton>
  332. </View> : null
  333. }
  334. {
  335. dtails.permission === 0 && dtails.status !== 3 ?
  336. <View className='item'>
  337. <View className='title'>撤销申请</View>
  338. <AtTextarea
  339. value={this.state.reasonsInvalidation}
  340. onChange={(value)=>{
  341. this.setState({
  342. reasonsInvalidation:value
  343. })
  344. }}
  345. maxLength={20}
  346. placeholder='请填写撤销申请原因'
  347. />
  348. </View> : null
  349. }
  350. {
  351. dtails.permission === 0 && dtails.status !== 3 ?
  352. <View className='operation'>
  353. <Button type='warn' loading={this.state.loading} onClick={()=>{
  354. if(this.state.loading){return;}
  355. this.setState({
  356. isInquiryOpened:true,
  357. inquiryTitle:'提醒',
  358. inquiryContent:'您确定要撤销此申请吗?',
  359. inquiryFn:()=>{
  360. this.oidApplication();
  361. }
  362. })
  363. }}>
  364. 撤销申请
  365. </Button>
  366. </View> : null
  367. }
  368. </View>}
  369. {Object.keys(dtails).length === 0?
  370. <View style={{margin: '20px'}}>
  371. <Skeleton title row={3} avatarShape='square' loading/>
  372. </View>:
  373. <View className='valueContent history' onClick={(e)=>{
  374. e.stopPropagation();
  375. this.setState({
  376. historicalIsOpened:true
  377. })
  378. }}>
  379. 查看公出申请日志
  380. <AtIcon value='chevron-right' size='20' color='#767272'/>
  381. </View>}
  382. {Object.keys(dtails).length === 0?
  383. <View style={{margin: '20px'}}>
  384. <Skeleton title row={3} avatarShape='square' loading/>
  385. </View>:
  386. <View className='valueContent history'>
  387. <View className='shareContent'>
  388. <Button open-type='share' className='share'>
  389. <Image src={Wx} className='shareIcon'/>
  390. </Button>
  391. <View className='shareTitle'>微信分享</View>
  392. </View>
  393. </View>}
  394. {this.state.isModifyOpened ? <Modify
  395. permission={dtails.permission}
  396. index={this.$instance.router.params.index}
  397. dtails={dtails}
  398. locationInfor={this.state.selectArrderLocation}
  399. id={this.$instance.router.params.id}
  400. isOpened={this.state.isModifyOpened}
  401. onModalClose={()=>{
  402. this.setState({
  403. isModifyOpened:false,
  404. })
  405. }}
  406. onClose={()=>{
  407. this.setState({
  408. isModifyOpened:false,
  409. dtails:{}
  410. },()=>{
  411. this.getReleasetDails();
  412. })
  413. }}/> : null}
  414. <InquiryModal
  415. isOpened={this.state.isInquiryOpened}
  416. title={this.state.inquiryTitle}
  417. content={this.state.inquiryContent}
  418. onClose={()=>{
  419. this.setState({
  420. isInquiryOpened:false,
  421. inquiryTitle:'',
  422. inquiryContent:'',
  423. })
  424. }}
  425. onDetermine={()=>{
  426. this.state.inquiryFn();
  427. this.setState({
  428. isInquiryOpened:false,
  429. inquiryTitle:'',
  430. inquiryContent:'',
  431. inquiryFn:()=>{}
  432. })
  433. }}
  434. />
  435. {this.state.historicalIsOpened ? <HistoricalClock
  436. id={this.$instance.router.params.id}
  437. isOpened={this.state.historicalIsOpened}
  438. onClose={()=>{
  439. this.setState({
  440. historicalIsOpened:false
  441. })
  442. }}
  443. /> : null}
  444. </View>
  445. )
  446. }
  447. }
  448. export default EgressDetails;