123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- 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 (
- <View className='publicContent'>
- <View className='formItem'>
- <View className='formName'>公出企业:</View>
- <View className='formValue'>{dtails.nickname}</View>
- </View>
- <View className='formItem'>
- <View className='formName'>公出开始时间:</View>
- <View className='formValue'>
- <DateTimePicker ref={ref=>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<num;i++){
- let time = dayjs(strAdd).add(1, 'days').format('YYYY-MM-DD');
- strAdd = time
- arr.push({value:time});
- }
- }
- this.setState({
- rangeStartVal:dayjs(current.current).format('YYYY-MM-DD'),
- rangeStartMinuteVal: dayjs(current.current).format('YYYY-MM-DD HH:mm:ss'),
- validDates:arr
- },()=>{
- 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" />
- </View>
- </View>
- <View className='formItem'>
- <View className='formName'>公出结束时间:</View>
- <View className='formValue'>
- <DateTimePicker ref={ref=>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<num;i++){
- let time = dayjs(strAdd).add(1, 'days').format('YYYY-MM-DD');
- strAdd = time
- arr.push({value:time});
- }
- }
- this.setState({
- rangeEndVal:dayjs(current.current).format('YYYY-MM-DD'),
- rangeEndMinuteVal: dayjs(current.current).format('YYYY-MM-DD HH:mm:ss'),
- validDates:arr,
- },()=>{
- 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" />
- </View>
- </View>
- <View className='formItem'>
- <View className='formName'>总时长:</View>
- <View className='formValue'>
- {this.state.totalDuration}小时
- </View>
- </View>
- {this.state.validDates.length !== 0? <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
- <View className='formName'>
- <View>去除放假时间:</View>
- <View className='tips'>绿色方块为公出时间,长按即可去除放假时间</View>
- </View>
- <AtCalendar
- currentDate={this.state.rangeStartVal}
- minDate={this.state.rangeStartVal}
- maxDate={this.state.rangeEndVal}
- isSwiper={false}
- validDates={this.state.validDates}
- onDayLongClick={(item)=>{
- 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
- })
- }
- }}
- />
- </View> : null}
- <View className='formItem' style={{
- paddingBottom:0
- }}>
- <View className='formName'>公出地点:</View>
- <View className='formValue' onClick={this.selectArrder}>
- <Text className='formValueText'>{this.props.locationInfor.name}</Text>
- <AtIcon value='chevron-right' size='30' color='#bbbbbb'/>
- </View>
- </View>
- <View className='tips'>以地图中红标为中心100米范围为可打卡区域,移动红标只需要拖动地图即可</View>
- <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
- <View className='formName'>公出事由:</View>
- <View className='formValue' style={{paddingTop:'10px',textAlign:'left'}}>
- <AtTextarea
- value={this.state.reason}
- onChange={(v)=>{
- this.setState({
- reason:v
- })
- }}
- maxLength={200}
- placeholder='请输入公出事由'
- />
- </View>
- </View>
- <View className='formItem' style={{display:'block'}}>
- <View className='formName'>附件:</View>
- <View className='formValue' style={{paddingTop:'10px',textAlign:'left'}}>
- {dtails.annexUrl && this.props.isOpened ? <ImagePicker
- files={dtails.annexUrl}
- showAddBtn={true}
- ref={ref => this.imagePickerRef = ref}
- url='/api/admin/release/upload'
- onChange={this.onChange}
- /> : null }
- </View>
- </View>
- <View className='operation'>
- <AtButton disabled={this.state.loading} type='secondary' circle onClick={()=>{
- this.props.onClose();
- }}>
- 取消
- </AtButton>
- <AtButton type='primary' loading={this.state.loading} circle onClick={()=>{
- this.setState({
- isInquiryOpened:true,
- inquiryTitle:'提醒',
- inquiryContent:'您确定要修改此申请吗?',
- inquiryFn:()=>{
- this.onSubmit();
- }
- })
- }}>
- 确定修改
- </AtButton>
- </View>
- <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:()=>{}
- })
- }}
- />
- </View>
- )
- }
- }
- export default PublicContent;
|