HW пре 3 година
родитељ
комит
c342026bc0

+ 118 - 0
src/components/historicalClock/index.jsx

@@ -0,0 +1,118 @@
+import React,{Component} from "react";
+import {AtModal, AtModalAction, AtModalContent, AtIcon } from "taro-ui";
+import {Button, Image,View} from "@tarojs/components";
+import Taro from "@tarojs/taro";
+
+import './index.less';
+
+import {getListPublicReleaseLog} from '../../utils/servers/servers';
+
+import "taro-ui/dist/style/components/icon.scss";
+import {getClockState} from "../../utils/tools";
+import ImagePicker from "../common/imagePicker";
+import {resourceAddress} from "../../utils/config";
+
+class HistoricalClock extends Component{
+  constructor(props) {
+    super(props);
+    this.state={
+      publicReleaseLog:[]
+    }
+    this.getListPublicReleaseLog = this.getListPublicReleaseLog.bind(this);
+  }
+
+  componentDidMount() {
+    this.getListPublicReleaseLog();
+  }
+
+  getListPublicReleaseLog(){
+    Taro.showLoading({
+      title:'加载中...'
+    })
+    getListPublicReleaseLog({
+      id:this.props.id
+    }).then(v=>{
+      Taro.hideLoading();
+      if(v.error.length === 0){
+        for(let d of v.data){
+          let list = [];
+          for(let i of (d.photoUrl || '').split(',')){
+            if(i){
+              list.push({'url':resourceAddress + i})
+            }
+          }
+          d.photoUrl = list;
+        }
+        this.setState({
+          publicReleaseLog:v.data,
+        })
+      }else{
+        Taro.showToast({title:v.error[0].message,icon:'none'})
+      }
+    }).catch(err=>{
+      Taro.hideLoading();
+      Taro.showToast({title:'系统错误.请稍后重试',icon:'none'})
+      console.log(err)
+    })
+  }
+
+  render() {
+    return (
+      <AtModal
+        isOpened={this.props.isOpened}
+        onClose={this.props.onClose}>
+        <AtModalContent>
+          <View className='historicalClock'>
+            {
+              this.state.publicReleaseLog.map((v,k)=>(
+                <View key={k} className='item'>
+                  <View className='head'>
+                    <View className='spot'/>
+                    <View className='clockTime' style={{
+                      color:getClockState(v.status,true).color
+                    }}>
+                      {getClockState(v.status,true).title}
+                    </View>
+                  </View>
+                  <View className='clockContent'>
+                    <View className='verticalLine' style={{
+                      visibility:this.state.publicReleaseLog[k+1] ? 'visible' : 'hidden'
+                    }}/>
+                    <View className='rightContent' style={{
+                      paddingBottom:this.state.publicReleaseLog[k+1] ? '30px' : 0
+                    }}>
+                      <View className='contentItem'>
+                        <AtIcon className='atIcon' value='user' size='15' color='#999999'/>
+                        操作人:{v.aname}
+                      </View>
+                      <View className='contentItem'>
+                        <AtIcon className='atIcon' value='clock' size='15' color='#999999'/>
+                        操作时间:{v.createTimes}
+                      </View>
+                      {v.remarks ? <View className='contentItem'>
+                        <AtIcon className='atIcon' value='message' size='15' color='#999999'/>
+                        备注:{v.remarks}
+                      </View> : null}
+                      {v.photoUrl.length !== 0 ? <View className='contentItem'>
+                        <AtIcon className='atIcon' value='file-generic' size='15' color='#999999'/>
+                        附件:
+                        <ImagePicker
+                          files={v.photoUrl || []}
+                          showAddBtn={false} />
+                      </View> : null}
+                    </View>
+                  </View>
+                </View>
+              ))
+            }
+          </View>
+        </AtModalContent>
+        <AtModalAction>
+          <Button onClick={this.props.onClose}>确定</Button>
+        </AtModalAction>
+      </AtModal>
+    )
+  }
+}
+
+export default HistoricalClock;

+ 45 - 0
src/components/historicalClock/index.less

@@ -0,0 +1,45 @@
+.historicalClock{
+  padding: 15px;
+  .item{
+    color: #999999;
+    padding-bottom: 15px;
+    .head{
+      display: flex;
+      flex-flow: row nowrap;
+      align-content: center;
+      padding-bottom: 15px;
+      .spot{
+        width: 30px;
+        height: 30px;
+        border-radius: 30px;
+        background: #999999;
+        margin-right: 20px;
+      }
+      .clockTime{
+        font-size: 23px;
+      }
+    }
+    .clockContent{
+      display: flex;
+      flex-flow: row nowrap;
+      .verticalLine{
+        border: 2px #cbcaca solid;
+        margin-right: 30px;
+        margin-left: 15px;
+      }
+      .rightContent{
+        padding-top: 15px;
+        .contentItem{
+          font-size: 23px;
+          padding-bottom: 25px;
+          .atIcon{
+            margin-right: 5px;
+          }
+        }
+      }
+    }
+  }
+  .at-image-picker__remove-btn{
+    display: none;
+  }
+}

BIN
src/image/location.png


BIN
src/image/punchRange.png


BIN
src/image/revoke.png


BIN
src/image/revokeWhite.png


+ 7 - 3
src/pages/applyDepart/enterprise.jsx

@@ -37,11 +37,15 @@ class Enterprise extends Component{
     })
   }
 
-  onChange (value) {
+  onChange (value,lv=true) {
     this.setState({
       value,
     })
-    if(value.length < 4){return}
+    if(value.length < 2 && !lv){
+      Taro.showToast({title:'最少输入两个字符',icon:'none'})
+      return
+    }
+    if(value.length < 4 && lv){return}
     this.setState({
       listState: 'LOADING'
     })
@@ -84,7 +88,7 @@ class Enterprise extends Component{
           showActionButton
           value={this.state.value}
           onChange={this.onChange}
-          onActionClick={()=>{this.onChange(this.state.value)}}
+          onActionClick={()=>{this.onChange(this.state.value,false)}}
           onClear={()=>{
             this.setState({
               value:'',

+ 8 - 2
src/pages/applyDepart/publicContent.jsx

@@ -292,7 +292,10 @@ class PublicContent extends Component{
           </View>
         </View>
         {this.state.validDates.length !== 0? <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
-          <View className='formName'>去除放假时间:</View>
+          <View className='formName'>
+            <View>去除放假时间:</View>
+            <View className='tips'>绿色方块为公出时间,长按即可去除放假时间</View>
+          </View>
           <AtCalendar
             currentDate={this.state.rangeStartVal}
             minDate={this.state.rangeStartVal}
@@ -336,7 +339,7 @@ class PublicContent extends Component{
               <AtIcon value='chevron-right' size='30' color='#bbbbbb'/>
           </View>
         </View>
-        <View className='tips'>打卡范围是以地图中红标为中心100米范围为可打卡范围,拖动地图可移动红标</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'}}>
@@ -370,6 +373,9 @@ class PublicContent extends Component{
             上一步
           </AtButton>
           <AtButton type='primary' loading={this.state.loading} circle onClick={()=>{
+            if(this.state.loading){
+              return;
+            }
             this.setState({
               isInquiryOpened:true,
               inquiryTitle:'提醒',

+ 5 - 0
src/pages/applyDepart/publicContent.less

@@ -7,6 +7,11 @@
     padding-bottom: 28px;
     .formName{
       white-space: nowrap;
+      .tips{
+        color: #ff0000;
+        font-size: 20px;
+        padding-bottom: 20px;
+      }
     }
     .formValue{
       text-align: right;

+ 7 - 3
src/pages/egressDetails/enterprise.jsx

@@ -27,11 +27,15 @@ class Enterprise extends Component{
     this.onChange = this.onChange.bind(this);
   }
 
-  onChange (value) {
+  onChange (value,lv=true) {
     this.setState({
       value,
     })
-    if(value.length < 4){return}
+    if(value.length < 2 && !lv){
+      Taro.showToast({title:'最少输入两个字符',icon:'none'})
+      return
+    }
+    if(value.length < 4 && lv){return}
     this.setState({
       listState: 'LOADING'
     })
@@ -83,7 +87,7 @@ class Enterprise extends Component{
           showActionButton
           value={this.state.value}
           onChange={this.onChange}
-          onActionClick={()=>{this.onChange(this.state.value)}}
+          onActionClick={()=>{this.onChange(this.state.value,false)}}
           onClear={()=>{
             this.setState({
               value:'',

+ 104 - 73
src/pages/egressDetails/index.jsx

@@ -1,13 +1,13 @@
 import React,{Component} from "react";
 import { View,Image,Button } from '@tarojs/components'
 import Taro, { getCurrentInstance } from "@tarojs/taro";
-import {AtButton, AtCalendar, AtIcon, AtTextarea,AtModal, AtTimeline, AtModalContent, AtModalAction} from 'taro-ui'
+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,getListPublicReleaseLog} from '../../utils/servers/servers';
+import {examinePublicRelease,getReleasetDails,updatePublicRelease} from '../../utils/servers/servers';
 import {resourceAddress} from '../../utils/config';
 import './index.less';
 
@@ -22,9 +22,13 @@ 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 switchIocn from '../../image/switch.png';
 import MessageNoticebar from "../../components/common/messageNoticebar";
+import {getClockState} from "../../utils/tools";
+import HistoricalClock from "../../components/historicalClock";
 
 class EgressDetails extends Component{
 
@@ -37,13 +41,12 @@ class EgressDetails extends Component{
       opinion:'',
       publicReleaseLog:[],
       isDetailedOpened:false,
-      isOpened:false,
       isModifyOpened:false,
       selectArrderLocation:{}
     }
     this.examinePublicRelease= this.examinePublicRelease.bind(this);
     this.getReleasetDails= this.getReleasetDails.bind(this);
-    this.getListPublicReleaseLog= this.getListPublicReleaseLog.bind(this);
+    this.oidApplication= this.oidApplication.bind(this);
   }
 
   componentDidMount() {
@@ -133,47 +136,56 @@ class EgressDetails extends Component{
     })
   }
 
-  getListPublicReleaseLog(){
-    Taro.showLoading({
-      title:'加载中...'
+  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
     })
-    getListPublicReleaseLog({
-      id:this.$instance.router.params.id
+    updatePublicRelease({
+      id:this.$instance.router.params.id,
+      status:3,
+      remarks:this.state.reasonsInvalidation,
     }).then(v=>{
-      Taro.hideLoading();
+      this.setState({
+        loading:false
+      })
       if(v.error.length === 0){
-        let arr = [];
-        for (let i of v.data){
-          arr.push({
-            title:
-              i.status === 0 ? '驳回' :
-                i.status === 1 ? '审核中' :
-                  i.status === 2 ? '通过' : '',
-            content: ['审核员:'+i.aname,i.remarks ? '审核意见:'+i.remarks : null,'操作时间:'+i.createTimes],
-            color: i.status === 0 ? '#f31212' :
-                    i.status === 1 ? '#1d4fea' :
-                      i.status === 2 ? '#34de38' : ''
-          })
-        }
+        Taro.showToast({
+          title:'修改成功',
+        })
         this.setState({
-          publicReleaseLog:arr,
-          isOpened:true
+          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'})
+        Taro.showToast({
+          title:v.error[0].message,
+          icon:'none'
+        })
       }
-    }).catch(err=>{
-      Taro.hideLoading();
-      Taro.showToast({title:'系统错误.请稍后重试',icon:'none'})
-      console.log(err)
-    })
-  }
-
-  onShareAppMessage(){
-    return {
-      title: this.state.dtails.aname+ '将要去' + this.state.dtails.userName,
-      path: 'pages/egressDetails/index?id='+this.$instance.router.params.id
-    }
+    }).catch(()=>{
+      this.setState({
+        loading:false
+      })
+    });
   }
 
   render() {
@@ -192,20 +204,17 @@ class EgressDetails extends Component{
                 申请时间: {dtails.createTimes}
               </View>
               <View className='state' style={{
-                color:dtails.status === 0 ? '#f31212' :
-                  dtails.status === 1 ? '#1d4fea' :
-                    dtails.status === 2 ? '#34de38' : ''
+                color:getClockState(dtails.status).color
               }}>
                 {
-                  dtails.status === 0 ? '驳回' :
-                    dtails.status === 1 ? '审核中' :
-                      dtails.status === 2 ? '通过' : ''
+                  getClockState(dtails.status).title
                 }
               </View>
               <Image src={
                 dtails.status === 0 ? Rejected :
                   dtails.status === 1 ? Reviewed :
-                    dtails.status === 2 ? Passed : ''} className='startIcon'/>
+                    dtails.status === 2 ? Passed :
+                      dtails.status === 3 ? Revoke :''} className='startIcon'/>
             </View>
           }
         </View>
@@ -257,6 +266,7 @@ class EgressDetails extends Component{
             }} isOpened={this.state.isDetailedOpened}>
              <AtModalContent>
                {dtails.validDate ?  <AtCalendar
+                    currentDate={JSON.parse(dtails.validDate)[0]['value']}
                     isSwiper={false}
                     validDates={JSON.parse(dtails.validDate)}
                   /> : null
@@ -273,12 +283,6 @@ class EgressDetails extends Component{
             <View className='item'>
               <View className='title'>
                 公出企业
-                {/*{dtails.permission === 0 && dtails.status === 0 ? <Image src={switchIocn} className='switchItem' onClick={()=>{*/}
-                {/*  this.setState({*/}
-                {/*    isModifyOpened:true,*/}
-                {/*    modifyType:1,*/}
-                {/*  })*/}
-                {/*}}/> : null}*/}
               </View>
               <View className='value'>
                 {dtails.nickname}
@@ -330,6 +334,7 @@ class EgressDetails extends Component{
                     驳回
                   </AtButton>
                   <AtButton type='primary' loading={this.state.loading} circle onClick={()=>{
+                    if(this.state.loading){return;}
                     this.setState({
                       isInquiryOpened:true,
                       inquiryTitle:'提醒',
@@ -343,6 +348,40 @@ class EgressDetails extends Component{
                   </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'}}>
@@ -350,9 +389,11 @@ class EgressDetails extends Component{
           </View>:
           <View className='valueContent history' onClick={(e)=>{
             e.stopPropagation();
-            this.getListPublicReleaseLog();
+            this.setState({
+              historicalIsOpened:true
+            })
           }}>
-            查看TA的历史记录
+            查看公出申请日志
           <AtIcon value='chevron-right' size='20' color='#767272'/>
         </View>}
         {Object.keys(dtails).length === 0?
@@ -367,25 +408,6 @@ class EgressDetails extends Component{
               <View className='shareTitle'>微信分享</View>
             </View>
           </View>}
-        <AtModal onClose={()=>{
-          this.setState({
-            isOpened:false
-          })
-        }} isOpened={this.state.isOpened}>
-          <AtModalContent>
-            <AtTimeline
-              pending
-              items={this.state.publicReleaseLog}
-            />
-          </AtModalContent>
-          <AtModalAction>
-            <Button onClick={()=>{
-              this.setState({
-                isOpened:false
-              })
-            }}>确定</Button>
-          </AtModalAction>
-        </AtModal>
         {this.state.isModifyOpened ? <Modify
           permission={dtails.permission}
           index={this.$instance.router.params.index}
@@ -427,6 +449,15 @@ class EgressDetails extends Component{
             })
           }}
         />
+        {this.state.historicalIsOpened ? <HistoricalClock
+          id={this.$instance.router.params.id}
+          isOpened={this.state.historicalIsOpened}
+          onClose={()=>{
+            this.setState({
+              historicalIsOpened:false
+            })
+          }}
+        /> : null}
       </View>
     )
   }

+ 8 - 3
src/pages/egressDetails/publicContent.jsx

@@ -323,7 +323,10 @@ class PublicContent extends Component{
           </View>
         </View>
         {this.state.validDates.length !== 0? <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
-          <View className='formName'>去除放假时间:</View>
+          <View className='formName'>
+            <View>去除放假时间:</View>
+            <View className='tips'>绿色方块为公出时间,长按即可去除放假时间</View>
+          </View>
           <AtCalendar
             currentDate={this.state.rangeStartVal}
             minDate={this.state.rangeStartVal}
@@ -360,14 +363,16 @@ class PublicContent extends Component{
             }}
           />
         </View> : null}
-        <View className='formItem'>
+        <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'>地址选择错误,将影响打卡定位,选择后请认真核对</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'}}>

+ 5 - 0
src/pages/egressDetails/publicContent.less

@@ -7,6 +7,11 @@
     padding-bottom: 25px;
     .formName{
       white-space: nowrap;
+      .tips{
+        color: #ff0000;
+        font-size: 20px;
+        padding-bottom: 20px;
+      }
     }
     .formValue{
       text-align: right;

+ 7 - 7
src/pages/examine/index.jsx

@@ -56,7 +56,7 @@ class Examine extends Component {
   }
 
   async componentDidMount() {
-    // await this.getPublicReleaseList();
+    await this.getPublicReleaseList();
   }
 
   onPullDownRefresh(){
@@ -69,11 +69,15 @@ class Examine extends Component {
 
   onTabItemTap(obj){
     if(obj.index === 1){
-      this.getMyList(1);
-      this.getExamineList(1);
+      this.onTabTap();
     }
   }
 
+  async onTabTap(){
+    await this.getMyList(1);
+    await this.getExamineList(1);
+  }
+
   async getPublicReleaseList (lv){
     if(this.state.current === 0){
       await this.getMyList(lv ? this.state.pageNo + 1 : 1);
@@ -152,10 +156,6 @@ class Examine extends Component {
             this.setState({
               examineListState: 'NO_MORE_DATA'
             })
-          }else if(pageNo === 1 && (msg.data.list.length || []) < 10){
-            this.setState({
-              examineListState: 'NO_MORE_DATA'
-            })
           }
         })
       }

+ 19 - 0
src/pages/examine/index.less

@@ -12,6 +12,25 @@
       display: flex;
       flex-flow: row nowrap;
       margin-bottom: 17px;
+      position: relative;
+      overflow: hidden;
+      .revoke{
+        position: absolute;
+        top: 0;
+        left: 0;
+        right: 0;
+        bottom: 0;
+        background: rgba(0,0,0,.7);
+        z-index: 999;
+        display: flex;
+        flex-flow: row nowrap;
+        align-items: center;
+        justify-content: center;
+        .revokeImg{
+          width: 250px;
+          height: 250px;
+        }
+      }
       .infor{
         width: 100%;
         position: relative;

+ 15 - 9
src/pages/examine/myList.jsx

@@ -1,10 +1,13 @@
 import React, { Component } from 'react';
 import Taro from '@tarojs/taro';
 import { View,Image } from '@tarojs/components'
-import Skeleton from 'taro-skeleton'
+import Skeleton from 'taro-skeleton';
+import {getClockState} from '../../utils/tools';
 
 import ListBottomStart  from '../../components/common/listBottomStart';
 
+import RevokeWhite from '../../image/revokeWhite.png';
+
 import './index.less';
 
 class MyList extends Component {
@@ -37,25 +40,32 @@ class MyList extends Component {
                   url:'/pages/egressDetails/index?id='+v.id+'&index='+k
                 })
               }}>
+                {v.status === 3 ? <View className='revoke'>
+                  <Image src={RevokeWhite} className='revokeImg'/>
+                </View> : null}
                 <View className='infor'>
                   <View className='title'>
                     <View className='aname'>{v.aname}提交的公出申请</View>
                     <View className='createTimes'>{v.createTimes}</View>
                   </View>
                   <View className='userName'>
+                    公出企业:
+                    {v.nickname}
+                  </View>
+                  <View className='userName'>
                     公出地点:
                     {v.userName}
                   </View>
                   <View className='releaseStarts'>
                     开始时间:{v.releaseStarts}
-                    {this.props.type === 0 ? <View className='punchClock' onClick={(e)=>{
+                    {this.props.type === 0 && v.status !== 3? <View className='punchClock' onClick={(e)=>{
                       e.stopPropagation();
                       Taro.eventCenter.trigger('GoPunchIn',v)
                       Taro.switchTab({
                         url: '/pages/punchClock/index',
                       })
                     }}>
-                      去打卡
+                      {v.clockIn === 1 ? '更新打卡' : '去打卡'}
                     </View> : null}
                   </View>
                   <View className='releaseEnds'>
@@ -71,14 +81,10 @@ class MyList extends Component {
                         </View>
                     }
                     <View className='status' style={{
-                      color:v.status === 0 ? '#f31212' :
-                        v.status === 1 ? '#1d4fea' :
-                          v.status === 2 ? '#34de38' : ''
+                      color:getClockState(v.status).color
                     }}>
                       {
-                        v.status === 0 ? '驳回' :
-                          v.status === 1 ? '审核中' :
-                            v.status === 2 ? '通过' : ''
+                        getClockState(v.status).title
                       }
                     </View>
                   </View>

+ 41 - 0
src/pages/punchClock/index.less

@@ -70,6 +70,14 @@
     display: flex;
     flex-flow: column nowrap;
     align-items: center;
+    .history{
+      display: flex;
+      flex-flow: row nowrap;
+      justify-content: space-between;
+      align-items: center;
+      font-size: 30px;
+      width: 100%;
+    }
     .noData{
       display: flex;
       flex-flow: column nowrap;
@@ -110,10 +118,15 @@
       }
     }
     .map{
+      position: relative;
       height:600px;
       width:100%;
       border-radius: 20px;
       overflow: hidden;
+      #map{
+        height:600px;
+        width:100%
+      }
     }
     .tips{
       color: #999999;
@@ -167,4 +180,32 @@
       }
     }
   }
+  .locationContent{
+    position: absolute;
+    display: flex;
+    flex-flow: column nowrap;
+    padding: 35px;
+    z-index: 999;
+    .location{
+      display: inline-block;
+      padding: 15px 15px 10px 15px;
+      background: #FFFFFF;
+      border-radius: 150px;
+      margin-bottom: 30px;
+      .locationIcon{
+        width: 50px;
+        height: 50px;
+      }
+    }
+    .punchRange{
+      display: inline-block;
+      padding: 15px 15px 10px 15px;
+      background: #FFFFFF;
+      border-radius: 150px;
+      .punchRangeIcon{
+        width: 50px;
+        height: 50px;
+      }
+    }
+  }
 }

+ 129 - 80
src/pages/punchClock/punchClocks.jsx

@@ -2,10 +2,12 @@ import React, { Component } from 'react'
 import { connect } from 'react-redux'
 import {Map, OpenData, View, Image, Text} from '@tarojs/components'
 import Taro from '@tarojs/taro';
-import {AtIcon, AtModal, AtNoticebar} from "taro-ui";
+import {AtIcon, AtModal} from "taro-ui";
 import dayjs from 'dayjs';
 import Skeleton from 'taro-skeleton'
 
+import HistoricalClock from '../../components/historicalClock';
+
 import ImagePicker from '../../components/common/imagePicker';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
@@ -15,10 +17,13 @@ import {getPublicReleaseList,publicReleaseClockIn} from '../../utils/servers/ser
 import './index.less'
 
 import switchIocn from '../../image/switch.png';
+import Location from '../../image/location.png';
+import PunchRange from '../../image/punchRange.png';
 
 import 'taro-ui/dist/style/components/noticebar.scss';
 import 'taro-ui/dist/style/components/icon.scss';
 import 'taro-ui/dist/style/components/list.scss';
+import {getClockState} from "../../utils/tools";
 
 const QQMapWX = require('../../components/common/mapSDK/qqmap-wx-jssdk.min.js');
 
@@ -59,6 +64,8 @@ class PunchClocks extends Component {
 
   nowTime = null;
 
+  mapCtx = Taro.createMapContext('map');
+
   qqmapsdk = new QQMapWX({
     key: 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'
   });
@@ -160,29 +167,35 @@ class PunchClocks extends Component {
 
   publicReleaseClockIn(){
     if(Object.keys(this.state.dtails).length === 0){
-      Taro.showToast({title:'暂无公出申请,无法打卡',icon:'none'})
+      Taro.showToast({title:'暂无公出申请,无法打卡',icon:'none'});
+      Taro.hideLoading()
       return ;
     }
     if(isNaN(parseInt(this.state.distance))){
       Taro.showToast({title:'定位错误,请联系管理员',icon:'none'})
+      Taro.hideLoading()
       return ;
     }
     if(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)){
       Taro.showToast({title:'还没到打卡时间,无法打卡',icon:'none'})
+      Taro.hideLoading()
       return ;
     }
     if(!(this.state.distance <=100 && this.state.distance >= 0)){
       Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
+      Taro.hideLoading()
       return ;
     }
     if(this.state.imgs.length === 0){
       Taro.showToast({title:'请上传打卡照片',icon:'none'})
+      Taro.hideLoading()
       return ;
     }
     publicReleaseClockIn({
       id:this.state.dtails.id,
       photoUrl:this.state.imgs.join(',')
     }).then(v=>{
+      Taro.hideLoading()
       if(v.error.length === 0){
         Taro.showToast({title:'打卡成功',icon:'none'});
         this.imagePicker.clear();
@@ -195,6 +208,7 @@ class PunchClocks extends Component {
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
     }).catch(()=>{
+      Taro.hideLoading()
       Taro.showToast({
         title:'系统错误,请稍后再试',
         icon:'none'
@@ -382,15 +396,11 @@ class PunchClocks extends Component {
                     <View>刷新</View>
                   </View> :
                   <View className='state' style={{
-                    color:dtails.status === 0 ? '#f31212' :
-                      dtails.status === 1 ? '#1d4fea' :
-                        dtails.status === 2 ? '#767272' : ''
+                    color:getClockState(dtails.status).color
                   }}>
                     <View style={{textAlign:'right'}}>
                       {
-                        dtails.status === 0 ? '驳回' :
-                          dtails.status === 1 ? '审核中' :
-                            dtails.status === 2 ? '通过' : ''
+                        getClockState(dtails.status).title
                       }
                     </View>
                     <View className='switchContent' onClick={()=>{
@@ -430,86 +440,116 @@ class PunchClocks extends Component {
                 </View>
               </View>
             </View>:
-            <View className='content'>
-              <View className='timeContent'>
-                <View className='timeItem'>
-                  <View className='timeTitle'>公出开始时间</View>
-                  <View className='timeValue'>{dtails.releaseStarts}</View>
+            <View>
+              <View className='content'>
+                <View className='timeContent'>
+                  <View className='timeItem'>
+                    <View className='timeTitle'>公出开始时间</View>
+                    <View className='timeValue'>{dtails.releaseStarts}</View>
+                  </View>
+                  <View className='timeItem'>
+                    <View className='timeTitle'>公出结束时间</View>
+                    <View className='timeValue'>{dtails.releaseEnds}</View>
+                  </View>
                 </View>
-                <View className='timeItem'>
-                  <View className='timeTitle'>公出结束时间</View>
-                  <View className='timeValue'>{dtails.releaseEnds}</View>
+                <View className='photographContent'>
+                  <View className='photographTitle'>打卡拍照<Text className='tips'>〔可以上传多张〕</Text></View>
+                  <AtIcon onClick={()=>{
+                    Taro.chooseImage({
+                      count: 1,
+                      sizeType: ['compressed'],
+                      sourceType: ['camera'],
+                      success:(res)=> {
+                        // tempFilePath可以作为img标签的src属性显示图片
+                        const tempFilePaths = res.tempFilePaths
+                        this.imagePicker.onImgChange([{url:tempFilePaths[0]}],'add',0,'camera')
+                      }
+                    })
+                  }} value='camera' size='25' color='#4395ff'/>
                 </View>
-              </View>
-              <View className='photographContent'>
-                <View className='photographTitle'>打卡拍照<Text className='tips'>〔可以上传多张〕</Text></View>
-                <AtIcon onClick={()=>{
-                  Taro.chooseImage({
-                    count: 1,
-                    sizeType: ['compressed'],
-                    sourceType: ['camera'],
-                    success:(res)=> {
-                      // tempFilePath可以作为img标签的src属性显示图片
-                      const tempFilePaths = res.tempFilePaths
-                      this.imagePicker.onImgChange([{url:tempFilePaths[0]}],'add',0,'camera')
+                <View style={{alignSelf:'flex-start',width:'100%'}}>
+                  <ImagePicker ref={ref => this.imagePicker = ref} url='/api/admin/release/upload' showAddBtn={false} onChange={this.onChange}/>
+                </View>
+                <View className='punchClockContent' onClick={()=>{
+                  let _this = this;
+                  Taro.showLoading({title:'加载中...'})
+                  Taro.getSetting({
+                    success:(res)=>{
+                      if (!res.authSetting['scope.userLocation']) {
+                        Taro.authorize({
+                          scope: 'scope.userLocation',
+                          success:()=>{
+                            _this.publicReleaseClockIn();
+                          },
+                          fail:()=>{
+                            Taro.hideLoading()
+                            this.setState({
+                              isOpened:true
+                            })
+                          }
+                        })
+                      }else{
+                        _this.publicReleaseClockIn();
+                      }
                     }
                   })
-                }} value='camera' size='25' color='#4395ff'/>
-              </View>
-              <View style={{alignSelf:'flex-start',width:'100%'}}>
-                <ImagePicker ref={ref => this.imagePicker = ref} url='/api/admin/release/upload' showAddBtn={false} onChange={this.onChange}/>
-              </View>
-              <View className='punchClockContent' onClick={()=>{
-                let _this = this;
-                Taro.getSetting({
-                  success:(res)=>{
-                    if (!res.authSetting['scope.userLocation']) {
-                      Taro.authorize({
-                        scope: 'scope.userLocation',
-                        success:()=>{
-                          _this.publicReleaseClockIn();
-                        },
-                        fail:()=>{
-                          this.setState({
-                            isOpened:true
-                          })
-                        }
-                      })
-                    }else{
-                      _this.publicReleaseClockIn();
+                }} style={{
+                  boxShadow:  (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '1px 1px 15px 1px #3f82e8' : '1px 1px 15px 1px #659268') : '1px 1px 15px 1px #acb8ad',
+                  background: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '#3f82e8' : '#72cb78') : '#acb8ad'
+                }}>
+                  <View className='punchClockTitle'>
+                    {
+                      dtails.clockIn === 1 ?
+                        '刷新打卡' : '公出打卡'
                     }
-                  }
+                  </View>
+                  <View className='punchClockTime'>{this.state.nowTime}</View>
+                  {/*{dtails.clockIn === 1 ? <View className='refreshClock'>刷新打卡</View>:null}*/}
+                </View>
+                <View className='map'>
+                  <View className='locationContent'>
+                    <View className='location' onClick={()=>{
+                      this.mapCtx.moveToLocation();
+                    }}>
+                      <Image src={Location} className='locationIcon'/>
+                    </View>
+                    <View className='punchRange' onClick={()=>{
+                      this.mapCtx.moveToLocation({
+                        latitude: this.state.addressLatitude,
+                        longitude: this.state.addressLongitude,
+                      });
+                    }}>
+                      <Image src={PunchRange} className='punchRangeIcon'/>
+                    </View>
+                  </View>
+                  <Map
+                    id='map'
+                    {...this.state.newArrder}
+                    circles={[
+                      {
+                        latitude: this.state.addressLatitude,
+                        longitude: this.state.addressLongitude,
+                        color: '#c92ddc82',
+                        fillColor: '#c92ddc82',
+                        radius: 100,
+                        strokeWidth: 1
+                      }
+                    ]}
+                    showLocation
+                  />
+                </View>
+                <View className='tips'>紫色区域为可打卡区域</View>
+              </View>
+              <View className='content' onClick={()=>{
+                this.setState({
+                  historicalIsOpened:true
                 })
-              }} style={{
-                boxShadow:  (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '1px 1px 15px 1px #3f82e8' : '1px 1px 15px 1px #659268') : '1px 1px 15px 1px #acb8ad',
-                background: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '#3f82e8' : '#72cb78') : '#acb8ad'
               }}>
-                <View className='punchClockTitle'>公出打卡</View>
-                <View className='punchClockTime'>{this.state.nowTime}</View>
-                {dtails.clockIn === 1 ? <View className='refreshClock'>刷新打卡</View>:null}
-              </View>
-              <View className='map'>
-                <Map
-                  {...this.state.newArrder}
-                  style={{
-                    height:'300px',
-                    width:'100%'
-                  }}
-                  circles={[
-                    {
-                      latitude: this.state.addressLatitude,
-                      longitude: this.state.addressLongitude,
-                      color: '#c92ddc82',
-                      fillColor: '#c92ddc82',
-                      radius: 100,
-                      strokeWidth: 1
-                    }
-                  ]}
-                  showLocation
-                  showCompass
-                />
+                <View className='history'>
+                  <View>查看公出申请日志</View>
+                  <AtIcon value='chevron-right' size='20' color='#767272'/>
+                </View>
               </View>
-              <View className='tips'>紫色区域为可打卡区域</View>
             </View>
         }
         <AtModal
@@ -556,6 +596,15 @@ class PunchClocks extends Component {
           }}
           content='您拒绝了定位权限,请先前往设置打开定位权限'
         />
+        {this.state.historicalIsOpened ? <HistoricalClock
+          id={dtails.id}
+          isOpened={this.state.historicalIsOpened}
+          onClose={()=>{
+            this.setState({
+              historicalIsOpened:false
+            })
+          }}
+        /> : null}
       </View>
     )
   }

+ 52 - 0
src/utils/tools/config.js

@@ -0,0 +1,52 @@
+//详情申请状态
+export const clockState = [
+  {
+    title:'驳回',
+    id:0,
+    color:'#f31212'
+  },
+  {
+    title:'审核中',
+    id:1,
+    color:'#1d4fea'
+  },
+  {
+    title:'通过',
+    id:2,
+    color:'#34de38'
+  },
+  {
+    title:'已撤销',
+    id:3,
+    color:'#242424'
+  },
+];
+
+//申请日志状态
+export const clockJournalState = [
+  {
+    title:'驳回',
+    id:0,
+    color:'#f31212'
+  },
+  {
+    title:'发起',
+    id:1,
+    color:'#1d4fea'
+  },
+  {
+    title:'通过',
+    id:2,
+    color:'#34de38'
+  },
+  {
+    title:'已打卡',
+    id:3,
+    color:'#b934de'
+  },
+  {
+    title:'已撤销',
+    id:4,
+    color:'#242424'
+  },
+];

+ 10 - 0
src/utils/tools/index.js

@@ -0,0 +1,10 @@
+import {clockState,clockJournalState} from './config';
+
+export const getClockState = (id,journal = false) => {
+  let arr = journal ? clockJournalState.filter(v=>v.id === id) : clockState.filter(v=>v.id === id);
+  if(arr.length > 0){
+    return arr[0];
+  }else{
+    return {};
+  }
+}