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

+ 1 - 1
src/app.config.js

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

BIN
src/image/punchClock.png


BIN
src/image/switch.png


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

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

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

@@ -96,7 +96,7 @@ class EgressDetails extends Component{
           arr.push({
             title:
               i.status === 0 ? '驳回' :
-                i.status === 1 ? '发起' :
+                i.status === 1 ? '审核中' :
                   i.status === 2 ? '通过' : '',
             content: ['审核员:'+i.aname,i.remarks ? '审核意见:'+i.remarks : null],
             color: i.status === 0 ? '#f31212' :
@@ -134,7 +134,7 @@ class EgressDetails extends Component{
           }}>
             {
               dtails.status === 0 ? '驳回' :
-                dtails.status === 1 ? '发起' :
+                dtails.status === 1 ? '审核中' :
                   dtails.status === 2 ? '通过' : ''
             }
           </View>

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

@@ -14,6 +14,7 @@
       margin-bottom: 17px;
       .infor{
         width: 100%;
+        position: relative;
         .title{
           display: flex;
           flex-flow: row nowrap;
@@ -40,6 +41,24 @@
           font-size: 25px;
           color: #999999;
           padding-bottom: 15px;
+          display: flex;
+          flex-flow: row nowrap;
+          align-items: center;
+          justify-content: space-between;
+          position: relative;
+          .punchClock{
+            position: absolute;
+            border-bottom-left-radius: 100px;
+            border-top-left-radius: 100px;
+            padding: 20px 30px;
+            background: #f1662f;
+            color: white;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            right: -31px;
+            top: -10px;
+          }
         }
         .releaseEnds{
           font-size: 25px;
@@ -48,9 +67,21 @@
           flex-flow: row nowrap;
           align-items: center;
           justify-content: space-between;
+          padding-bottom: 25px;
+        }
+        .bottomContent{
+          display: flex;
+          flex-flow: row nowrap;
+          justify-content: space-between;
+          align-items: center;
           .status{
             font-size: 28px;
           }
+          .clockIn{
+            padding: 3px 8px;
+            font-size: 28px;
+            border-radius: 6px;
+          }
         }
       }
     }

+ 23 - 2
src/pages/examine/myList.jsx

@@ -1,10 +1,12 @@
 import React, { Component } from 'react';
 import Taro from '@tarojs/taro';
-import { View } from '@tarojs/components'
+import { View,Image } from '@tarojs/components'
 import Skeleton from 'taro-skeleton'
 
 import ListBottomStart  from '../../components/common/listBottomStart';
 
+import PunchClock from '../../image/punchClock.png';
+
 import './index.less';
 
 class MyList extends Component {
@@ -49,9 +51,28 @@ class MyList extends Component {
                   </View>
                   <View className='releaseStarts'>
                     开始时间:{v.releaseStarts}
+                    <View className='punchClock' onClick={(e)=>{
+                      e.stopPropagation();
+                      Taro.eventCenter.trigger('GoPunchIn',v)
+                      Taro.switchTab({
+                        url: '/pages/punchClock/index',
+                      })
+                    }}>
+                      去打卡
+                    </View>
                   </View>
                   <View className='releaseEnds'>
                     结束时间:{v.releaseEnds}
+                  </View>
+                  <View className='bottomContent'>
+                    {
+                      v.clockIn === 1 ?
+                        <View className='clockIn' style={{color:'#6eb173'}}>
+                          已打卡
+                        </View> : <View className='clockIn' style={{color:'#dbc037'}}>
+                          未打卡
+                        </View>
+                    }
                     <View className='status' style={{
                       color:v.status === 0 ? '#f31212' :
                         v.status === 1 ? '#1d4fea' :
@@ -59,7 +80,7 @@ class MyList extends Component {
                     }}>
                       {
                         v.status === 0 ? '驳回' :
-                          v.status === 1 ? '发起' :
+                          v.status === 1 ? '审核中' :
                             v.status === 2 ? '通过' : ''
                       }
                     </View>

+ 85 - 52
src/pages/punchClock/index.jsx

@@ -54,14 +54,38 @@ class PunchClock extends Component {
     this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
     this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
     this.refresh = this.refresh.bind(this);
-    this.nowTime = null;
   }
 
+  nowTime = null;
+
   qqmapsdk = new QQMapWX({
     key: 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'
   });
 
-  componentDidShow () {
+  componentWillUnmount() {
+    Taro.offLocationChange();
+    this.nowTime && this.nowTime.clearTimeout();
+  }
+
+  componentDidMount(){
+    this.getPublicReleaseList(()=>{
+      Taro.startLocationUpdate({
+        success:()=>{
+          Taro.onLocationChange((v)=>{
+            this.getSpacing(v.latitude,v.longitude)
+          })
+        },
+        fail:()=>{
+          this.setState({
+            loading:false
+          })
+        }
+      })
+    });
+  }
+
+  componentDidShow() {
+
     //获得当前位置
     Taro.getLocation({
       type: 'gcj02',
@@ -78,49 +102,61 @@ class PunchClock extends Component {
       }
     })
 
-    this.getPublicReleaseList(()=>{
-      Taro.startLocationUpdate({
-        success:()=>{
-          Taro.onLocationChange((v)=>{
-            this.getSpacing(v.latitude,v.longitude)
-          })
-        }
-      })
-    });
-
     this.nowTime = setInterval(()=>{
       this.setState({
         nowTime:dayjs().format('HH:mm:ss')
       })
     },1000)
 
-    let token = Taro.getStorageSync('token');
-      //建立连接
-      Taro.connectSocket({
-        header:{
-          'token': token,
-        },
-        url: "wss://uat.jishutao.com/websocket",
-      //  172.16.0.188:8080
-      //  uat.jishutao.com
-      })
-
-      //连接成功
-      Taro.onSocketOpen(function() {
-        Taro.sendSocketMessage({
-          data: 'stock',
+    Taro.eventCenter.on('GoPunchIn', (arg) => {
+      console.log(arg,'222')
+      this.setState({
+        dtails:arg,
+        addressLatitude:parseFloat(arg.latitude),
+        addressLongitude:parseFloat(arg.longitude),
+      },()=>{
+        Taro.startLocationUpdate({
+          success:()=>{
+            Taro.onLocationChange((v)=>{
+              this.getSpacing(v.latitude,v.longitude)
+            })
+          },
+          fail:()=>{
+            this.setState({
+              loading:false
+            })
+          }
         })
       })
+    })
 
-      //接收数据
-      Taro.onSocketMessage(function(data) {
-        console.log(data,'接收数据')
-      })
-
-      //连接失败
-      Taro.onSocketError(function() {
-        console.log('websocket连接失败!');
-      })
+    // let token = Taro.getStorageSync('token');
+    //   //建立连接
+    //   Taro.connectSocket({
+    //     header:{
+    //       'token': token,
+    //     },
+    //     url: "wss://uat.jishutao.com/websocket",
+    //   //  172.16.0.188:8080
+    //   //  uat.jishutao.com
+    //   })
+    //
+    //   //连接成功
+    //   Taro.onSocketOpen(function() {
+    //     Taro.sendSocketMessage({
+    //       data: 'stock',
+    //     })
+    //   })
+    //
+    //   //接收数据
+    //   Taro.onSocketMessage(function(data) {
+    //     console.log(data,'接收数据')
+    //   })
+    //
+    //   //连接失败
+    //   Taro.onSocketError(function() {
+    //     console.log('websocket连接失败!');
+    //   })
   }
 
   publicReleaseClockIn(){
@@ -254,10 +290,10 @@ class PunchClock extends Component {
         })
       },
       fail: function(error) {
-        console.error(error);
         _this.setState({
           loading:false
         })
+        console.error(error);
       },
       complete: function(res) {
         console.log(res);
@@ -265,15 +301,6 @@ class PunchClock extends Component {
     });
   }
 
-  componentWillUnmount() {
-    this.nowTime && this.nowTime.clearTimeout();
-
-  }
-
-  componentDidMount() {
-
-  }
-
   onChange(value,type){
     let arr = this.state.imgs.concat([]);
     if(type === 'add'){
@@ -348,12 +375,18 @@ class PunchClock extends Component {
                         dtails.status === 1 ? '#1d4fea' :
                           dtails.status === 2 ? '#767272' : ''
                     }}>
-                      {
-                        dtails.status === 0 ? '驳回' :
-                          dtails.status === 1 ? '发起' :
-                            dtails.status === 2 ? '通过' : ''
-                      }
-                      <Image src={switchIocn} className='switchItem'/>
+                      <View>
+                        {
+                          dtails.status === 0 ? '驳回' :
+                            dtails.status === 1 ? '审核中' :
+                              dtails.status === 2 ? '通过' : ''
+                        }
+                      </View>
+                      <Image src={switchIocn} className='switchItem' onClick={()=>{
+                        Taro.switchTab({
+                          url: '/pages/examine/index',
+                        })
+                      }}/>
                     </View>
                 }
               </View>

+ 3 - 3
src/pages/punchClock/index.less

@@ -39,9 +39,9 @@
       align-self: flex-start;
     }
     .switchItem{
-      width: 30px;
-      height: 30px;
-      margin-top: 20px;
+      width: 38px;
+      height: 38px;
+      margin-top: 28px;
     }
   }
   .content{