Browse Source

2025/2/20

master
parent
commit
4e03c45e47
  1. 15
      pages/index.vue
  2. 30
      sub/task/locate.vue
  3. 12
      uni_modules/s-components/s-tabber/index.vue

15
pages/index.vue

@ -76,6 +76,7 @@
type="ring" type="ring"
:opts="opts" :opts="opts"
:chartData="chartData" :chartData="chartData"
:canvas2d="true"
style="height: 144px" style="height: 144px"
></qiun-data-charts> ></qiun-data-charts>
<view class="wd-flex" style="gap: 12px; flex-wrap: wrap"> <view class="wd-flex" style="gap: 12px; flex-wrap: wrap">
@ -294,28 +295,24 @@ export default {
return res return res
}) })
this.detail.legendData = data this.detail.legendData = data
this.setPieData(data) this.setPieData(data, this.detail.taskCompletionRate)
this.getList() this.getList()
}, },
async getList() { async getList() {
const res = await HomeApi.getListData(this.queryParams) const res = await HomeApi.getListData(this.queryParams)
this.list = res.data this.list = res.data
}, },
setPieData(data) { setPieData(data, max) {
const isMax = data.reduce(
(pre, cur) => pre + Number(cur.pieValue),
0
)
const pieData = data.map(i => { const pieData = data.map(i => {
return { return {
name: i.name, name: i.name,
value: Number(i.pieValue) value: Number(i.pieValue)
} }
}) })
if (isMax < 100) { if (Number(max) < 100) {
pieData.push({ pieData.push({
name: '', name: '',
value: 100 - isMax, value: 100 - Number(max),
color: '#fff' color: '#fff'
}) })
} }
@ -330,7 +327,7 @@ export default {
dataLabel: false, dataLabel: false,
enableScroll: false, enableScroll: false,
title: { title: {
name: `${isMax}%`, name: `${max}%`,
fontSize: 24, fontSize: 24,
color: '#071437', color: '#071437',
fontWeight: 'bold' fontWeight: 'bold'

30
sub/task/locate.vue

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

12
uni_modules/s-components/s-tabber/index.vue

@ -13,7 +13,12 @@
height="42px" height="42px"
v-if="tab.type == 'middle'" v-if="tab.type == 'middle'"
></u--image> ></u--image>
<u--image :src="selected == tab.code ? tab.selectIcon : tab.icon" width="24px" height="24px" v-else></u--image> <u--image
:src="selected == tab.code ? tab.selectIcon : tab.icon"
width="24px"
height="24px"
v-else
></u--image>
<view class="name"> <view class="name">
{{ tab.name }} {{ tab.name }}
</view> </view>
@ -109,7 +114,12 @@ export default {
border-top: 1px solid #f1f1f4; border-top: 1px solid #f1f1f4;
padding: 12px 32px 0px 32px; padding: 12px 32px 0px 32px;
.tab { .tab {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
transition: 0.2s all; transition: 0.2s all;
gap: 2px;
} }
.isActive { .isActive {
color: #22c55e; color: #22c55e;

Loading…
Cancel
Save