This commit is contained in:
3321822538@qq.com 2024-06-17 18:03:28 +08:00
parent 2ada89629c
commit e4e988e169
4 changed files with 91 additions and 81 deletions

View File

@ -27,10 +27,8 @@ const install = (Vue, vm) => {
// 设置自定义头部content-type // 设置自定义头部content-type
header: { header: {
'content-type': 'application/json;charset=UTF-8', 'content-type': 'application/json;charset=UTF-8',
}, },
// ...... })
});
// 请求拦截部分,如配置,每次请求前都会执行 // 请求拦截部分,如配置,每次请求前都会执行
Vue.prototype.$u.http.interceptor.request = (config) => { Vue.prototype.$u.http.interceptor.request = (config) => {

View File

@ -107,6 +107,9 @@
width: 25, width: 25,
height: 30, height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4', iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
} }
this.covers.push(shopCover); this.covers.push(shopCover);
} }
@ -129,6 +132,9 @@
fontWeight: 700, fontWeight: 700,
color: '#8883F0', color: '#8883F0',
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white', textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
} }
} }
this.covers.push(shopCover); this.covers.push(shopCover);
@ -257,6 +263,9 @@
fontWeight: 700, fontWeight: 700,
color: '#8883F0', color: '#8883F0',
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white', textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
} }
} }
this.covers.push(shopCover) this.covers.push(shopCover)

View File

@ -132,6 +132,9 @@
width: 25, width: 25,
height: 30, height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4', iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
}; };
this.covers.push(shopCover); this.covers.push(shopCover);
} }
@ -153,6 +156,9 @@
fontWeight: 700, fontWeight: 700,
color: '#8883F0', color: '#8883F0',
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white', textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
} }
} }
this.covers.push(shopCover); this.covers.push(shopCover);
@ -181,8 +187,6 @@
onlyFromCamera: true, onlyFromCamera: true,
scanType: ['qrCode'], scanType: ['qrCode'],
success: res => { success: res => {
// console.log('', res);
// let id = res.result
function getQueryParam(url, paramName) { function getQueryParam(url, paramName) {
let regex = new RegExp(`[?&]${paramName}=([^&]*)`); let regex = new RegExp(`[?&]${paramName}=([^&]*)`);
let results = regex.exec(url); let results = regex.exec(url);
@ -291,32 +295,28 @@
anchorX: (() => { anchorX: (() => {
if (item.name.length <= 2) { if (item.name.length <= 2) {
return -12 return -12
} else if (item.name.length <= } else if (item.name.length <= 3) {
3) {
return -20 return -20
} else if (item.name.length <= } else if (item.name.length <= 4) {
4) {
return -25 return -25
} else if (item.name.length <= } else if (item.name.length <= 5) {
5) {
return -30 return -30
} else if (item.name.length <= } else if (item.name.length <= 6) {
6) {
return -35 return -35
} else if (item.name.length <= } else if (item.name.length <= 8) {
8) {
return -40 return -40
} else if (item.name.length <= } else if (item.name.length <= 10) {
10) {
return -45 return -45
} else { } else {
return -item.name.length * return -item.name.length * 5
5
} }
})(), })(),
fontWeight: 700, fontWeight: 700,
color: '#8883F0', color: '#8883F0',
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white', textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
} }
}; };
this.covers.push(shopCover); this.covers.push(shopCover);

View File

@ -186,61 +186,7 @@
}) })
}, },
updateMarkers() {
this.mapContext.getScale({
success: (res) => {
this.covers = [];
if (res.scale <= 14) {
this.addMarkersWithoutLabels();
} else {
this.addMarkersWithLabels();
}
},
fail: (error) => {
// console.error('', error);
},
});
},
addMarkersWithoutLabels() {
this.listmap.forEach((item) => {
if (item.deviceCount !== null && item.deviceCount > 0){
const shopCover = {
id: parseFloat(item.storeId),
latitude: item.lat,
longitude: item.lng,
width: 25,
height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4',
};
this.covers.push(shopCover)
}
});
},
addMarkersWithLabels() {
this.listmap.forEach((item) => {
if (item.deviceCount !== null && item.deviceCount > 0){
const shopCover = {
id: parseFloat(item.storeId),
latitude: item.lat,
longitude: item.lng,
width: 25,
height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4',
label: {
content: item.name,
anchorX: this.calculateAnchorX(item.name),
fontWeight: 700,
color: '#8883F0',
textShadow: '2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000',
rotate: 20
}
}
this.covers.push(shopCover)
}
});
},
calculateAnchorX(name) { calculateAnchorX(name) {
let chineseLength = 0 let chineseLength = 0
let englishLength = 0 let englishLength = 0
@ -297,8 +243,6 @@
}, },
btnindex(num) { btnindex(num) {
if (num == 2) { if (num == 2) {
uni.navigateTo({ uni.navigateTo({
@ -404,10 +348,9 @@
})(), })(),
fontWeight: 700, fontWeight: 700,
color: '#8883F0', color: '#8883F0',
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white', borderColor:'#fff',
style: { borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
},
} }
} }
this.covers.push(shopCover) this.covers.push(shopCover)
@ -421,6 +364,65 @@
} }
}); });
}, },
updateMarkers() {
this.mapContext.getScale({
success: (res) => {
this.covers = []; //
if (res.scale <= 14) {
this.addMarkersWithoutLabels();
} else {
this.addMarkersWithLabels();
}
},
fail: (error) => {
console.error('获取地图缩放级别失败:', error);
},
})
},
addMarkersWithoutLabels() {
this.listmap.forEach((item) => {
if (item.deviceCount !== null && item.deviceCount > 0){
const shopCover = {
id: parseFloat(item.storeId),
latitude: item.lat,
longitude: item.lng,
width: 25,
height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
};
this.covers.push(shopCover);
}
});
},
addMarkersWithLabels() {
this.listmap.forEach((item) => {
if (item.deviceCount !== null && item.deviceCount > 0){
const shopCover = {
id: parseFloat(item.storeId),
latitude: item.lat,
longitude: item.lng,
width: 25,
height: 30,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uZXgsJE6hXbRSwbKILB4',
label: {
content: item.name,
anchorX: this.calculateAnchorX(item.name),
fontWeight: 700,
color: '#8883F0',
textShadow: '2px 2px 0px white, -2px -2px 0px white, 2px -2px 0px white, -2px 2px 0px white',
borderColor:'#fff',
borderRadius:5,
bgColor: 'rgba(255, 255, 255, 0.7)'
}
}
this.covers.push(shopCover);
}
});
},
handleMarkerClick(event) { handleMarkerClick(event) {
let markerId = event.markerId; let markerId = event.markerId;
@ -457,8 +459,9 @@
} else { } else {
this.jmlogin() this.jmlogin()
} }
}); })
}, },
jmlogin() { jmlogin() {
let taht = this let taht = this
wx.login({ wx.login({