|
|
|
@ -74,7 +74,7 @@
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
<cs-bottom-wrapper v-if="!isLocate"> |
|
|
|
|
<view class="operation" v-if="distance < 30"> |
|
|
|
|
<view class="operation"> |
|
|
|
|
<button |
|
|
|
|
class="btn green" |
|
|
|
|
v-if="distance < radius" |
|
|
|
@ -155,8 +155,8 @@ export default {
|
|
|
|
|
miniCode: '', |
|
|
|
|
enterpriseGps: '', |
|
|
|
|
location: {}, |
|
|
|
|
distance: '', |
|
|
|
|
radius: 1000000, // 打卡范围 |
|
|
|
|
distance: 10000, |
|
|
|
|
radius: 30, // 打卡范围 |
|
|
|
|
showTip: false, |
|
|
|
|
list: [], |
|
|
|
|
loading: false, |
|
|
|
@ -166,7 +166,7 @@ export default {
|
|
|
|
|
imageUrl: '' |
|
|
|
|
}, |
|
|
|
|
isLeadLocate: false, |
|
|
|
|
isLocate: false, |
|
|
|
|
isLocate: true, |
|
|
|
|
timer: null, |
|
|
|
|
time: 0 |
|
|
|
|
} |
|
|
|
@ -191,10 +191,8 @@ export default {
|
|
|
|
|
imageUrl: |
|
|
|
|
'http://82.156.141.150:9001/api/v1/download-shared-object/aHR0cDovL2xvY2FsaG9zdDo5MDAwL2h1YW5iYW8vbWluaWFwcC9pbnZhdGUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUQxODY1RVA2NEczMEdEUUhDVTglMkYyMDI1MDIxOCUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMThUMDcyMDI0WiZYLUFtei1FeHBpcmVzPTQzMTk5JlgtQW16LVNlY3VyaXR5LVRva2VuPWV5SmhiR2NpT2lKSVV6VXhNaUlzSW5SNWNDSTZJa3BYVkNKOS5leUpoWTJObGMzTkxaWGtpT2lKQlJERTROalZGVURZMFJ6TXdSMFJSU0VOVk9DSXNJbVY0Y0NJNk1UY3pPVGt3TmpJME55d2ljR0Z5Wlc1MElqb2lZV1J0YVc0aWZRLmp6djBhdEY5QVBYXzVjYWg4c18yeXhVV3oxek9BekFzSVdzemVrUmZwcXlHd0RPWkptazlUSGJRUnBDdVNmLVMyU0otWTI1cldUd2hpNUlrY0xBSThRJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCZ2ZXJzaW9uSWQ9bnVsbCZYLUFtei1TaWduYXR1cmU9MjcxZTkzOTE1MDkwYzUzYmRjYTg0MjQ1MTJhYjk3ZWQxZWMyN2QzM2MwM2U3NGUwYmRhNTBmYjQyNWI0N2MyOQ' |
|
|
|
|
} |
|
|
|
|
this.init() |
|
|
|
|
}, |
|
|
|
|
onReady() { |
|
|
|
|
this.useAuth() |
|
|
|
|
this.init() |
|
|
|
|
}, |
|
|
|
|
onShareAppMessage() { |
|
|
|
|
return this.share |
|
|
|
@ -203,8 +201,8 @@ export default {
|
|
|
|
|
return this.share |
|
|
|
|
}, |
|
|
|
|
onShow() { |
|
|
|
|
this.refresh() |
|
|
|
|
this.echoQueset() |
|
|
|
|
// this.refresh() |
|
|
|
|
// this.echoQueset() |
|
|
|
|
}, |
|
|
|
|
onHide() { |
|
|
|
|
this.timer && clearInterval(this.timer) |
|
|
|
@ -230,7 +228,7 @@ export default {
|
|
|
|
|
scene: `aId=${this.inspectionsId}&bId=${this.enterpriseId}`, |
|
|
|
|
path: 'sub/task/locate', |
|
|
|
|
checkPath: false, |
|
|
|
|
envVersion: 'develop', |
|
|
|
|
envVersion: 'trial', |
|
|
|
|
isHyaline: true |
|
|
|
|
}) |
|
|
|
|
this.miniCode = `data:image/jpeg;base64,${res.data}` |
|
|
|
@ -254,7 +252,10 @@ export default {
|
|
|
|
|
this.isLocate = true |
|
|
|
|
// 专管员签到状态 |
|
|
|
|
if (locate.isInspect) this.isLeadLocate = true |
|
|
|
|
} else { |
|
|
|
|
this.isLocate = false |
|
|
|
|
} |
|
|
|
|
console.log(this.isLocate, this.isLeadLocate) |
|
|
|
|
this.list = res.data |
|
|
|
|
}, |
|
|
|
|
useAuth() { |
|
|
|
@ -265,6 +266,13 @@ export default {
|
|
|
|
|
res.authSetting['scope.userLocation'] |
|
|
|
|
? _getLocation() |
|
|
|
|
: _getAuth() |
|
|
|
|
}, |
|
|
|
|
fail: err => { |
|
|
|
|
uni.showToast({ |
|
|
|
|
icon: 'none', |
|
|
|
|
title: '获取设置失败' |
|
|
|
|
}) |
|
|
|
|
console.log(err) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
/** |
|
|
|
@ -285,6 +293,7 @@ export default {
|
|
|
|
|
uni.getLocation({ |
|
|
|
|
type: 'gcj02', |
|
|
|
|
success: res => { |
|
|
|
|
console.log('location', res) |
|
|
|
|
that.location = { |
|
|
|
|
latitude: res.latitude, |
|
|
|
|
longitude: res.longitude |
|
|
|
@ -322,6 +331,7 @@ export default {
|
|
|
|
|
to: this.enterpriseGps, |
|
|
|
|
success: res => { |
|
|
|
|
that.distance = res.result.elements[0].distance |
|
|
|
|
console.log('distance', that.distance) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|