|
@@ -54,14 +54,38 @@ class PunchClock extends Component {
|
|
|
this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
|
|
|
this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
|
|
|
this.refresh = this.refresh.bind(this);
|
|
|
- this.nowTime = null;
|
|
|
}
|
|
|
|
|
|
+ nowTime = null;
|
|
|
+
|
|
|
qqmapsdk = new QQMapWX({
|
|
|
key: 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'
|
|
|
});
|
|
|
|
|
|
- componentDidShow () {
|
|
|
+ componentWillUnmount() {
|
|
|
+ Taro.offLocationChange();
|
|
|
+ this.nowTime && this.nowTime.clearTimeout();
|
|
|
+ }
|
|
|
+
|
|
|
+ componentDidMount(){
|
|
|
+ this.getPublicReleaseList(()=>{
|
|
|
+ Taro.startLocationUpdate({
|
|
|
+ success:()=>{
|
|
|
+ Taro.onLocationChange((v)=>{
|
|
|
+ this.getSpacing(v.latitude,v.longitude)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fail:()=>{
|
|
|
+ this.setState({
|
|
|
+ loading:false
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ componentDidShow() {
|
|
|
+
|
|
|
//获得当前位置
|
|
|
Taro.getLocation({
|
|
|
type: 'gcj02',
|
|
@@ -78,49 +102,61 @@ class PunchClock extends Component {
|
|
|
}
|
|
|
})
|
|
|
|
|
|
- this.getPublicReleaseList(()=>{
|
|
|
- Taro.startLocationUpdate({
|
|
|
- success:()=>{
|
|
|
- Taro.onLocationChange((v)=>{
|
|
|
- this.getSpacing(v.latitude,v.longitude)
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
- });
|
|
|
-
|
|
|
this.nowTime = setInterval(()=>{
|
|
|
this.setState({
|
|
|
nowTime:dayjs().format('HH:mm:ss')
|
|
|
})
|
|
|
},1000)
|
|
|
|
|
|
- let token = Taro.getStorageSync('token');
|
|
|
- //建立连接
|
|
|
- Taro.connectSocket({
|
|
|
- header:{
|
|
|
- 'token': token,
|
|
|
- },
|
|
|
- url: "wss://uat.jishutao.com/websocket",
|
|
|
- // 172.16.0.188:8080
|
|
|
- // uat.jishutao.com
|
|
|
- })
|
|
|
-
|
|
|
- //连接成功
|
|
|
- Taro.onSocketOpen(function() {
|
|
|
- Taro.sendSocketMessage({
|
|
|
- data: 'stock',
|
|
|
+ Taro.eventCenter.on('GoPunchIn', (arg) => {
|
|
|
+ console.log(arg,'222')
|
|
|
+ this.setState({
|
|
|
+ dtails:arg,
|
|
|
+ addressLatitude:parseFloat(arg.latitude),
|
|
|
+ addressLongitude:parseFloat(arg.longitude),
|
|
|
+ },()=>{
|
|
|
+ Taro.startLocationUpdate({
|
|
|
+ success:()=>{
|
|
|
+ Taro.onLocationChange((v)=>{
|
|
|
+ this.getSpacing(v.latitude,v.longitude)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fail:()=>{
|
|
|
+ this.setState({
|
|
|
+ loading:false
|
|
|
+ })
|
|
|
+ }
|
|
|
})
|
|
|
})
|
|
|
+ })
|
|
|
|
|
|
- //接收数据
|
|
|
- Taro.onSocketMessage(function(data) {
|
|
|
- console.log(data,'接收数据')
|
|
|
- })
|
|
|
-
|
|
|
- //连接失败
|
|
|
- Taro.onSocketError(function() {
|
|
|
- console.log('websocket连接失败!');
|
|
|
- })
|
|
|
+ // let token = Taro.getStorageSync('token');
|
|
|
+ // //建立连接
|
|
|
+ // Taro.connectSocket({
|
|
|
+ // header:{
|
|
|
+ // 'token': token,
|
|
|
+ // },
|
|
|
+ // url: "wss://uat.jishutao.com/websocket",
|
|
|
+ // // 172.16.0.188:8080
|
|
|
+ // // uat.jishutao.com
|
|
|
+ // })
|
|
|
+ //
|
|
|
+ // //连接成功
|
|
|
+ // Taro.onSocketOpen(function() {
|
|
|
+ // Taro.sendSocketMessage({
|
|
|
+ // data: 'stock',
|
|
|
+ // })
|
|
|
+ // })
|
|
|
+ //
|
|
|
+ // //接收数据
|
|
|
+ // Taro.onSocketMessage(function(data) {
|
|
|
+ // console.log(data,'接收数据')
|
|
|
+ // })
|
|
|
+ //
|
|
|
+ // //连接失败
|
|
|
+ // Taro.onSocketError(function() {
|
|
|
+ // console.log('websocket连接失败!');
|
|
|
+ // })
|
|
|
}
|
|
|
|
|
|
publicReleaseClockIn(){
|
|
@@ -254,10 +290,10 @@ class PunchClock extends Component {
|
|
|
})
|
|
|
},
|
|
|
fail: function(error) {
|
|
|
- console.error(error);
|
|
|
_this.setState({
|
|
|
loading:false
|
|
|
})
|
|
|
+ console.error(error);
|
|
|
},
|
|
|
complete: function(res) {
|
|
|
console.log(res);
|
|
@@ -265,15 +301,6 @@ class PunchClock extends Component {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- componentWillUnmount() {
|
|
|
- this.nowTime && this.nowTime.clearTimeout();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- componentDidMount() {
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
onChange(value,type){
|
|
|
let arr = this.state.imgs.concat([]);
|
|
|
if(type === 'add'){
|
|
@@ -348,12 +375,18 @@ class PunchClock extends Component {
|
|
|
dtails.status === 1 ? '#1d4fea' :
|
|
|
dtails.status === 2 ? '#767272' : ''
|
|
|
}}>
|
|
|
- {
|
|
|
- dtails.status === 0 ? '驳回' :
|
|
|
- dtails.status === 1 ? '发起' :
|
|
|
- dtails.status === 2 ? '通过' : ''
|
|
|
- }
|
|
|
- <Image src={switchIocn} className='switchItem'/>
|
|
|
+ <View>
|
|
|
+ {
|
|
|
+ dtails.status === 0 ? '驳回' :
|
|
|
+ dtails.status === 1 ? '审核中' :
|
|
|
+ dtails.status === 2 ? '通过' : ''
|
|
|
+ }
|
|
|
+ </View>
|
|
|
+ <Image src={switchIocn} className='switchItem' onClick={()=>{
|
|
|
+ Taro.switchTab({
|
|
|
+ url: '/pages/examine/index',
|
|
|
+ })
|
|
|
+ }}/>
|
|
|
</View>
|
|
|
}
|
|
|
</View>
|