123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- import React,{Component} from "react";
- import { View,Image,Button } from '@tarojs/components'
- import Taro, { getCurrentInstance } from "@tarojs/taro";
- import {AtButton, AtCalendar, AtIcon, AtTextarea,AtModal, AtModalContent, AtModalAction} from 'taro-ui'
- import Skeleton from 'taro-skeleton'
- import InquiryModal from '../../components/common/inquiryModal';
- import Modify from './modify';
- import {examinePublicRelease,getReleasetDails,updatePublicRelease} from '../../utils/servers/servers';
- import {resourceAddress} from '../../utils/config';
- import './index.less';
- import 'taro-ui/dist/style/components/icon.scss';
- import 'taro-ui/dist/style/components/textarea.scss'
- import 'taro-ui/dist/style/components/modal.scss';
- import 'taro-ui/dist/style/components/timeline.scss';
- import 'taro-ui/dist/style/components/icon.scss';
- import 'taro-ui/dist/style/components/calendar.scss';
- import Rejected from '../../image/rejected.png';
- import Passed from '../../image/passed.png';
- import Reviewed from '../../image/reviewed.png';
- import Wx from '../../image/wx.png';
- import Revoke from '../../image/revoke.png';
- import ImagePicker from "../../components/common/imagePicker";
- import MessageNoticebar from "../../components/common/messageNoticebar";
- import {getClockState} from "../../utils/tools";
- import HistoricalClock from "../../components/historicalClock";
- class EgressDetails extends Component{
- $instance = getCurrentInstance()
- constructor(props) {
- super(props);
- this.state={
- dtails:{},
- opinion:'',
- publicReleaseLog:[],
- isDetailedOpened:false,
- isModifyOpened:false,
- selectArrderLocation:{}
- }
- this.examinePublicRelease= this.examinePublicRelease.bind(this);
- this.getReleasetDails= this.getReleasetDails.bind(this);
- this.oidApplication= this.oidApplication.bind(this);
- }
- componentDidMount() {
- this.getReleasetDails();
- }
- componentDidShow() {
- //获取地区选定数据
- const chooseLocation = requirePlugin('chooseLocation');
- const location = chooseLocation.getLocation();
- if(location){
- this.setState({
- selectArrderLocation: location
- })
- }
- }
- getReleasetDails(){
- getReleasetDails({
- id:this.$instance.router.params.id
- }).then(v=>{
- if(v.error.length === 0){
- if(v.data){
- let list = [];
- for(let i of v.data.annexUrl.split(',')){
- if(i){
- list.push({'url':resourceAddress + i})
- }
- }
- v.data.annexUrl = list;
- this.setState({
- dtails:v.data,
- selectArrderLocation:{
- longitude:parseFloat(v.data.longitude),
- latitude:parseFloat(v.data.latitude),
- name:v.data.userName
- }
- })
- }else{
- setTimeout(()=>{
- Taro.switchTab({
- url: '/pages/punchClock/index',
- })
- },1800)
- Taro.showToast({
- title:'您没有权限查看此公出详情',
- icon:'none',
- duration:1800,
- })
- }
- }else{
- Taro.showToast({title:v.error[0].message,icon:'none'})
- }
- }).catch(err=>{
- Taro.showToast({title:'系统错误,请稍后再试',icon:'none'});
- console.log(err)
- })
- }
- examinePublicRelease(status){
- if(!this.state.opinion){
- Taro.showToast({title:'请填写审批意见',icon:'none'})
- return;
- }
- examinePublicRelease({
- status,
- remarks:this.state.opinion,
- id:this.state.dtails.id
- }).then(v=>{
- if(v.error.length === 0){
- Taro.showToast({title:status===0?'驳回成功':'通过成功',icon:'none'});
- this.state.dtails.status=status;
- this.setState({
- dtails:this.state.dtails
- })
- Taro.eventCenter.trigger('listOperation',{
- type:this.state.dtails.permission,
- index:this.$instance.router.params.index,
- status:status===0?0:2
- })
- }else{
- Taro.showToast({title:v.error[0].message,icon:'none'})
- }
- }).catch(()=>{
- Taro.showToast({title:'系统错误,请稍后再试',icon:'none'})
- })
- }
- onShareAppMessage(){
- return {
- title: this.state.dtails.status === 3 ? this.state.dtails.aname+ '撤销了前往' + this.state.dtails.userName + '的公出' : this.state.dtails.aname+ '将要去' + this.state.dtails.userName,
- path: 'pages/egressDetails/index?id='+this.$instance.router.params.id
- }
- }
- oidApplication(){
- if(!this.state.reasonsInvalidation){
- Taro.showToast({title:'请填写撤销原因',icon:'none'})
- return;
- }
- this.setState({
- loading:true
- })
- updatePublicRelease({
- id:this.$instance.router.params.id,
- status:3,
- reason:this.state.reasonsInvalidation,
- }).then(v=>{
- this.setState({
- loading:false
- })
- if(v.error.length === 0){
- Taro.showToast({
- title:'修改成功',
- })
- this.setState({
- isInquiryOpened:false,
- inquiryTitle:'',
- inquiryContent:'',
- },()=>{
- this.getReleasetDails();
- })
- Taro.eventCenter.trigger('listOperation',{
- type:this.state.dtails.permission,
- index:this.$instance.router.params.index,
- status: 3,
- })
- }else{
- Taro.showToast({
- title:v.error[0].message,
- icon:'none'
- })
- }
- }).catch(()=>{
- this.setState({
- loading:false
- })
- });
- }
- render() {
- const {dtails} = this.state;
- return (
- <View className='egressDetails'>
- <MessageNoticebar/>
- <View className='titleContent' style={{
- padding:Object.keys(dtails).length === 0? '0 30px' : '20px 30px'
- }}>
- {Object.keys(dtails).length === 0?
- <Skeleton title row={3} animateName='elastic' avatarShape='square' loading/>:
- <View>
- <View className='title'>{dtails.aname}提交的公出申请</View>
- <View className='address'>
- 申请时间: {dtails.createTimes}
- </View>
- <View className='state' style={{
- color:getClockState(dtails.status).color
- }}>
- {
- getClockState(dtails.status).title
- }
- </View>
- <Image src={
- dtails.status === 0 ? Rejected :
- dtails.status === 1 ? Reviewed :
- dtails.status === 2 ? Passed :
- dtails.status === 3 ? Revoke :''} className='startIcon'/>
- </View>
- }
- </View>
- {Object.keys(dtails).length === 0?
- <View style={{margin: '20px'}}>
- <Skeleton title row={3} avatarShape='square' loading/>
- </View>:
- <View className='valueContent'>
- <View className='item'>
- <View className='title'>
- 公出地点:
- {dtails.permission === 0 && dtails.status === 0 ?
- <View className='edit' onClick={()=>{
- this.setState({
- isModifyOpened:true,
- })
- }}>
- <AtIcon value='edit' size='18' color='#3864ef'/>
- </View> : null}
- </View>
- <View className='value'>{dtails.userName}</View>
- <View className='timeContent'>
- <View className='time'>
- <View className='num'>公出{dtails.duration}小时</View>
- <View className='journal' onClick={(e)=>{
- e.stopPropagation();
- this.setState({
- isDetailedOpened:true
- })
- }}>明细</View>
- </View>
- <View className='timeAxis'>
- <View className='startTime'>
- <View className='circle'/>
- {dtails.releaseStarts}
- </View>
- <View className='axis'/>
- <View className='endTime'>
- <View className='circle'/>
- {dtails.releaseEnds}
- </View>
- </View>
- </View>
- </View>
- <AtModal onClose={()=>{
- this.setState({
- isDetailedOpened:false
- })
- }} isOpened={this.state.isDetailedOpened}>
- <AtModalContent>
- {dtails.validDate ? <AtCalendar
- currentDate={JSON.parse(dtails.validDate)[0]['value']}
- isSwiper={false}
- validDates={JSON.parse(dtails.validDate)}
- /> : null
- }
- </AtModalContent>
- <AtModalAction>
- <Button onClick={()=>{
- this.setState({
- isDetailedOpened:false
- })
- }}>确定</Button>
- </AtModalAction>
- </AtModal>
- <View className='item'>
- <View className='title'>
- 公出企业
- </View>
- <View className='value'>
- {dtails.nickname}
- </View>
- </View>
- <View className='item'>
- <View className='title'>公出原因</View>
- <View className='value'>
- {dtails.remarks}
- </View>
- </View>
- {dtails.annexUrl && dtails.annexUrl.length > 0 ? <View className='item'>
- <View className='title'>附件</View>
- <View className='value'>
- <ImagePicker
- files={dtails.annexUrl}
- showAddBtn={false} />
- </View>
- </View> : null}
- {
- dtails.permission === 1 && dtails.status === 1 ?
- <View className='item'>
- <View className='title'>填写审批意见</View>
- <AtTextarea
- value={this.state.opinion}
- onChange={(value)=>{
- this.setState({
- opinion:value
- })
- }}
- maxLength={20}
- placeholder='请填写审批意见'
- />
- </View> : null
- }
- {
- dtails.permission === 1 && dtails.status === 1 ?
- <View className='operation'>
- <AtButton type='secondary' circle loading={this.state.loading} onClick={()=>{
- this.setState({
- isInquiryOpened:true,
- inquiryTitle:'提醒',
- inquiryContent:'您确定要驳回此申请吗?',
- inquiryFn:()=>{
- this.examinePublicRelease(0);
- }
- })
- }}>
- 驳回
- </AtButton>
- <AtButton type='primary' loading={this.state.loading} circle onClick={()=>{
- if(this.state.loading){return;}
- this.setState({
- isInquiryOpened:true,
- inquiryTitle:'提醒',
- inquiryContent:'您确定要同意此申请吗?',
- inquiryFn:()=>{
- this.examinePublicRelease(2);
- }
- })
- }}>
- 同意
- </AtButton>
- </View> : null
- }
- {
- dtails.permission === 0 && dtails.status !== 3 ?
- <View className='item'>
- <View className='title'>撤销申请</View>
- <AtTextarea
- value={this.state.reasonsInvalidation}
- onChange={(value)=>{
- this.setState({
- reasonsInvalidation:value
- })
- }}
- maxLength={20}
- placeholder='请填写撤销申请原因'
- />
- </View> : null
- }
- {
- dtails.permission === 0 && dtails.status !== 3 ?
- <View className='operation'>
- <Button type='warn' loading={this.state.loading} onClick={()=>{
- if(this.state.loading){return;}
- this.setState({
- isInquiryOpened:true,
- inquiryTitle:'提醒',
- inquiryContent:'您确定要撤销此申请吗?',
- inquiryFn:()=>{
- this.oidApplication();
- }
- })
- }}>
- 撤销申请
- </Button>
- </View> : null
- }
- </View>}
- {Object.keys(dtails).length === 0?
- <View style={{margin: '20px'}}>
- <Skeleton title row={3} avatarShape='square' loading/>
- </View>:
- <View className='valueContent history' onClick={(e)=>{
- e.stopPropagation();
- this.setState({
- historicalIsOpened:true
- })
- }}>
- 查看公出申请日志
- <AtIcon value='chevron-right' size='20' color='#767272'/>
- </View>}
- {Object.keys(dtails).length === 0?
- <View style={{margin: '20px'}}>
- <Skeleton title row={3} avatarShape='square' loading/>
- </View>:
- <View className='valueContent history'>
- <View className='shareContent'>
- <Button open-type='share' className='share'>
- <Image src={Wx} className='shareIcon'/>
- </Button>
- <View className='shareTitle'>微信分享</View>
- </View>
- </View>}
- {this.state.isModifyOpened ? <Modify
- permission={dtails.permission}
- index={this.$instance.router.params.index}
- dtails={dtails}
- locationInfor={this.state.selectArrderLocation}
- id={this.$instance.router.params.id}
- isOpened={this.state.isModifyOpened}
- onModalClose={()=>{
- this.setState({
- isModifyOpened:false,
- })
- }}
- onClose={()=>{
- this.setState({
- isModifyOpened:false,
- dtails:{}
- },()=>{
- this.getReleasetDails();
- })
- }}/> : null}
- <InquiryModal
- isOpened={this.state.isInquiryOpened}
- title={this.state.inquiryTitle}
- content={this.state.inquiryContent}
- onClose={()=>{
- this.setState({
- isInquiryOpened:false,
- inquiryTitle:'',
- inquiryContent:'',
- })
- }}
- onDetermine={()=>{
- this.state.inquiryFn();
- this.setState({
- isInquiryOpened:false,
- inquiryTitle:'',
- inquiryContent:'',
- inquiryFn:()=>{}
- })
- }}
- />
- {this.state.historicalIsOpened ? <HistoricalClock
- id={this.$instance.router.params.id}
- isOpened={this.state.historicalIsOpened}
- onClose={()=>{
- this.setState({
- historicalIsOpened:false
- })
- }}
- /> : null}
- </View>
- )
- }
- }
- export default EgressDetails;
|