|
@@ -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
|
|
|
}
|
|
|
]}
|