|
@@ -2,7 +2,7 @@ import React, { Component } from 'react'
|
|
|
import { connect } from 'react-redux'
|
|
|
import {Map, OpenData, View, Image} from '@tarojs/components'
|
|
|
import Taro from '@tarojs/taro';
|
|
|
-import {AtIcon, AtNoticebar} from "taro-ui";
|
|
|
+import {AtIcon, AtModal, AtNoticebar} from "taro-ui";
|
|
|
import dayjs from 'dayjs';
|
|
|
import Skeleton from 'taro-skeleton'
|
|
|
|
|
@@ -54,6 +54,7 @@ class PunchClocks extends Component {
|
|
|
this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
|
|
|
this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
|
|
|
this.refresh = this.refresh.bind(this);
|
|
|
+ this.getDtails = this.getDtails.bind(this);
|
|
|
}
|
|
|
|
|
|
nowTime = null;
|
|
@@ -63,6 +64,10 @@ class PunchClocks extends Component {
|
|
|
});
|
|
|
|
|
|
componentDidMount(){
|
|
|
+ this.getDtails();
|
|
|
+ }
|
|
|
+
|
|
|
+ getDtails(){
|
|
|
this.getPublicReleaseList(()=>{
|
|
|
Taro.startLocationUpdate({
|
|
|
success:()=>{
|
|
@@ -70,7 +75,25 @@ class PunchClocks extends Component {
|
|
|
this.getSpacing(v.latitude,v.longitude)
|
|
|
})
|
|
|
},
|
|
|
- fail:()=>{
|
|
|
+ fail:(err)=>{
|
|
|
+ console.log(err,'err')
|
|
|
+ Taro.getSetting({
|
|
|
+ success:(res)=>{
|
|
|
+ if (!res.authSetting['scope.userLocation']) {
|
|
|
+ Taro.authorize({
|
|
|
+ scope: 'scope.userLocation',
|
|
|
+ success:()=>{
|
|
|
+
|
|
|
+ },
|
|
|
+ fail:()=>{
|
|
|
+ this.setState({
|
|
|
+ isOpened:true
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
this.setState({
|
|
|
loading:false
|
|
|
})
|
|
@@ -102,6 +125,12 @@ class PunchClocks extends Component {
|
|
|
})
|
|
|
},1000)
|
|
|
|
|
|
+ Taro.eventCenter.on('punchClockComponentDidShow', () => {
|
|
|
+ if(Object.keys(this.state.dtails).length === 0){
|
|
|
+ this.getDtails();
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
Taro.eventCenter.on('GoPunchIn', (arg) => {
|
|
|
this.setState({
|
|
|
dtails:arg,
|
|
@@ -266,7 +295,7 @@ class PunchClocks extends Component {
|
|
|
console.error(error);
|
|
|
},
|
|
|
complete: function(res) {
|
|
|
- console.log(res);
|
|
|
+
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -415,7 +444,28 @@ class PunchClocks extends Component {
|
|
|
<View style={{alignSelf:'flex-start',width:'100%'}}>
|
|
|
<ImagePicker ref={ref => this.imagePicker = ref} url='/api/admin/release/upload' showAddBtn={false} onChange={this.onChange}/>
|
|
|
</View>
|
|
|
- <View className='punchClockContent' onClick={this.publicReleaseClockIn} style={{
|
|
|
+ <View className='punchClockContent' onClick={()=>{
|
|
|
+ let _this = this;
|
|
|
+ Taro.getSetting({
|
|
|
+ success:(res)=>{
|
|
|
+ if (!res.authSetting['scope.userLocation']) {
|
|
|
+ Taro.authorize({
|
|
|
+ scope: 'scope.userLocation',
|
|
|
+ success:()=>{
|
|
|
+ _this.publicReleaseClockIn();
|
|
|
+ },
|
|
|
+ fail:()=>{
|
|
|
+ this.setState({
|
|
|
+ isOpened:true
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ _this.publicReleaseClockIn();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }} style={{
|
|
|
boxShadow: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=50 && this.state.distance >= 0 ? '1px 1px 15px 1px #659268' : '1px 1px 15px 1px #acb8ad',
|
|
|
background: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=50 && this.state.distance >= 0 ? '#72cb78' : '#acb8ad'
|
|
|
}}>
|
|
@@ -446,6 +496,50 @@ class PunchClocks extends Component {
|
|
|
<View className='tips'>紫色区域为可打卡区域</View>
|
|
|
</View>
|
|
|
}
|
|
|
+ <AtModal
|
|
|
+ isOpened={this.state.isOpened}
|
|
|
+ title='提醒'
|
|
|
+ cancelText='取消'
|
|
|
+ confirmText='确认'
|
|
|
+ onClose={()=>{
|
|
|
+ this.setState({
|
|
|
+ isOpened:false,
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ onCancel={()=>{
|
|
|
+ this.setState({
|
|
|
+ isOpened:false,
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ onConfirm={()=>{
|
|
|
+ this.setState({
|
|
|
+ isOpened:false,
|
|
|
+ },()=>{
|
|
|
+ Taro.openSetting({
|
|
|
+ success:(value)=> {
|
|
|
+ if(value.authSetting['scope.userLocation']){
|
|
|
+ Taro.getLocation({
|
|
|
+ type: 'gcj02',
|
|
|
+ isHighAccuracy:true,
|
|
|
+ success: (res)=> {
|
|
|
+ const latitude = res.latitude
|
|
|
+ const longitude = res.longitude
|
|
|
+ this.setState({
|
|
|
+ newArrder:{
|
|
|
+ latitude,
|
|
|
+ longitude
|
|
|
+ },
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.getDtails();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ content='您拒绝了定位权限,请先前往设置打开定位权限'
|
|
|
+ />
|
|
|
</View>
|
|
|
)
|
|
|
}
|