HW 3 år sedan
förälder
incheckning
6fe419cff7

+ 1 - 1
src/app.config.js

@@ -2,9 +2,9 @@ export default {
   pages: [
     'pages/punchClock/index',//打卡
     'pages/applyDepart/index',//申请公出
+    'pages/examine/index',//审核
     'pages/egressDetails/index',//公出详情
     'pages/login/index',//登录
-    'pages/examine/index',//审核
     // 'pages/staffDistribution/index',//员工分布
   ],
   tabBar: {

+ 31 - 15
src/components/common/messageNoticebar/index.jsx

@@ -73,7 +73,8 @@ class MessageNoticebar extends Component{
     this.setState({
       animation: this.animation.export(),
       isOpend:false,
-      str:''
+      str:'',
+      list:[],
     })
   }
 
@@ -81,13 +82,25 @@ class MessageNoticebar extends Component{
     getPublicReleaseUnread({}).then(v=>{
       if(v.error.length === 0){
         if(v.data.length === 0){return;}
-        let str = '';
+        // v.data=[
+        //   {
+        //     content:'订单开票完成: 订单编号-456778796184780800操作人:湖南科德-平台事业发展部-财务专员',
+        //     createTimeFormattedDate:'2021-05-06 16:20:20',
+        //     noticeTypeName:'订单开票完成'
+        //   },
+        //   {
+        //     content:'订单开票完成:订单编号-456778796184780800,操作人:湖南科德-平台事业发展部-财务专员',
+        //     createTimeFormattedDate:'2021-05-06 16:20:20',
+        //     noticeTypeName:'订单开票完成'
+        //   }
+        // ];
+        let str = this.state.isOpend ? this.state.str : '';
         for(let i of v.data){
           str+=i.content+'\t\t\t\t\t'
         }
         Taro.eventCenter.trigger('getMessageNoticebar',{
           str,
-          list:v.data
+          list: this.state.isOpend ? this.state.list.concat(v.data) : v.data
         });
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
@@ -135,18 +148,21 @@ class MessageNoticebar extends Component{
             <View className='messageContent'>
               <View className='title'>未读消息</View>
               <View className='list'>
-                <AtList>
-                  {
-                    this.state.list.map((v,k)=>(
-                      <AtListItem
-                        hasBorder
-                        key={k}
-                        note={v.noticeTypeName}
-                        title={v.content}
-                      />
-                    ))
-                  }
-                </AtList>
+                {
+                  this.state.list.map((v,k)=>(
+                    <View key={k} className='item'>
+                      <View className='itemHead'>
+                        <View className='content'>
+                          <Text>{v.content}</Text>
+                        </View>
+                      </View>
+                      <View className='itemBottom'>
+                        <View className='noticeTypeName'>{v.noticeTypeName}</View>
+                        <View className='createTimeFormattedDate'>{v.createTimeFormattedDate}</View>
+                      </View>
+                    </View>
+                  ))
+                }
               </View>
               <View className='operation' onClick={()=>{
                 this.setState({

+ 26 - 1
src/components/common/messageNoticebar/index.less

@@ -42,8 +42,33 @@
         border-bottom: 1px #d4d1d1 solid;
       }
       .list{
-        padding: 25px 0;
+        padding: 25px 20px;
         min-height: 120px;
+        .item{
+          padding-bottom: 20px;
+          border-bottom: 1px #e0dede solid;
+          margin-bottom: 30px;
+          .itemHead{
+            .content{
+              font-size: 25px;
+              font-weight: bolder;
+            }
+          }
+          .itemBottom{
+            display: flex;
+            flex-flow: row nowrap;
+            align-items: center;
+            justify-content: space-between;
+            font-size: 20px;
+            padding-top: 25px;
+            .noticeTypeName{
+
+            }
+            .createTimeFormattedDate{
+
+            }
+          }
+        }
       }
       .operation{
         padding: 25px;

+ 1 - 0
src/components/common/userFloatingLayer/index.jsx

@@ -33,6 +33,7 @@ class UserFloatingLayer extends Component{
           <View className='welcome' onClick={()=>{
             Taro.setStorageSync("token", "");
             Taro.setStorageSync('userInfor', "");
+            Taro.closeSocket();
             Taro.reLaunch({
               url: '/pages/login/index'
             })

+ 1 - 0
src/pages/applyDepart/enterprise.jsx

@@ -89,6 +89,7 @@ class Enterprise extends Component{
           value={this.state.value}
           onChange={this.onChange}
           onActionClick={()=>{this.onChange(this.state.value,false)}}
+          onConfirm={()=>{this.onChange(this.state.value,false)}}
           onClear={()=>{
             this.setState({
               value:'',

+ 32 - 14
src/pages/applyDepart/publicContent.jsx

@@ -65,20 +65,38 @@ class PublicContent extends Component{
     let c1 = b1.diff(a1,'minutes');
     let hourse = parseInt(c1/60);
     let minutes = c1%60
-    let minutes1 = parseInt(minutes / 30)*0.5
-    if(
-      a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 13:30'))
-      &&
-      a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))
-    ){
-      this.getHours(dayjs(a1.format('YYYY-MM-DD')+' 13:30'),endTime);
-    }else if(
-      a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))
-      &&
-      b1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 13:30'))
-    ){
-      return hourse+minutes1-1.5
-    }else{
+    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
     }
   }

+ 1 - 0
src/pages/egressDetails/enterprise.jsx

@@ -88,6 +88,7 @@ class Enterprise extends Component{
           value={this.state.value}
           onChange={this.onChange}
           onActionClick={()=>{this.onChange(this.state.value,false)}}
+          onConfirm={()=>{this.onChange(this.state.value,false)}}
           onClear={()=>{
             this.setState({
               value:'',

+ 1 - 1
src/pages/egressDetails/index.jsx

@@ -154,7 +154,7 @@ class EgressDetails extends Component{
     updatePublicRelease({
       id:this.$instance.router.params.id,
       status:3,
-      remarks:this.state.reasonsInvalidation,
+      reason:this.state.reasonsInvalidation,
     }).then(v=>{
       this.setState({
         loading:false

+ 32 - 14
src/pages/egressDetails/publicContent.jsx

@@ -83,20 +83,38 @@ class PublicContent extends Component{
     let c1 = b1.diff(a1,'minutes');
     let hourse = parseInt(c1/60);
     let minutes = c1%60
-    let minutes1 = parseInt(minutes / 30)*0.5
-    if(
-      a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 13:30'))
-      &&
-      a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))
-    ){
-      this.getHours(dayjs(a1.format('YYYY-MM-DD')+' 13:30'),endTime);
-    }else if(
-      a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))
-      &&
-      b1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 13:30'))
-    ){
-      return hourse+minutes1-1.5
-    }else{
+    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
     }
   }

+ 268 - 31
src/pages/examine/index.jsx

@@ -1,22 +1,39 @@
 import React, { Component } from 'react';
 import Taro from '@tarojs/taro';
-import { View } from '@tarojs/components'
+import { View ,Picker} from '@tarojs/components'
 import { getPublicReleaseList } from '../../utils/servers/servers';
-import { AtTabs, AtTabsPane } from 'taro-ui';
+import {
+  AtSearchBar,
+  AtTabs,
+  AtTabsPane,
+  AtActionSheet,
+  AtActionSheetItem,
+  AtIcon,
+  AtList,
+  AtListItem,
+  AtButton
+} from 'taro-ui';
+import {clockState} from '../../utils/tools/config';
 
 import './index.less';
 
 import 'taro-ui/dist/style/components/tabs.scss';
+import "taro-ui/dist/style/components/flex.scss";
+import "taro-ui/dist/style/components/action-sheet.scss";
+import "taro-ui/dist/style/components/icon.scss";
+import "taro-ui/dist/style/components/list.scss";
 
 import MyList from './myList';
 import MessageNoticebar from "../../components/common/messageNoticebar";
+import dayjs from "dayjs";
+import DateTimePicker from "../../components/common/DateTimePicker";
 
 class Examine extends Component {
 
   constructor(props) {
     super(props);
-    this.state={
-      current:0,
+    this.state= {
+      current: 0,
 
       list: [],
       pageNo: 1,
@@ -25,6 +42,15 @@ class Examine extends Component {
       examinelist: [],
       examinePageNo: 1,
       examineListState: 'LOADING',
+
+      starts: {},
+      clockInStarts: '',
+
+
+      rangeStartVal1:'',
+      rangeEndVal1:'',
+      starts1:{},
+      clockInStarts1:''
     }
     this.getPublicReleaseList= this.getPublicReleaseList.bind(this);
     this.getMyList= this.getMyList.bind(this);
@@ -92,11 +118,23 @@ class Examine extends Component {
     this.setState({
       listState: 'LOADING'
     })
-    let msg = await getPublicReleaseList({
+    let data = {
       pageNo: pageNo,
       pageSize: 10,
-      type:0,
-    });
+      type:'0',
+
+      releaseStarts:this.state.rangeStartVal || undefined,
+      releaseEnds:this.state.rangeEndVal || undefined,
+      status: isNaN(parseInt(this.state.starts.id)) ? undefined : String(this.state.starts.id),
+      clockIn:this.state.clockInStarts || undefined,
+      userName:this.state.searchValue || undefined,
+    }
+    for(let i in data){
+      if(!data[i]){
+        delete data[i]
+      }
+    }
+    let msg = await getPublicReleaseList(data);
     if(msg.error.length === 0){
       if(msg.data.totalCount === 0){
         this.setState({
@@ -108,17 +146,16 @@ class Examine extends Component {
           listState: 'NO_MORE_DATA'
         })
       }else{
-        this.setState({
-          list:pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list),
-          pageNo: msg.data.pageNo
-        },()=>{
-          if(msg.data.totalCount === this.state.list.length){
-            this.setState({
-              listState: 'NO_MORE_DATA'
-            })
-          }
-        })
+        if(msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list)).length){
+          this.setState({
+            listState: 'NO_MORE_DATA'
+          })
+        }
       }
+      this.setState({
+        list:pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list),
+        pageNo: msg.data.pageNo
+      })
     }else{
       Taro.showToast({title:msg.error[0].message,icon:'none'});
       this.setState({
@@ -132,11 +169,23 @@ class Examine extends Component {
     this.setState({
       examineListState: 'LOADING'
     })
-    let msg = await getPublicReleaseList({
+    let data = {
       pageNo: pageNo,
       pageSize: 10,
-      type:1,
-    });
+      type:'1',
+
+      releaseStarts:this.state.rangeStartVal1 || null,
+      releaseEnds:this.state.rangeEndVal1 || null,
+      status:isNaN(parseInt(this.state.starts1.id)) ? undefined : String(this.state.starts1.id),
+      clockIn:this.state.clockInStarts1 || null,
+      userName:this.state.searchValue1 || undefined,
+    }
+    for(let i in data){
+      if(!data[i]){
+        delete data[i]
+      }
+    }
+    let msg = await getPublicReleaseList(data);
     if(msg.error.length === 0){
       if(msg.data.totalCount === 0){
         this.setState({
@@ -148,17 +197,16 @@ class Examine extends Component {
           examineListState: 'NO_MORE_DATA'
         })
       }else{
-        this.setState({
-          examinelist:pageNo === 1 ? msg.data.list : this.state.examinelist.concat(msg.data.list),
-          examinePageNo: msg.data.pageNo
-        },()=>{
-          if(msg.data.totalCount === this.state.examinelist.length){
-            this.setState({
-              examineListState: 'NO_MORE_DATA'
-            })
-          }
-        })
+        if(msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.examinelist.concat(msg.data.list)).length){
+          this.setState({
+            examineListState: 'NO_MORE_DATA'
+          })
+        }
       }
+      this.setState({
+        examinelist:pageNo === 1 ? msg.data.list : this.state.examinelist.concat(msg.data.list),
+        examinePageNo: msg.data.pageNo
+      })
     }else{
       Taro.showToast({title:msg.error[0].message,icon:'none'});
       this.setState({
@@ -172,6 +220,196 @@ class Examine extends Component {
     return (
       <View className='indexPage'>
         <MessageNoticebar/>
+        <View className='searchContent'>
+          <View className='searchTop'>
+            <AtSearchBar
+              showActionButton
+              placeholder='请输入企业名称'
+              value={this.state.current === 0 ? this.state.searchValue : this.state.searchValue1}
+              actionName='更多筛选'
+              onChange={(value)=>{
+                if(this.state.current === 0){
+                  this.setState({
+                    searchValue:value
+                  })
+                }else{
+                  this.setState({
+                    searchValue1:value
+                  })
+                }
+              }}
+              onActionClick={()=>{
+                this.setState({
+                  openSearch:!this.state.openSearch
+                })
+              }}
+              onConfirm={()=>{
+                this.setState({
+                  openSearch:false
+                })
+                this.getPublicReleaseList();
+              }}
+              onClear={()=>{
+                if(this.state.current === 0){
+                  this.setState({
+                    searchValue:''
+                  })
+                }else{
+                  this.setState({
+                    searchValue1:''
+                  })
+                }
+              }}
+            />
+          </View>
+          <View className='searchBottom' style={{display:this.state.openSearch ? 'block' : 'none'}}>
+            <View className='searchBottomBack' onClick={()=>{
+              this.setState({
+                openSearch:false
+              })
+            }}/>
+            <View className='searchItem'>
+              <Picker mode='date' onChange={(e)=>{
+                if(this.state.current === 0){
+                  this.setState({
+                    rangeStartVal:e.detail.value,
+                  })
+                }else{
+                  this.setState({
+                    rangeStartVal1:e.detail.value,
+                  })
+                }
+              }}>
+                <AtList>
+                  {
+                    this.state.current === 0 ?
+                      <AtListItem
+                        title='开始时间'
+                        hasBorder={false}
+                        extraText={this.state.rangeStartVal ? this.state.rangeStartVal : '请选择开始时间'}/> :
+                      <AtListItem
+                        title='开始时间'
+                        hasBorder={false}
+                        extraText={this.state.rangeStartVal1 ? this.state.rangeStartVal1 : '请选择开始时间'}/>
+                  }
+                </AtList>
+              </Picker>
+            </View>
+            <View className='searchItem'>
+              <Picker mode='date' onChange={(e)=>{
+                if(this.state.current === 0){
+                  this.setState({
+                    rangeEndVal:e.detail.value,
+                  })
+                }else{
+                  this.setState({
+                    rangeEndVal:e.detail.value,
+                  })
+                }
+              }}>
+                <AtList>
+                  {
+                    this.state.current === 0 ?
+                    <AtListItem
+                      title='结束时间'
+                      hasBorder={false}
+                      extraText={this.state.rangeEndVal ? this.state.rangeEndVal : '请选择结束时间' }
+                    /> :
+                    <AtListItem
+                      title='结束时间'
+                      hasBorder={false}
+                      extraText={this.state.rangeEndVal1 ? this.state.rangeEndVal1 : '请选择结束时间' }
+                    />
+                  }
+                </AtList>
+              </Picker>
+            </View>
+            <View className='searchItem'>
+              <Picker range={clockState} rangeKey='title' mode='selector' onChange={(e)=>{
+                this.setState({
+                  starts:clockState[e.detail.value],
+                })
+              }}>
+                <AtList>
+                  {
+                    this.state.current === 0 ?
+                      <AtListItem
+                        title='审核状态'
+                        hasBorder={false}
+                        extraText={this.state.starts.title ? this.state.starts.title : '请选择审核状态'}/> :
+                      <AtListItem
+                        title='审核状态'
+                        hasBorder={false}
+                        extraText={this.state.starts1.title ? this.state.starts1.title : '请选择审核状态'}/>
+                  }
+                </AtList>
+              </Picker>
+            </View>
+            <View className='searchItem'>
+              <Picker range={[
+                '未打卡',
+                '已打卡'
+              ]} mode='selector' onChange={(e)=>{
+                this.setState({
+                  clockInStarts:String(e.detail.value)
+                })
+              }}>
+                <AtList>
+                  {
+                    this.state.current === 0 ?
+                      <AtListItem
+                        title='打卡状态'
+                        hasBorder={false}
+                        extraText={
+                          this.state.clockInStarts === '1' ? '已打卡' :
+                            this.state.clockInStarts === '0' ? '未打卡' :'请选择打卡状态'
+                        }/>:
+                      <AtListItem
+                        title='打卡状态'
+                        hasBorder={false}
+                        extraText={
+                          this.state.clockInStarts1 === '1' ? '已打卡' :
+                            this.state.clockInStarts1 === '0' ? '未打卡' :'请选择打卡状态'
+                        }/>
+                  }
+                </AtList>
+              </Picker>
+            </View>
+            <View className='searchOperation'>
+              <View className='reset' onClick={()=>{
+                if(this.state.current === 0){
+                  this.setState({
+                    rangeStartVal:'',
+                    rangeEndVal:'',
+                    starts:{},
+                    clockInStarts:'',
+                    openSearch:false,
+                    searchValue:''
+                  },()=>{
+                    this.getPublicReleaseList();
+                  })
+                }else{
+                  this.setState({
+                    rangeStartVal1:'',
+                    rangeEndVal1:'',
+                    starts1:{},
+                    clockInStarts1:'',
+                    openSearch:false,
+                    searchValue1:''
+                  },()=>{
+                    this.getPublicReleaseList();
+                  })
+                }
+              }}>重置</View>
+              <View className='search' onClick={()=>{
+                this.setState({
+                  openSearch:false
+                })
+                this.getPublicReleaseList();
+              }}>搜索</View>
+            </View>
+          </View>
+        </View>
         <AtTabs current={this.state.current || 0} tabList={[{ title: '我的' }, { title: '审核' }]} onClick={(current)=>{
           this.setState({
             current
@@ -179,7 +417,6 @@ class Examine extends Component {
             if((current === 0 && this.state.pageNo === 1) || (current === 1 && this.state.examinePageNo === 1)){
               this.getPublicReleaseList();
             }
-
           })
         }}>
           <AtTabsPane current={this.state.current} index={0} >

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

@@ -3,6 +3,74 @@
   z-index: 1;
   background: #F5F5F5;
   min-height: calc(100vh - 52px);
+  .item-content__info-title{
+    font-size: 28px;
+    color: #9BA0AA;
+  }
+  .item-extra__info{
+    font-size: 28px;
+    color: #9BA0AA;
+  }
+  .at-list__item::after{
+    border-bottom: 0;
+  }
+  .at-list::after{
+    border-top: 0;
+  }
+  .indexPage .at-list::after{
+    border: 0;
+  }
+  .searchContent{
+    position: relative;
+    background: white;
+    .searchTop{
+      z-index: 1000;
+    }
+    .searchBottom{
+      position: absolute;
+      z-index: 1000;
+      left: 0;
+      right: 0;
+      background: #FFFFFF;
+      //box-shadow: 1px 11px 14px 1px #999999;
+      border-bottom-left-radius: 10px;
+      border-bottom-right-radius: 10px;
+      .searchBottomBack{
+        position: fixed;
+        z-index: -1;
+        left: 0;
+        right: 0;
+        bottom: 0;
+        top: 100px;
+        background: rgba(0,0,0,.7);
+      }
+      .searchItem{
+          font-size: 20px;
+          color: #9BA0AA;
+      }
+      .searchOperation{
+        display: flex;
+        flex-flow: row;
+        align-items: center;
+        font-size: 22px;
+        .reset{
+          flex: 1;
+          text-align: center;
+          padding: 25px 0;
+          border-bottom-left-radius: 10px;
+          background: white;
+        }
+        .search{
+          flex:1;
+          background: #f8673c;
+          text-align: center;
+          color: white;
+          padding: 25px 0;
+          border-bottom-right-radius: 10px;
+        }
+      }
+    }
+  }
   .list{
     padding: 20px 23px 52px 23px;
     .item{

+ 19 - 4
src/pages/punchClock/punchClocks.jsx

@@ -166,6 +166,11 @@ class PunchClocks extends Component {
   }
 
   publicReleaseClockIn(){
+    if(this.state.dtails.status === 3){
+      Taro.hideLoading()
+      Taro.showToast({title:'申请已撤销,无法打卡',icon:'none'});
+      return ;
+    }
     if(Object.keys(this.state.dtails).length === 0){
       Taro.hideLoading()
       Taro.showToast({title:'暂无公出申请,无法打卡',icon:'none'});
@@ -178,7 +183,7 @@ class PunchClocks extends Component {
     }
     if(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)){
       Taro.hideLoading()
-      Taro.showToast({title:'还没到打卡时间,无法打卡',icon:'none'})
+      Taro.showToast({title:'当前时间不在打卡时间范围内,无法打卡',icon:'none'})
       return ;
     }
     if(!(this.state.distance <=100 && this.state.distance >= 0)){
@@ -494,8 +499,19 @@ class PunchClocks extends Component {
                     }
                   })
                 }} 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'
+                  boxShadow:
+                    (!isNaN(parseInt(this.state.distance)))
+                    && this.state.distance <=100 && this.state.distance >= 0 &&
+                    !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)) &&
+                    dtails.status !== 3
+                      ? (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 &&
+                  !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds))&&
+                  dtails.status !== 3
+                    ? (dtails.clockIn === 1 ? '#3f82e8' : '#72cb78') : '#acb8ad'
                 }}>
                   <View className='punchClockTitle'>
                     {
@@ -504,7 +520,6 @@ class PunchClocks extends Component {
                     }
                   </View>
                   <View className='punchClockTime'>{this.state.nowTime}</View>
-                  {/*{dtails.clockIn === 1 ? <View className='refreshClock'>刷新打卡</View>:null}*/}
                 </View>
                 <View className='map'>
                   <View className='locationContent'>

+ 1 - 0
src/utils/servers/utils.js

@@ -11,6 +11,7 @@ export const getCurrentPageUrl = () => {
 };
 
 export const pageToLogin = async () => {
+  Taro.closeSocket();
   Taro.reLaunch({
     url: '/pages/login/index'
   })