Преглед изворни кода

增加不同区域打卡类型选择
增大打卡范围

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

+ 9 - 7
src/components/common/DateTimePicker/index.jsx

@@ -5,6 +5,7 @@ import { AtIcon } from 'taro-ui';
 import { View, Text, PickerView, PickerViewColumn, } from '@tarojs/components';
 import { getPickerViewList, getDate, getArrWithTime, formatDate, getDayList } from './utils';
 import './index.scss';
+import {getUserWordTimes} from "../../../utils/tools";
 
 
 export default class DateTimePicker extends Component {
@@ -74,21 +75,22 @@ export default class DateTimePicker extends Component {
     okHandel = () => {
         const { year, month, day, hour, minute } = this.state;
         const current = formatDate(year, month, day, hour, minute);
+        const {start,restStart,restEnd,end} = getUserWordTimes();
 
-        if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+' 8:30'))){
-          Taro.showToast({title:'不能选择8:30之前的时间',icon:'none'})
+        if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+start))){
+          Taro.showToast({title:'不能选择'+start+'之前的时间',icon:'none'})
           return ;
         }
-        if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+' 17:30'))){
-          Taro.showToast({title:'不能选择17:30之后的时间',icon:'none'})
+        if(dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+end))){
+          Taro.showToast({title:'不能选择'+end+'之后的时间',icon:'none'})
           return ;
         }
       if(
-        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+' 12:00'))
+        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isAfter(dayjs(dayjs(current).format('YYYY-MM-DD')+restStart))
         &&
-        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+' 13:30'))
+        dayjs(dayjs(current).format('YYYY-MM-DD HH:mm')).isBefore(dayjs(dayjs(current).format('YYYY-MM-DD')+restEnd))
       ){
-        Taro.showToast({title:'不能选择12:00到13:30之间的时间',icon:'none'})
+        Taro.showToast({title:'不能选择'+restStart+'到'+restEnd+'之间的时间',icon:'none'})
         return ;
       }
 

+ 66 - 60
src/pages/applyDepart/publicContent.jsx

@@ -1,5 +1,5 @@
 import React,{Component} from 'react';
-import Taro,{getCurrentInstance } from '@tarojs/taro';
+import Taro from '@tarojs/taro';
 import {Text, View} from '@tarojs/components'
 import dayjs from 'dayjs';
 import './index.less';
@@ -7,8 +7,12 @@ import DateTimePicker from '../../components/common/DateTimePicker';
 
 import ImagePicker from '../../components/common/imagePicker'
 
+import {radiusRange} from '../../utils/config';
+
 import {AtButton, AtTextarea, AtIcon, AtCalendar} from 'taro-ui'
-import {addPublicRelease} from '../../utils/servers/servers';
+import {addPublicRelease,getWorkingHoursList} from '../../utils/servers/servers';
+
+import {getNumHourse} from '../../utils/tools';
 
 import 'taro-ui/dist/style/components/form.scss';
 import 'taro-ui/dist/style/components/button.scss';
@@ -34,10 +38,13 @@ class PublicContent extends Component{
       validDates:[],
       totalDuration:0,
       loading:false,
+      workTypeList:[],
+      workType:0,
     }
     this.onSubmit = this.onSubmit.bind(this);
     this.selectArrder = this.selectArrder.bind(this);
     this.onChange = this.onChange.bind(this);
+    this.getWorkingHoursList = this.getWorkingHoursList.bind(this);
   }
 
   componentDidMount() {
@@ -57,63 +64,13 @@ class PublicContent extends Component{
         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
-    }
+    this.getWorkingHoursList();
   }
 
   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
-      })
-    }
+    this.setState({
+      totalDuration:getNumHourse(startTime,endTime,this.state.validDates.length)
+    })
   }
 
 
@@ -192,13 +149,62 @@ class PublicContent extends Component{
     })
   }
 
+  getWorkingHoursList(){
+    getWorkingHoursList({}).then((v)=>{
+      if(v.error.length === 0){
+        let obj = Taro.getStorageSync('userInfor');
+        let index = v.data.findIndex(value=>value.type === obj.workTimeInfor.type);
+        this.setState({
+          workType:index !== -1 ? index : 0
+        })
+        this.setState({
+          workTypeList:v.data
+        })
+      }else{
+        Taro.showToast({
+          title:v.error[0].message,
+          icon:'none'
+        })
+      }
+    }).catch(err=>{
+      console.log(err)
+    })
+  }
+
   render() {
     return (
       <View className='publicContent'>
-          <View className='formItem'>
-            <View className='formName'>公出企业:</View>
-            <View className='formValue'>{this.props.enterpriseInfor.name}</View>
+        <View className='formItem'>
+          <View className='formName'>公出企业:</View>
+          <View className='formValue'>{this.props.enterpriseInfor.name}</View>
+        </View>
+        <View className='formItem'>
+          <View className='formName'>作息时间类型:</View>
+          <View className='formValue'>
+            <picker onChange={(e)=>{
+              this.setState({
+                workType: e.detail.value
+              })
+              if(this.state.workTypeList[e.detail.value]){
+                let obj = Taro.getStorageSync('userInfor');
+                obj.workTimeInfor = this.state.workTypeList[e.detail.value];
+                Taro.setStorageSync('userInfor', obj);
+                this.rangeEndRef.clear();
+                this.rangeStartRef.clear();
+                this.setState({
+                  rangeStartVal:'',
+                  rangeStartMinuteVal: '',
+                  validDates:[],
+                  totalDuration:0
+                })
+              }
+            }} value={this.state.workType} rangeKey='name' range={this.state.workTypeList}>
+              <view >
+                {this.state.workTypeList[this.state.workType] ? this.state.workTypeList[this.state.workType].name : ''}
+              </view>
+            </picker>
           </View>
+        </View>
         <View className='formItem'>
           <View className='formName'>公出开始时间:</View>
           <View className='formValue'>
@@ -357,7 +363,7 @@ class PublicContent extends Component{
               <AtIcon value='chevron-right' size='30' color='#bbbbbb'/>
           </View>
         </View>
-        <View className='tips'>以地图中红标为中心100米范围为可打卡区域,移动红标只需要拖动地图即可</View>
+        <View className='tips'>以地图中红标为中心{radiusRange}米范围为可打卡区域,移动红标只需要拖动地图即可</View>
         <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
           <View className='formName'>公出事由:</View>
           <View className='formValue' style={{paddingTop:'10px',textAlign:'left'}}>

+ 61 - 56
src/pages/egressDetails/publicContent.jsx

@@ -6,10 +6,12 @@ import './index.less';
 import DateTimePicker from '../../components/common/DateTimePicker';
 
 import ImagePicker from '../../components/common/imagePicker'
-import {resourceAddress} from '../../utils/config';
+import {resourceAddress,radiusRange} from '../../utils/config';
 
 import { AtButton,AtTextarea ,AtIcon,AtCalendar   } from 'taro-ui'
-import {updatePublicRelease} from '../../utils/servers/servers';
+import {updatePublicRelease,getWorkingHoursList} from '../../utils/servers/servers';
+
+import {getNumHourse} from '../../utils/tools';
 
 import 'taro-ui/dist/style/components/form.scss';
 import 'taro-ui/dist/style/components/button.scss';
@@ -35,10 +37,14 @@ class PublicContent extends Component{
       validDates:[],
       totalDuration:0,
       loading:false,
+
+      workTypeList:[],
+      workType:0,
     }
     this.onSubmit = this.onSubmit.bind(this);
     this.selectArrder = this.selectArrder.bind(this);
     this.onChange = this.onChange.bind(this);
+    this.getWorkingHoursList = this.getWorkingHoursList.bind(this);
   }
 
   componentDidMount() {
@@ -58,6 +64,7 @@ class PublicContent extends Component{
       rangeStartVal:dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD'),
       rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format('YYYY-MM-DD HH:mm:ss'),
     })
+    this.getWorkingHoursList();
   }
 
   componentWillUnmount() {
@@ -77,61 +84,32 @@ class PublicContent extends Component{
     })
   }
 
-  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
+  getWorkingHoursList(){
+    getWorkingHoursList({}).then((v)=>{
+      if(v.error.length === 0){
+        let obj = Taro.getStorageSync('userInfor');
+        let index = v.data.findIndex(value=>value.type === obj.workTimeInfor.type);
+        this.setState({
+          workType:index !== -1 ? index : 0
+        })
+        this.setState({
+          workTypeList:v.data
+        })
       }else{
-        return 0;
+        Taro.showToast({
+          title:v.error[0].message,
+          icon:'none'
+        })
       }
-      //开始时间在13:30之后 包括13:30
-    }else if(!a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 13:30'))){
-      return hourse+minutes1
-    }
+    }).catch(err=>{
+      console.log(err)
+    })
   }
 
   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
-      })
-    }
+    this.setState({
+      totalDuration:getNumHourse(startTime,endTime,this.state.validDates.length)
+    })
   }
 
 
@@ -226,10 +204,37 @@ class PublicContent extends Component{
     const {dtails} = this.props;
     return (
       <View className='publicContent'>
-          <View className='formItem'>
-            <View className='formName'>公出企业:</View>
-            <View className='formValue'>{dtails.nickname}</View>
+        <View className='formItem'>
+          <View className='formName'>公出企业:</View>
+          <View className='formValue'>{dtails.nickname}</View>
+        </View>
+        <View className='formItem'>
+          <View className='formName'>作息时间类型:</View>
+          <View className='formValue'>
+            <picker onChange={(e)=>{
+              this.setState({
+                workType: e.detail.value
+              })
+              if(this.state.workTypeList[e.detail.value]){
+                let obj = Taro.getStorageSync('userInfor');
+                obj.workTimeInfor = this.state.workTypeList[e.detail.value];
+                Taro.setStorageSync('userInfor', obj);
+                this.rangeEndRef.clear();
+                this.rangeStartRef.clear();
+                this.setState({
+                  rangeStartVal:'',
+                  rangeStartMinuteVal: '',
+                  validDates:[],
+                  totalDuration:0
+                })
+              }
+            }} value={this.state.workType} rangeKey='name' range={this.state.workTypeList}>
+              <view >
+                {this.state.workTypeList[this.state.workType] ? this.state.workTypeList[this.state.workType].name : ''}
+              </view>
+            </picker>
           </View>
+        </View>
         <View className='formItem'>
           <View className='formName'>公出开始时间:</View>
           <View className='formValue'>
@@ -390,7 +395,7 @@ class PublicContent extends Component{
               <AtIcon value='chevron-right' size='30' color='#bbbbbb'/>
           </View>
         </View>
-        <View className='tips'>以地图中红标为中心100米范围为可打卡区域,移动红标只需要拖动地图即可</View>
+        <View className='tips'>以地图中红标为中心{radiusRange}米范围为可打卡区域,移动红标只需要拖动地图即可</View>
         <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
           <View className='formName'>公出事由:</View>
           <View className='formValue' style={{paddingTop:'10px',textAlign:'left'}}>

+ 23 - 5
src/pages/login/index.jsx

@@ -2,8 +2,7 @@ import { Component } from 'react'
 import Taro from '@tarojs/taro'
 import { connect } from 'react-redux'
 import {View, Input, Checkbox} from '@tarojs/components'
-import {login} from '../../utils/servers/servers';
-import {setOpenId} from '../../utils/servers/servers';
+import {login,getWorkingHours,setOpenId} from '../../utils/servers/servers';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
 
@@ -46,6 +45,7 @@ class Login extends Component {
     this.authorization = this.authorization.bind(this);
     this.setUsernameList = this.setUsernameList.bind(this);
     this.getUsernameList = this.getUsernameList.bind(this);
+    this.getWorkingHours = this.getWorkingHours.bind(this);
   }
 
   componentDidShow () {
@@ -143,7 +143,8 @@ class Login extends Component {
             }).then(v=>{
               if(v.error.length === 0){
                 this.setUsernameList(this.state.username,this.state.password);
-                Taro.eventCenter.trigger('getStorageSync')
+                Taro.eventCenter.trigger('getStorageSync');
+                this.getWorkingHours(msg.data.departmentId);
                 Taro.switchTab({
                   url: '/pages/punchClock/index',
                 })
@@ -161,7 +162,8 @@ class Login extends Component {
         });
       }else{
         this.setUsernameList(this.state.username,this.state.password);
-        Taro.eventCenter.trigger('getStorageSync')
+        Taro.eventCenter.trigger('getStorageSync');
+        this.getWorkingHours(msg.data.departmentId);
         Taro.switchTab({
           url: '/pages/punchClock/index',
         })
@@ -174,6 +176,22 @@ class Login extends Component {
     })
   }
 
+  getWorkingHours(depId){
+    getWorkingHours({
+      depId
+    }).then((msg)=>{
+      if(msg.error.length === 0){
+        let obj = Taro.getStorageSync('userInfor');
+        obj.workTimeInfor = msg.data;
+        Taro.setStorageSync('userInfor', obj);
+      }else{
+        Taro.showToast({title:msg.error[0].message,icon:'none'})
+      }
+    }).catch((err)=>{
+      console.log(err)
+    })
+  }
+
   setUsernameList(username,password){
     if(!this.state.rememberPassword){
       let usernameList = Taro.getStorageSync('usernameList') || [];
@@ -229,7 +247,7 @@ class Login extends Component {
           onHome={()=>{}}
         />
         <View className='welcome'>
-          <View className='welcomeTitle'>科德信息管理</View>
+          <View className='welcomeTitle'>科德科技服务系统</View>
           <View className='welcomeTitle'>欢迎您!</View>
         </View>
         <View className='loginContent'>

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

@@ -5,6 +5,7 @@ import Taro from '@tarojs/taro';
 import {AtIcon, AtModal} from "taro-ui";
 import dayjs from 'dayjs';
 import Skeleton from 'taro-skeleton'
+import {radiusRange} from '../../utils/config';
 
 import HistoricalClock from '../../components/historicalClock';
 
@@ -186,7 +187,7 @@ class PunchClocks extends Component {
       Taro.showToast({title:'当前时间不在打卡时间范围内,无法打卡',icon:'none'})
       return ;
     }
-    if(!(this.state.distance <=100 && this.state.distance >= 0)){
+    if(!(this.state.distance <=radiusRange && this.state.distance >= 0)){
       Taro.hideLoading()
       Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
       return ;
@@ -501,13 +502,13 @@ class PunchClocks extends Component {
                 }} style={{
                   boxShadow:
                     (!isNaN(parseInt(this.state.distance)))
-                    && this.state.distance <=100 && this.state.distance >= 0 &&
+                    && this.state.distance <=radiusRange && 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 <=radiusRange &&
                   this.state.distance >= 0 &&
                   !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds))&&
                   dtails.status !== 3
@@ -546,7 +547,7 @@ class PunchClocks extends Component {
                         longitude: this.state.addressLongitude,
                         color: '#c92ddc82',
                         fillColor: '#c92ddc82',
-                        radius: 100,
+                        radius: radiusRange,
                         strokeWidth: 1
                       }
                     ]}

+ 2 - 2
src/utils/config.js

@@ -1,4 +1,4 @@
 // export const resourceAddress = 'http://172.16.0.188:3000/upload'
-export const resourceAddress = 'https://s.jishutao.com/upload'
-export const radiusRange = 100                        //打卡半径
+export const resourceAddress = 'https://static.jishutao.com/upload'
+export const radiusRange = 1000                        //打卡半径 单位米
 

+ 2 - 2
src/utils/servers/baseUrl.js

@@ -2,10 +2,10 @@ const getBaseUrl = (url) => {
   let BASE_URL = '';
   if (process.env.NODE_ENV === 'development') {
     //开发环境 - 根据请求不同返回不同的BASE_URL
-    BASE_URL = 'https://bm.jishutao.com'
+    BASE_URL = 'https://uat.jishutao.com'
   } else {
     // 生产环境
-    BASE_URL = 'https://bm.jishutao.com'
+    BASE_URL = 'https://uat.jishutao.com'
   }
   return BASE_URL
 }

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

@@ -78,6 +78,16 @@ export const getPublicReleaseUnread = (postData = {}) => {
   return HTTPREQUEST.get('/api/admin/notice/publicReleaseUnread', postData)
 }
 
+//获取知道部门作息时间
+export const getWorkingHours = (postData = {}) => {
+  return HTTPREQUEST.get('/api/admin/department/workingHours/get', postData)
+}
+
+//获取部门作息列表
+export const getWorkingHoursList = (postData = {}) => {
+  return HTTPREQUEST.get('/api/admin/department/workingHours/list', postData)
+}
+
 //测试
 export const test = (postData = {}) => {
   return HTTPREQUEST.get('/open/getVCode', postData)

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

@@ -1,4 +1,6 @@
 import {clockState,clockJournalState} from './config';
+import dayjs from "dayjs";
+import Taro from "@tarojs/taro";
 
 export const getClockState = (id,journal = false) => {
   let arr = journal ? clockJournalState.filter(v=>v.id === id) : clockState.filter(v=>v.id === id);
@@ -8,3 +10,66 @@ export const getClockState = (id,journal = false) => {
     return {};
   }
 }
+
+//获取用户工作时间区间
+export const getUserWordTimes = () => {
+  let userInfor = Taro.getStorageSync('userInfor');
+  return userInfor.workTimeInfor;
+}
+
+//获取当天公出小时数
+export const getHours = (startTime,endTime) => {
+  const {restStart,restEnd} = getUserWordTimes();
+  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')+restStart))){
+    if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+restEnd))){
+      return hourse+minutes1-1.5
+    }else if(!b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+restStart))){
+      return hourse+minutes1
+    }else{
+      let a2 = dayjs(startTime);
+      let b2 = dayjs(b1.format('YYYY-MM-DD')+restStart);
+      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')+restEnd)) && a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+restStart))){
+    if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+restEnd))){
+      let a2 = dayjs(a1.format('YYYY-MM-DD')+restEnd);
+      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')+restEnd))){
+    return hourse+minutes1
+  }
+}
+
+//获取总时长
+export const getNumHourse = (startTime,endTime,days) =>{
+  const {start,end} = getUserWordTimes();
+  if(dayjs(dayjs(startTime).format('YYYY-MM-DD')).isSame(dayjs(dayjs(endTime).format('YYYY-MM-DD')))){
+    return getHours(startTime,endTime)
+  }else{
+    let a = getHours(startTime,dayjs(startTime.format('YYYY-MM-DD')+end));
+    let b = getHours(dayjs(endTime.format('YYYY-MM-DD')+start),endTime);
+    let c = (days-2)*7.5;
+    return a+b+c;
+  }
+}