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

修复地图只有一个小点

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

+ 5 - 5
src/pages/applyDepart/publicContent.jsx

@@ -10,7 +10,7 @@ import ImagePicker from '../../components/common/imagePicker'
 import {AtButton, AtTextarea, AtIcon, AtCalendar} from 'taro-ui'
 import {addPublicRelease,getWorkingHoursList} from '../../utils/servers/servers';
 
-import {getNumHourse} from '../../utils/tools';
+import {getHours, getNumHourse, getUserWordTimes} from '../../utils/tools';
 
 import 'taro-ui/dist/style/components/form.scss';
 import 'taro-ui/dist/style/components/button.scss';
@@ -23,8 +23,6 @@ import 'taro-ui/dist/style/components/calendar.scss';
 import './publicContent.less';
 import InquiryModal from "../../components/common/inquiryModal";
 
-const wxConfig = Taro.getStorageSync('wxConfig');
-
 class PublicContent extends Component{
   constructor(props) {
     super(props);
@@ -340,18 +338,20 @@ class PublicContent extends Component{
                 let lv = dayjs(v.value).isSame(item.value);
                 return lv
               })
+              const {start,end} = getUserWordTimes();
+              let totalDuration = getHours(dayjs().format('YYYY-MM-DD')+start,dayjs(dayjs().format('YYYY-MM-DD')+end));   //一天工作时长
               if(index<0){
                 let arr = item.value.split('-');
                 this.state.validDates.push({value:arr.join('-')})
                 this.setState({
                   validDates:this.state.validDates,
-                  totalDuration: this.state.totalDuration + 7.5
+                  totalDuration: this.state.totalDuration + totalDuration
                 })
               }else{
                 this.state.validDates.splice(index,1)
                 this.setState({
                   validDates:this.state.validDates,
-                  totalDuration: this.state.totalDuration - 7.5
+                  totalDuration: this.state.totalDuration - totalDuration
                 })
               }
             }}

+ 5 - 5
src/pages/egressDetails/publicContent.jsx

@@ -11,7 +11,7 @@ import {resourceAddress} from '../../utils/config';
 import { AtButton,AtTextarea ,AtIcon,AtCalendar   } from 'taro-ui'
 import {updatePublicRelease,getWorkingHoursList} from '../../utils/servers/servers';
 
-import {getNumHourse} from '../../utils/tools';
+import {getHours, getNumHourse, getUserWordTimes} from '../../utils/tools';
 
 import 'taro-ui/dist/style/components/form.scss';
 import 'taro-ui/dist/style/components/button.scss';
@@ -24,8 +24,6 @@ import 'taro-ui/dist/style/components/calendar.scss';
 import './publicContent.less';
 import InquiryModal from "../../components/common/inquiryModal";
 
-const wxConfig = Taro.getStorageSync('wxConfig');
-
 class PublicContent extends Component{
   constructor(props) {
     super(props);
@@ -372,18 +370,20 @@ class PublicContent extends Component{
                 let lv = dayjs(v.value).isSame(item.value);
                 return lv
               })
+              const {start,end} = getUserWordTimes();
+              let totalDuration = getHours(dayjs().format('YYYY-MM-DD')+start,dayjs(dayjs().format('YYYY-MM-DD')+end));   //一天工作时长
               if(index<0){
                 let arr = item.value.split('-');
                 this.state.validDates.push({value:arr.join('-')})
                 this.setState({
                   validDates:this.state.validDates,
-                  totalDuration: this.state.totalDuration + 7.5
+                  totalDuration: this.state.totalDuration + totalDuration
                 })
               }else{
                 this.state.validDates.splice(index,1)
                 this.setState({
                   validDates:this.state.validDates,
-                  totalDuration: this.state.totalDuration - 7.5
+                  totalDuration: this.state.totalDuration - totalDuration
                 })
               }
             }}

+ 4 - 6
src/pages/login/index.jsx

@@ -1,7 +1,7 @@
 import { Component } from 'react'
 import Taro from '@tarojs/taro'
 import { connect } from 'react-redux'
-import {View, Input, Checkbox} from '@tarojs/components'
+import {View, Input, Checkbox, Image} from '@tarojs/components'
 import {login,getWorkingHours,setOpenId} from '../../utils/servers/servers';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
@@ -10,7 +10,7 @@ import { AtButton,AtIcon,AtModal  } from 'taro-ui'
 
 import NavBar from '../../components/common/NavBar';
 
-import '../../image/bg.jpg';
+import BG from '../../image/bg.jpg';
 
 import 'taro-ui/dist/style/components/button.scss';
 import 'taro-ui/dist/style/components/loading.scss';
@@ -245,10 +245,8 @@ class Login extends Component {
           color='#FFF'
           onHome={()=>{}}
         />
-        <View className='welcome' style={{
-          background: 'url(../../image/bg.jpg) no-repeat',
-          backgroundSize: 'cover',
-        }}>
+        <View className='welcome'>
+          <Image src={BG} className='bg' mode='heightFix'/>
           <View className='welcomeTitle'>科德科技服务系统</View>
           <View className='welcomeTitle'>欢迎您!</View>
         </View>

+ 8 - 0
src/pages/login/index.less

@@ -9,6 +9,14 @@
     top:0;
     width: 100%;
     padding: 200px 80px 300px 80px;
+    .bg{
+      position: absolute;
+      z-index: -1;
+      top: 0;
+      left: 0;
+      width: 100vw;
+      height: 48vh;
+    }
     .welcomeTitle{
       font-size: 60px;
       color: white;

+ 8 - 6
src/pages/punchClock/punchClocks.jsx

@@ -27,8 +27,6 @@ import {getClockState} from "../../utils/tools";
 
 const QQMapWX = require('../../components/common/mapSDK/qqmap-wx-jssdk.min.js');
 
-const wxConfig = Taro.getStorageSync('wxConfig');
-
 @connect(({ counter }) => ({
   counter
 }), (dispatch) => ({
@@ -65,6 +63,8 @@ class PunchClocks extends Component {
 
   nowTime = null;
 
+  wxConfig= null;
+
   mapCtx = Taro.createMapContext('map');
 
   qqmapsdk = new QQMapWX({
@@ -111,6 +111,8 @@ class PunchClocks extends Component {
   }
 
   componentWillMount() {
+    this.wxConfig = Taro.getStorageSync('wxConfig');
+
     //获得当前位置
     Taro.getLocation({
       type: 'gcj02',
@@ -187,7 +189,7 @@ class PunchClocks extends Component {
       Taro.showToast({title:'当前时间不在打卡时间范围内,无法打卡',icon:'none'})
       return ;
     }
-    if(!(this.state.distance <=wxConfig.clockInRange && this.state.distance >= 0)){
+    if(!(this.state.distance <=this.wxConfig.clockInRange && this.state.distance >= 0)){
       Taro.hideLoading()
       Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
       return ;
@@ -502,13 +504,13 @@ class PunchClocks extends Component {
                 }} style={{
                   boxShadow:
                     (!isNaN(parseInt(this.state.distance)))
-                    && this.state.distance <=wxConfig.clockInRange && this.state.distance >= 0 &&
+                    && this.state.distance <=this.wxConfig.clockInRange && 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 <=wxConfig.clockInRange &&
+                  this.state.distance <=this.wxConfig.clockInRange &&
                   this.state.distance >= 0 &&
                   !(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds))&&
                   dtails.status !== 3
@@ -547,7 +549,7 @@ class PunchClocks extends Component {
                         longitude: this.state.addressLongitude,
                         color: '#c92ddc82',
                         fillColor: '#c92ddc82',
-                        radius: wxConfig.clockInRange,
+                        radius: this.wxConfig.clockInRange,
                         strokeWidth: 1
                       }
                     ]}

+ 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://uat.jishutao.com'
+    BASE_URL = 'https://bm.jishutao.com'
   } else {
     // 生产环境
-    BASE_URL = 'https://uat.jishutao.com'
+    BASE_URL = 'https://bm.jishutao.com'
   }
   return BASE_URL
 }

+ 6 - 1
src/utils/tools/index.js

@@ -86,7 +86,12 @@ export const getNumHourse = (startTimeValue,endTimeValue,days) =>{
   let endTime = dayjs(endTimeValue).format('YYYY-MM-DD') + ' '+endTimeArr.join(':')
 
   if(dayjs(dayjs(startTime).format('YYYY-MM-DD')).isSame(dayjs(dayjs(endTime).format('YYYY-MM-DD')))){
-    return getHours(startTime,endTime)
+    let num = getHours(startTime,endTime)
+    if(num < 0){
+      return 0
+    }else{
+      return getHours(startTime,endTime)
+    }
   }else{
     let a = getHours(startTime,dayjs(dayjs(startTime).format('YYYY-MM-DD')+end));
     let b = getHours(dayjs(dayjs(endTime).format('YYYY-MM-DD')+start),endTime);