|
@@ -36,11 +36,11 @@
|
|
<div class="panel-second-row">
|
|
<div class="panel-second-row">
|
|
<div class="second-row-left">
|
|
<div class="second-row-left">
|
|
<div class="row-left-layout">
|
|
<div class="row-left-layout">
|
|
- <span style="font-size: 20px;font-weight: 600;">{{selectDevice.loc_mode}}</span>
|
|
|
|
|
|
+ <span style="font-size: 10px;font-weight: 600;">{{selectDevice.loc_mode}}</span>
|
|
<span style="color:darkgray">设备型号</span>
|
|
<span style="color:darkgray">设备型号</span>
|
|
</div>
|
|
</div>
|
|
<div class="row-left-layout">
|
|
<div class="row-left-layout">
|
|
- <span style="font-size:20px;font-weight:600">{{selectDevice.state}} </span>
|
|
|
|
|
|
+ <span style="font-size:10px;font-weight:600">{{selectDevice.state}} </span>
|
|
<span style="color:darkgray">设备状态</span>
|
|
<span style="color:darkgray">设备状态</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -54,7 +54,7 @@
|
|
/> -->
|
|
/> -->
|
|
<div class="right-number" >
|
|
<div class="right-number" >
|
|
<p>名称:{{selectDevice.device_name}}</p>
|
|
<p>名称:{{selectDevice.device_name}}</p>
|
|
- <p>IMEI:{{selectDevice.imei}}</p>
|
|
|
|
|
|
+ <p>出厂编号:{{selectDevice.factory_number}}</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
@@ -64,7 +64,7 @@
|
|
{{selectDevice.address}}
|
|
{{selectDevice.address}}
|
|
</div>
|
|
</div>
|
|
<div class="route-search-button" style="position:relative">
|
|
<div class="route-search-button" style="position:relative">
|
|
- <router-link :to="'yys_route_search/'+ selectDevice.imei" class="voice-device-item">
|
|
|
|
|
|
+ <router-link :to="'yys_route_search/'+ selectDevice.factory_number" class="voice-device-item">
|
|
<van-button type="info" icon="search" size="small" round style="width:3rem" >历史定位</van-button>
|
|
<van-button type="info" icon="search" size="small" round style="width:3rem" >历史定位</van-button>
|
|
</router-link>
|
|
</router-link>
|
|
<van-button @click.native="refreshSingle" plain type="info" icon="replay" size="mini" style="font-size:12px;position:absolute;right:0.5rem;top:0.1rem"></van-button>
|
|
<van-button @click.native="refreshSingle" plain type="info" icon="replay" size="mini" style="font-size:12px;position:absolute;right:0.5rem;top:0.1rem"></van-button>
|
|
@@ -106,13 +106,13 @@ export default {
|
|
this.$toast('地图初始化失败,请刷新重试');
|
|
this.$toast('地图初始化失败,请刷新重试');
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
-
|
|
|
|
that.getLastPositon();
|
|
that.getLastPositon();
|
|
}).catch((err) => {
|
|
}).catch((err) => {
|
|
this.$toast('地图数据初始化出错,请刷新重试');
|
|
this.$toast('地图数据初始化出错,请刷新重试');
|
|
console.log(err);
|
|
console.log(err);
|
|
return;
|
|
return;
|
|
});
|
|
});
|
|
|
|
+ // that.getPositioning();
|
|
},
|
|
},
|
|
data(){
|
|
data(){
|
|
return {
|
|
return {
|
|
@@ -210,8 +210,8 @@ export default {
|
|
let markerData = this.selectDevice;
|
|
let markerData = this.selectDevice;
|
|
let that =this;
|
|
let that =this;
|
|
|
|
|
|
- this.$http.get("/getLastPositionSingle&imei=" + markerData.imei).then(res => {
|
|
|
|
- if(!res.data.success){
|
|
|
|
|
|
+ this.$http.get("getLastPositionSingle?id=" + markerData.id +'&openid=' + this.openid).then(res => {
|
|
|
|
+ if(res.data.code!=10000){
|
|
that.$dialog.toast({
|
|
that.$dialog.toast({
|
|
mes: res.data.message,
|
|
mes: res.data.message,
|
|
timeout: 3000
|
|
timeout: 3000
|
|
@@ -282,6 +282,7 @@ export default {
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
try {
|
|
try {
|
|
|
|
+
|
|
var map = new AMap.Map('route-map', {
|
|
var map = new AMap.Map('route-map', {
|
|
zoom:15,//级别
|
|
zoom:15,//级别
|
|
center: [119.5,32.9],//中心点坐标
|
|
center: [119.5,32.9],//中心点坐标
|
|
@@ -289,13 +290,54 @@ export default {
|
|
// mapStyle: 'amap://styles/light',
|
|
// mapStyle: 'amap://styles/light',
|
|
showBuildingBlock: true
|
|
showBuildingBlock: true
|
|
});
|
|
});
|
|
|
|
+
|
|
AMap.plugin([
|
|
AMap.plugin([
|
|
'AMap.ToolBar',
|
|
'AMap.ToolBar',
|
|
'AMap.Scale',
|
|
'AMap.Scale',
|
|
'AMap.MapType',
|
|
'AMap.MapType',
|
|
'AMap.Geocoder',
|
|
'AMap.Geocoder',
|
|
|
|
+ 'AMap.Geolocation'
|
|
// 'AMap.MarkerCluster',
|
|
// 'AMap.MarkerCluster',
|
|
- ], function(){
|
|
|
|
|
|
+ ], function () {
|
|
|
|
+ let geolocation = new AMap.Geolocation({
|
|
|
|
+ enableHighAccuracy: true,
|
|
|
|
+ // 设置定位超时时间,默认:无穷大
|
|
|
|
+ timeout: 10000,
|
|
|
|
+ // 定位按钮的停靠位置的偏移量,默认:Pixel(10, 20)
|
|
|
|
+ buttonOffset: new AMap.Pixel(10, 20),
|
|
|
|
+ // 定位成功后调整地图视野范围使定位位置及精度范围视野内可见,默认:false
|
|
|
|
+ zoomToAccuracy: true,
|
|
|
|
+ panToLocation: true,
|
|
|
|
+ noIpLocate:0,
|
|
|
|
+ // 定位按钮的排放位置, RB表示右下
|
|
|
|
+ buttonPosition: 'RB'
|
|
|
|
+ });
|
|
|
|
+ map.addControl(geolocation);
|
|
|
|
+ geolocation.getCurrentPosition()
|
|
|
|
+ console.log(AMap.Event);
|
|
|
|
+ AMap.Event.addListener(geolocation, 'complete', onComplete);
|
|
|
|
+ AMap.Event.addListener(geolocation, 'error', onError);
|
|
|
|
+ function onComplete(data) {
|
|
|
|
+ // data是具体的定位信息
|
|
|
|
+ console.log(data)
|
|
|
|
+ if (data.position) {
|
|
|
|
+ that.saveLocationInfo(data.position);
|
|
|
|
+ } else {
|
|
|
|
+ that.$notify({
|
|
|
|
+ type: 'warning',
|
|
|
|
+ message: '获取定位失败',
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ function onError(data) {
|
|
|
|
+ // 定位出错
|
|
|
|
+ that.$notify({
|
|
|
|
+ type: 'warning',
|
|
|
|
+ message: '获取定位失败',
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
// 在图面添加工具条控件,工具条控件集成了缩放、平移、定位等功能按钮在内的组合控件
|
|
// 在图面添加工具条控件,工具条控件集成了缩放、平移、定位等功能按钮在内的组合控件
|
|
map.addControl(new AMap.ToolBar({position: 'RT', offset: [15, 50]}));
|
|
map.addControl(new AMap.ToolBar({position: 'RT', offset: [15, 50]}));
|
|
// 在图面添加比例尺控件,展示地图在当前层级和纬度下的比例尺
|
|
// 在图面添加比例尺控件,展示地图在当前层级和纬度下的比例尺
|
|
@@ -306,6 +348,7 @@ export default {
|
|
|
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+
|
|
that.infoWindow = new AMap.InfoWindow({
|
|
that.infoWindow = new AMap.InfoWindow({
|
|
isCustom: true, //使用自定义窗体
|
|
isCustom: true, //使用自定义窗体
|
|
content: '',
|
|
content: '',
|
|
@@ -325,6 +368,12 @@ export default {
|
|
}
|
|
}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ //保存个人定位信息
|
|
|
|
+ saveLocationInfo(data)
|
|
|
|
+ {
|
|
|
|
+ localStorage.setItem('position',data);
|
|
|
|
+
|
|
|
|
+ },
|
|
/**
|
|
/**
|
|
* 获取围栏数据
|
|
* 获取围栏数据
|
|
*/
|
|
*/
|
|
@@ -464,20 +513,10 @@ export default {
|
|
*/
|
|
*/
|
|
getLastPositon(){
|
|
getLastPositon(){
|
|
let that = this;
|
|
let that = this;
|
|
- let res={
|
|
|
|
- status:200,
|
|
|
|
- data:{
|
|
|
|
- success:true,
|
|
|
|
- message:"获取成功",
|
|
|
|
- data:[
|
|
|
|
- {"imei":"869678041008494","device_name":"测试液压泵1","device_type":"0","state":"使用中","loc_mode":"M1","loc_ploy":"1","online_time":"1655943942","longitude":"119.201478","latitude":"30.191538","wifi_online_time":"1662004623","wifi_longitude":"119.200662","wifi_latitude":"30.191734","alarm_state":"1","isAlarm":"1","time":"1662004623","lat":30.186001,"lng":120.194101,"awayTime":"4小时","date_time":"2022-09-01 11:57:03"},
|
|
|
|
- {"imei":"869678041006811","device_name":"测试液压泵3","device_type":"0","state":"待检","loc_mode":"M1","loc_ploy":"1","online_time":"1655943941","longitude":"120.21201","latitude":"30.2084","wifi_online_time":"1655950726","wifi_longitude":"120.200644","wifi_latitude":"30.191814","alarm_state":"0","isAlarm":"0","time":"1655950726","lat":30.185682,"lng":120.194083,"awayTime":"2月","date_time":"2022-06-23 10:18:46"}
|
|
|
|
- ]
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
|
|
- // this.$http.get("/getDevicePositionList&userid="+this.userid+'&openid='+this.openid ).then(res => {
|
|
|
|
- if(!res.data.success){
|
|
|
|
|
|
+
|
|
|
|
+ this.$http.get("getHydList?userid="+this.userid+'&openid='+this.openid ).then(res => {
|
|
|
|
+ if(res.data.code!=10000){
|
|
that.$toast(res.data.message || '获取设备数据失败');
|
|
that.$toast(res.data.message || '获取设备数据失败');
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -558,10 +597,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- // })
|
|
|
|
- // .catch(res => {
|
|
|
|
- // console.log(res);
|
|
|
|
- // });
|
|
|
|
|
|
+ })
|
|
|
|
+ .catch(res => {
|
|
|
|
+ console.log(res);
|
|
|
|
+ });
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
@@ -613,7 +652,9 @@ export default {
|
|
align-items: flex-end;
|
|
align-items: flex-end;
|
|
}
|
|
}
|
|
.second-row-left{
|
|
.second-row-left{
|
|
|
|
+
|
|
display: flex;
|
|
display: flex;
|
|
|
|
+
|
|
}
|
|
}
|
|
.right-number{
|
|
.right-number{
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
|