|
@@ -1,6 +1,6 @@
|
|
|
import React, { Component } from 'react'
|
|
|
import { connect } from 'react-redux'
|
|
|
-import {Map, OpenData, View, Image} from '@tarojs/components'
|
|
|
+import {Map, OpenData, View, Image, Text} from '@tarojs/components'
|
|
|
import Taro from '@tarojs/taro';
|
|
|
import {AtIcon, AtModal, AtNoticebar} from "taro-ui";
|
|
|
import dayjs from 'dayjs';
|
|
@@ -167,6 +167,10 @@ class PunchClocks extends Component {
|
|
|
Taro.showToast({title:'定位错误,请联系管理员',icon:'none'})
|
|
|
return ;
|
|
|
}
|
|
|
+ if(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)){
|
|
|
+ Taro.showToast({title:'还没到打卡时间,无法打卡',icon:'none'})
|
|
|
+ return ;
|
|
|
+ }
|
|
|
if(!(this.state.distance <=100 && this.state.distance >= 0)){
|
|
|
Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
|
|
|
return ;
|
|
@@ -357,11 +361,13 @@ class PunchClocks extends Component {
|
|
|
</View>
|
|
|
<View className='address'>
|
|
|
公出企业:
|
|
|
- {
|
|
|
- Object.keys(this.state.dtails).length <= 0 ?
|
|
|
- '无':
|
|
|
- dtails.nickname
|
|
|
- }
|
|
|
+ <View className='nickname'>
|
|
|
+ {
|
|
|
+ Object.keys(this.state.dtails).length <= 0 ?
|
|
|
+ '无':
|
|
|
+ dtails.nickname
|
|
|
+ }
|
|
|
+ </View>
|
|
|
</View>
|
|
|
</View>
|
|
|
{
|
|
@@ -380,18 +386,21 @@ class PunchClocks extends Component {
|
|
|
dtails.status === 1 ? '#1d4fea' :
|
|
|
dtails.status === 2 ? '#767272' : ''
|
|
|
}}>
|
|
|
- <View>
|
|
|
+ <View style={{textAlign:'right'}}>
|
|
|
{
|
|
|
dtails.status === 0 ? '驳回' :
|
|
|
dtails.status === 1 ? '审核中' :
|
|
|
dtails.status === 2 ? '通过' : ''
|
|
|
}
|
|
|
</View>
|
|
|
- <Image src={switchIocn} className='switchItem' onClick={()=>{
|
|
|
+ <View className='switchContent' onClick={()=>{
|
|
|
Taro.switchTab({
|
|
|
url: '/pages/examine/index',
|
|
|
})
|
|
|
- }}/>
|
|
|
+ }}>
|
|
|
+ <View className='switchTitle'>切换打卡</View>
|
|
|
+ <Image src={switchIocn} className='switchItem'/>
|
|
|
+ </View>
|
|
|
</View>
|
|
|
}
|
|
|
</View>
|
|
@@ -433,7 +442,7 @@ class PunchClocks extends Component {
|
|
|
</View>
|
|
|
</View>
|
|
|
<View className='photographContent'>
|
|
|
- <View className='photographTitle'>打卡拍照</View>
|
|
|
+ <View className='photographTitle'>打卡拍照<Text className='tips'>〔可以上传多张〕</Text></View>
|
|
|
<AtIcon onClick={()=>{
|
|
|
Taro.chooseImage({
|
|
|
count: 1,
|