import React,{Component} from 'react'; import Taro,{getCurrentInstance } from '@tarojs/taro'; import {Text, View} from '@tarojs/components' import dayjs from 'dayjs'; import './index.less'; import DateTimePicker from '../../components/common/DateTimePicker'; import ImagePicker from '../../components/common/imagePicker' import {resourceAddress} from '../../utils/config'; import { AtButton,AtTextarea ,AtIcon,AtCalendar } from 'taro-ui' import {updatePublicRelease} from '../../utils/servers/servers'; import 'taro-ui/dist/style/components/form.scss'; import 'taro-ui/dist/style/components/button.scss'; import 'taro-ui/dist/style/components/loading.scss'; import 'taro-ui/dist/style/components/icon.scss'; import 'taro-ui/dist/style/components/icon.scss'; import 'taro-ui/dist/style/components/textarea.scss'; import 'taro-ui/dist/style/components/calendar.scss'; import './publicContent.less'; import InquiryModal from "../../components/common/inquiryModal"; class PublicContent extends Component{ constructor(props) { super(props); this.state={ rangeStartVal:'', rangeEndVal:'', rangeEndMinuteVal:'', rangeStartMinuteVal:'', reason:'', imgs:[], validDates:[], totalDuration:0, loading:false, } this.onSubmit = this.onSubmit.bind(this); this.selectArrder = this.selectArrder.bind(this); this.onChange = this.onChange.bind(this); } componentDidMount() { this.rangeStartRef.setInitialState({current:this.props.dtails.releaseStarts}) this.rangeEndRef.setInitialState({current:this.props.dtails.releaseEnds}); let arr = []; for(let i of this.props.dtails.annexUrl){ arr.push(i.url.split(resourceAddress).join("")) } this.setState({ imgs:arr, totalDuration:this.props.dtails.duration, reason:this.props.dtails.remarks, validDates:JSON.parse(this.props.dtails.validDate), rangeEndVal:dayjs(this.props.dtails.releaseEnds).format('YYYY-MM-DD'), rangeEndMinuteVal: dayjs(this.props.dtails.releaseEnds).format('YYYY-MM-DD HH:mm:ss'), rangeStartVal:dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD'), rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD HH:mm:ss'), }) } componentWillUnmount() { this.rangeEndRef && this.rangeEndRef.clear(); this.rangeStartRef && this.rangeStartRef.clear(); this.imagePickerRef && this.imagePickerRef.clear(); this.setState({ rangeStartVal:'', rangeEndVal:'', rangeEndMinuteVal:'', rangeStartMinuteVal:'', reason:'', imgs:[], validDates:[], totalDuration:0, loading:false, }) } getHours(startTime,endTime){ let a1 = dayjs(startTime); let b1 = dayjs(endTime); let c1 = b1.diff(a1,'minutes'); let hourse = parseInt(c1/60); let minutes = c1%60 let minutes1 = parseInt(minutes / 30)*0.5; //开始时间在12:00之前 包括12:00 if(!a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))){ if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+' 13:30'))){ return hourse+minutes1-1.5 }else if(!b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+' 12:00'))){ return hourse+minutes1 }else{ let a2 = dayjs(startTime); let b2 = dayjs(b1.format('YYYY-MM-DD')+' 12:00'); let c2 = b2.diff(a2,'minutes'); let hourse2 = parseInt(c2/60); let minutes2 = c2%60 let minutes3 = parseInt(minutes2 / 30)*0.5; return hourse2+minutes3 } // 开始时间在12:00之后13:30之前 }else if(a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 13:30')) && a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))){ if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+' 13:30'))){ let a2 = dayjs(a1.format('YYYY-MM-DD')+' 13:30'); let b2 = dayjs(endTime); let c2 = b2.diff(a2,'minutes'); let hourse2 = parseInt(c2/60); let minutes2 = c2%60 let minutes3 = parseInt(minutes2 / 30)*0.5; return hourse2+minutes3 }else{ return 0; } //开始时间在13:30之后 包括13:30 }else if(!a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 13:30'))){ return hourse+minutes1 } } getNumHourse(startTime,endTime){ if(dayjs(dayjs(startTime).format('YYYY-MM-DD')).isSame(dayjs(dayjs(endTime).format('YYYY-MM-DD')))){ this.setState({ totalDuration:this.getHours(startTime,endTime) }) }else{ let a = this.getHours(startTime,dayjs(startTime.format('YYYY-MM-DD')+' 17:30')); let b = this.getHours(dayjs(endTime.format('YYYY-MM-DD')+' 8:30'),endTime); let c = (this.state.validDates.length-2)*7.5; this.setState({ totalDuration:a+b+c }) } } onSubmit(){ if(!this.state.rangeStartMinuteVal){ Taro.showToast({title:'请选择公出开始时间',icon:'none'}) return ; } if(!this.state.rangeEndMinuteVal){ Taro.showToast({title:'请选择公出结束时间',icon:'none'}) return ; } if(!(this.props.locationInfor.longitude && this.props.locationInfor.latitude)){ Taro.showToast({title:'请选择公出地点',icon:'none'}) return ; } if(!this.state.reason){ Taro.showToast({title:'请输入公出事由',icon:'none'}) return ; } if(this.state.totalDuration === 0){ Taro.showToast({title:'公出时间不足0小时',icon:'none'}) return ; } this.setState({ loading:true }) updatePublicRelease({ id:this.props.dtails.id, uid:this.props.dtails.uid, releaseStarts:this.state.rangeStartMinuteVal, releaseEnds:this.state.rangeEndMinuteVal, remarks:this.state.reason, userName: this.props.locationInfor.name, longitude: this.props.locationInfor.longitude, latitude: this.props.locationInfor.latitude, annexUrl: this.state.imgs.length === 0 ? '' : this.state.imgs.join(','), duration: this.state.totalDuration, validDate: JSON.stringify(this.state.validDates) }).then(v=>{ this.setState({ loading:false }) if(v.error.length === 0){ Taro.showToast({ title:'修改成功', }) Taro.eventCenter.trigger('listOperation',{ type:this.props.permission, index:this.props.index, status: 1, userName: this.props.locationInfor.name, releaseStarts:this.state.rangeStartMinuteVal, releaseEnds:this.state.rangeEndMinuteVal, }) this.props.onClose(); }else{ Taro.showToast({ title:v.error[0].message, icon:'none' }) } }).catch(()=>{ this.setState({ loading:false }) }); } selectArrder(){ const key = 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'; //使用在腾讯位置服务申请的key const referer = '科德打卡定位'; //调用插件的app的名称 const category = '公司企业,房产小区'; Taro.navigateTo({ url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&category=' + category }); } onChange(value,type){ let arr = this.state.imgs.concat([]); if(type === 'add'){ arr.push(value) }else if(type === 'remove'){ arr.splice(value,1) } this.setState({ imgs: arr, }) } render() { const {dtails} = this.props; return ( 公出企业: {dtails.nickname} 公出开始时间: this.rangeStartRef = ref} onOk={(current)=>{ let arr = []; if(this.state.rangeEndVal){ if(dayjs(current.current).isAfter(dayjs(this.state.rangeEndMinuteVal))){ Taro.showToast({title:'开始时间不能在结束时间之后',icon:'none'}) this.rangeStartRef.clear(); this.setState({ rangeStartVal:'', rangeStartMinuteVal: '', validDates:[], totalDuration:0 }) return; } } if(this.state.rangeEndVal){ let str = dayjs(current.current).format('YYYY-MM-DD'); arr.push({value:str}); let a = dayjs(this.state.rangeEndVal.split('-')); let b = dayjs(str.split('-')); let num = a.diff(b, 'days'); let strAdd = str; for(let i = 0;i{ if(this.state.rangeEndVal){ let a1 = dayjs(dayjs(current.current).format('YYYY-MM-DD HH:mm:ss')); let b1 = dayjs(dayjs(this.state.rangeEndMinuteVal).format('YYYY-MM-DD HH:mm:ss')); this.getNumHourse(a1,b1) } }) }} onClear={()=>{ this.setState({ rangeStartVal:'', rangeStartMinuteVal: '', validDates:[], totalDuration:0 }) }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class" select-item-class="mySelector" /> 公出结束时间: this.rangeEndRef = ref} onOk={(current)=>{ let arr = []; if(this.state.rangeStartVal) { if (dayjs(current.current).isBefore(dayjs(this.state.rangeStartMinuteVal))) { Taro.showToast({title: '结束时间不能在开始时间之前', icon: 'none'}) this.rangeEndRef.clear(); this.setState({ rangeEndVal: '', rangeEndMinuteVal: '', validDates: [], totalDuration: 0 }) return; } } if(this.state.rangeStartVal){ let str = dayjs(current.current).format('YYYY-MM-DD'); arr.push({value:this.state.rangeStartVal}); let a = dayjs(this.state.rangeStartVal.split('-')); let b = dayjs(str.split('-')); let num = b.diff(a, 'days'); let strAdd = this.state.rangeStartVal; for(let i = 0;i{ if(this.state.rangeStartVal){ let a1 = dayjs(dayjs(current.current).format('YYYY-MM-DD HH:mm:ss')); let b1 = dayjs(dayjs(this.state.rangeStartMinuteVal).format('YYYY-MM-DD HH:mm:ss')); this.getNumHourse(b1,a1) } }) }} onClear={()=>{ this.setState({ rangeEndVal:'', rangeEndMinuteVal: '', validDates:[], totalDuration:0 }) }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class" select-item-class="mySelector" /> 总时长: {this.state.totalDuration}小时 {this.state.validDates.length !== 0? 去除放假时间: 绿色方块为公出时间,长按即可去除放假时间 { if(!(dayjs(item.value.split('-')).isSame(this.state.rangeStartVal.split('-')) || dayjs(item.value.split('-')).isSame(this.state.rangeEndVal.split('-')))){ if(!(dayjs(item.value.split('-')).isAfter(this.state.rangeStartVal.split('-')) && dayjs(item.value.split('-')).isBefore(this.state.rangeEndVal.split('-')))){ return; } }else{ Taro.showToast({title:'开始结束时间不能取消',icon:'none'}) return } let index = this.state.validDates.findIndex(v=>{ let lv = dayjs(v.value.split('-')).isSame(item.value.split('-')); return lv }) if(index<0){ let arr = item.value.split('-'); this.state.validDates.push({value:arr.join('-')}) this.setState({ validDates:this.state.validDates, totalDuration: this.state.totalDuration + 7.5 }) }else{ this.state.validDates.splice(index,1) this.setState({ validDates:this.state.validDates, totalDuration: this.state.totalDuration - 7.5 }) } }} /> : null} 公出地点: {this.props.locationInfor.name} 以地图中红标为中心100米范围为可打卡区域,移动红标只需要拖动地图即可 公出事由: { this.setState({ reason:v }) }} maxLength={200} placeholder='请输入公出事由' /> 附件: {dtails.annexUrl && this.props.isOpened ? this.imagePickerRef = ref} url='/api/admin/release/upload' onChange={this.onChange} /> : null } { this.props.onClose(); }}> 取消 { this.setState({ isInquiryOpened:true, inquiryTitle:'提醒', inquiryContent:'您确定要修改此申请吗?', inquiryFn:()=>{ this.onSubmit(); } }) }}> 确定修改 { this.setState({ isInquiryOpened:false, inquiryTitle:'', inquiryContent:'', }) }} onDetermine={()=>{ this.state.inquiryFn(); this.setState({ isInquiryOpened:false, inquiryTitle:'', inquiryContent:'', inquiryFn:()=>{} }) }} /> ) } } export default PublicContent;