zhgdyunapp/components/levitatedsphere/levitatedsphere.vue

298 lines
8.0 KiB
Vue
Raw Normal View History

2024-05-22 20:51:13 +08:00
<template>
<view class="holdon">
<image class="ball" @click="goNavigateTo()"
:style="'left:'+(moveX == 0 & x>0? x+'%':moveX+'px')+';top:'+(moveY == 0 & y>0? y+'%':moveY+'px')+';transform: translate(-'+(x+'%') +',-' +(y+'%') +');'"
@touchstart="drag_start" @touchmove.prevent="drag_hmove" src="@/static/rescue-phone.png" mode="aspectFit">
</image>
</view>
</template>
<script>
import {
emergencyRecordAdd,
emergencyRecordSendNotice,
emergencyRecordEdit
} from "@/api/index.js"
export default {
props: {
x: {
type: Number,
default: 0
},
y: {
type: Number,
default: 0
},
image: {
type: String,
default: ''
}
},
data() {
return {
start: [0, 0],
moveY: 0,
moveX: 0,
windowWidth: '',
windowHeight: '',
projectSn: "",
workerInfoId: "",
id: "",
emergencyInfo: {
emergencyTypeId: "",
emergencyDetail: "",
livePicture: "",
liveVideoSituation: "",
incidentSite: "",
longitude: "",
latitude: "",
},
}
},
mounted() {
const {
windowWidth,
windowHeight
} = uni.getSystemInfoSync();
this.windowWidth = windowWidth
this.windowHeight = windowHeight
2024-05-22 21:41:59 +08:00
this.projectSn = JSON.parse(uni.getStorageSync('userInfo')).sn;
this.workerInfoId = JSON.parse(uni.getStorageSync('userInfo')).userId;
console.log(JSON.parse(uni.getStorageSync('userInfo')));
2024-05-22 20:51:13 +08:00
},
methods: {
drag_start(event) {
this.start[0] = event.touches[0].clientX - event.target.offsetLeft;
this.start[1] = event.touches[0].clientY - event.target.offsetTop;
},
drag_hmove(event) {
let tag = event.touches;
if (tag[0].clientX < 0) {
tag[0].clientX = 0
}
if (tag[0].clientY < 0) {
tag[0].clientY = 0
}
if (tag[0].clientX > this.windowWidth) {
tag[0].clientX = this.windowWidth
}
if (tag[0].clientY > this.windowHeight) {
tag[0].clientY = this.windowHeight
}
this.moveX = tag[0].clientX - this.start[0];
this.moveY = tag[0].clientY - this.start[1];
},
orientation() {
uni.showModal({
title: '提示',
content: '请打开定位服务',
success: ({
confirm,
cancel
}) => {
if (confirm) {
// android平台
if (uni.getSystemInfoSync().platform == 'android') {
var Intent = plus.android.importClass('android.content.Intent');
var Settings = plus.android.importClass('android.provider.Settings');
var intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
var main = plus.android.runtimeMainActivity();
main.startActivity(intent); // 打开系统设置GPS服务页面
}
// ios平台
if (uni.getSystemInfoSync().platform == 'ios') {
var UIApplication = plus.ios.import("UIApplication");
var application2 = UIApplication.sharedApplication();
var NSURL2 = plus.ios.import("NSURL");
var setting2 = NSURL2.URLWithString("App-Prefs:root=Privacy&path=LOCATION");
application2.openURL(setting2);
plus.ios.deleteObject(setting2);
plus.ios.deleteObject(NSURL2);
plus.ios.deleteObject(application2);
}
}
// 用户取消前往开启定位服务
if (cancel) {
// do sth...
}
}
});
},
goNavigateTo() {
const that = this;
// 定位开启状态 true=开启false=未开启
let bool = false
// android平台
if (uni.getSystemInfoSync().platform == 'android') {
var context = plus.android.importClass("android.content.Context");
var locationManager = plus.android.importClass("android.location.LocationManager");
var main = plus.android.runtimeMainActivity();
var mainSvr = main.getSystemService(context.LOCATION_SERVICE);
bool = mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)
}
// ios平台
if (uni.getSystemInfoSync().platform == 'ios') {
var cllocationManger = plus.ios.import("CLLocationManager");
var enable = cllocationManger.locationServicesEnabled();
var status = cllocationManger.authorizationStatus();
plus.ios.deleteObject(cllocationManger);
bool = enable && status != 2
}
// 未开启定位功能
if (bool === false) {
this.orientation();
return
}
2024-05-22 21:41:59 +08:00
uni.showModal({
title: '提示信息',
content: '是否快速报警?',
cancelText: "取消",
confirmText: "确认",
success: function(res) {
if (res.confirm) {
// uni.navigateTo({
// url: `${url}?id=${that.id}`,
// });
emergencyRecordAdd({
projectSn: that.projectSn,
emergencyTypeId: -1,
alarmPersonId: that.workerInfoId,
}).then(result => {
if (result.code == 200) {
// uni.showToast({
// title: "登录成功"
// })
that.id = result.result.id;
console.log(result);
uni.showLoading({
title: "报警中..."
})
uni.getLocation({
type: 'gcj02',
// type: 'wgs84',
geocode: true, //设置该参数为true可直接获取经纬度及城市信息
isHighAccuracy: "true",
accuracy: "best", // 精度值为20m
success: function(res) {
console.log(res)
// const latitude = parseFloat(res.latitude);
// const longitude = parseFloat(res.longitude);
that.emergencyInfo.longitude = parseFloat(res
.longitude);
that.emergencyInfo.latitude = parseFloat(res
.latitude);
that.addressList = [
res.address.province,
res.address.city,
res.address.district,
res.address.street,
res.address.poiName,
]
that.emergencyInfo.incidentSite = that
.addressList.map(
item => item).join('')
2024-05-22 20:51:13 +08:00
2024-05-22 21:41:59 +08:00
console.log(111111111);
console.log(that.emergencyInfo.longitude, that
.emergencyInfo.latitude);
2024-05-22 20:51:13 +08:00
2024-05-22 21:41:59 +08:00
emergencyRecordEdit({
id: that.id,
projectSn: that.projectSn,
incidentSite: that.emergencyInfo
.incidentSite,
longitude: that.emergencyInfo
.longitude,
latitude: that.emergencyInfo
.latitude,
}).then(result => {
if (result.code == 200) {
uni.showToast({
title: result
.message,
})
emergencyRecordSendNotice({
projectSn: that
.projectSn,
incidentSite: that
.emergencyInfo
.incidentSite,
id: that.id,
}).then(result => {
if (result.code ==
200) {
uni
.hideLoading(); //关闭提示
} else {
uni.showToast({
title: result
.message,
icon: "none"
})
}
})
} else {
uni.showToast({
title: result
.message,
icon: "none"
})
uni.hideLoading(); //关闭提示
}
})
// that.addrDel = res;
},
fail: function() {
uni.showToast({
title: '获取地址失败,将导致部分功能不可用',
icon: 'none'
});
}
});
} else {
uni.showToast({
title: result.message,
icon: "none"
})
}
})
} else if (res.cancel) {
console.log('用户点击取消');
2024-05-22 20:51:13 +08:00
}
2024-05-22 21:41:59 +08:00
}
});
2024-05-22 20:51:13 +08:00
},
}
}
</script>
<style lang="less">
.holdon {
width: 100%;
2024-05-22 22:05:48 +08:00
// height: 100%;
2024-05-22 20:51:13 +08:00
}
.ball {
width: 60rpx;
height: 60rpx;
padding: 12rpx;
// background:linear-gradient(to bottom, #F8F8FF,#87CEFA);
background-color: #D81E06;
border-radius: 50%;
// box-shadow: 0 0 15rpx #87CEFA;
color: #fff;
// font-size: 30upx;
display: flex;
justify-content: center;
align-items: center;
position: fixed !important;
z-index: 1000000;
}
</style>