样式i需改

This commit is contained in:
978184212@qq.com 2025-11-20 17:34:44 +08:00
parent 493684077e
commit a23cceed04
1 changed files with 105 additions and 264 deletions

View File

@ -1,33 +1,18 @@
<template> <template>
<view class="container"> <view class="container">
<!-- <image src="../../static/zddt.jpg" mode="" class="bgimg" @click="todetail()"></image> --> <map id="map" ref="map" style="width: 100%; height:2000rpx;" scale="13" :markers="markers" longitude="111.436625"
<map id="map" style="width: 100%; height:2000rpx;" scale="13" :markers="markers" longitude="111.436625"
latitude="36.771975" show-location @markertap="markertap" @callouttap="callouttap"> latitude="36.771975" show-location @markertap="markertap" @callouttap="callouttap">
<cover-view slot="callout">
<cover-view v-for="(item,index) in markers" :key="index" class="customCallout" :marker-id="item.id">
<cover-image class="imgs" src="@/static/zhandian_icon_xuqin_title.png"
v-if="item.stationType == 'livestock'"></cover-image>
<cover-image class="imgs" src="@/static/zhandian_icon_nongtian_title.png"
v-if="item.stationType == 'orient'"></cover-image>
<cover-image class="imgs" src="@/static/zhandian_icon_qiye_title.png"
v-if="item.stationType == 'cusLocaltion'"></cover-image>
<cover-view class="content"
v-if="item.stationType == 'livestock' || item.stationType == 'orient'|| item.stationType == 'cusLocaltion'">
{{item.stationName}}
</cover-view>
</cover-view>
</cover-view>
</map> </map>
<view class="zdxq"> <view class="zdxq">
<view class="zdxqitem" @click="switch2Change"> <view class="zdxqitem" @click="switch2Change('团柏河')">
<image src="../../static/zhandian_xuqin_dingwei.png" mode=""></image> <image src="../../static/zhandian_nongtian_dingwei.png" mode=""></image>
<view class="textss"> <view class="textss">
团柏河典型小流域监测站 团柏河典型小流域监测站
</view> </view>
<view class="crildon" :style="!issscd?'background:#00ff37':'background: #ccc;'"></view> <view class="crildon" :style="!issscd?'background:#00ff37':'background: #ccc;'"></view>
</view> </view>
<view class="zdxqitem" @click="switch3Change"> <view class="zdxqitem" @click="switch2Change('对竹河')">
<image src="../../static/zhandian_nongtian_dingwei.png" mode=""></image> <image src="../../static/zhandian_xuqin_dingwei.png" mode=""></image>
<view class="textss"> <view class="textss">
对竹河典型小流域监测站 对竹河典型小流域监测站
</view> </view>
@ -39,93 +24,51 @@
<script> <script>
import api from '@/api/api' import api from '@/api/api'
import selectSwitch from "@/components/xuan-switch/xuan-switch.vue"; import configService from '@/common/service/config.service.js';
export default { export default {
components: {
selectSwitch
},
data() { data() {
return { return {
baseUrl:configService.staticDomainURL,
markers: [], markers: [],
markersNoPest: [],
list: [], list: [],
pointers: [],
imgurl1: '@/static/zhandian_icon_nongtian_title.png',
imgurl2: '@/static/zhandian_icon_xuqin_title.png',
isscd: true,
issscd: true, issscd: true,
isssscd: true, isssscd: true,
pestlight: [],
cusLocation: [],
stationInfo: [], stationInfo: [],
pestlightMarker: null, cusLocation: [],
stationlist: [], stationlist: [],
timerSet: null stationTwolist:[],
mapCtx: null //
}; };
}, },
onLoad() { onLoad() {
// this.isscd = true
// this.getList()
this.$nextTick(() => { this.$nextTick(() => {
this.getList() this.getList()
}) })
}, },
onReady() {
// onReady
this.mapCtx = uni.createMapContext('map', this);
},
onShow() { onShow() {
var that = this if (!uni.getStorageSync('third_session')) {
if (uni.getStorageSync('third_session')) {
uni.login({
success: function(res) {
console.log(res.code)
this.code = res.code
let params = {}
params.jsCode = this.code
console.log(params, 152)
api.wxlogin(params).then(res => {
console.log(res, 165)
if (res.data.code == 0) {
let userInfo = res.data.data;
// uni.setStorageSync('third_session', userInfo.thirdSession);
if (!userInfo.id) {
uni.reLaunch({
url: '/packDetail/pages/login/login'
})
} else {
// that.isscd = true
//
}
}
})
}
});
} else if (!uni.getStorageSync('third_session')) {
uni.reLaunch({ uni.reLaunch({
url: '/pages/loginindex' url: '/pages/loginindex'
}) })
} }
},
onReady() {
// 1.mapmapid
this.mapContext = uni.createMapContext("alarm_map", this);
}, },
methods: { methods: {
getList() { getList() {
this.markers = [] this.markers = []
this.markersNoPest = []
this.pointers = []
this.list = [] this.list = []
uni.showLoading({ uni.showLoading({
title: '加载中' title: '加载中'
}); });
this.$http.get('/applet/survStationInfo/stationMap').then(res => { this.$http.get('/applet/survStationInfo/stationMap').then(res => {
this.stationlist = [...res.data.data.pestlight, ...res.data.data.cusLocation, ...res.data.data this.stationlist = [...res.data.data.stationInfo]
.stationInfo this.stationTwolist = [...res.data.data.stationInfo]
]
this.stationlist.forEach((item, index) => { this.stationlist.forEach((item, index) => {
item.id = index; item.id = index;
if (item.inType == 'pestlight') {
this.pestlight.push(item)
}
if (item.stationType == 'cusLocaltion') { if (item.stationType == 'cusLocaltion') {
this.cusLocation.push(item) this.cusLocation.push(item)
} }
@ -141,34 +84,66 @@
stationCode: item.stationCode stationCode: item.stationCode
}) })
}) })
this.issscd = false this.issscd = false
this.isssscd = false this.isssscd = false
this.qiyeChange() this.qiyeChange()
this.list1query() this.list1query()
this.list2query()
//
setTimeout(() => {
this.adjustMapToFitAllMarkers();
}, 500);
uni.hideLoading(); uni.hideLoading();
}) })
}, },
// stationlist
processStationList(stationlist) { //
if (stationlist) { adjustMapToFitAllMarkers() {
stationlist.forEach(item => { if (this.mapCtx && this.list.length > 0) {
this.list.push({ this.mapCtx.includePoints({
latitude: item.inType === 'pestlight' ? Number(item.latitude) : Number(item points: this.list.map(item => ({
.stationLatitude), latitude: item.latitude,
longitude: item.inType === 'pestlight' ? Number(item.longitude) : Number(item longitude: item.longitude
.stationLongitude), })),
stationType: item.inType === 'pestlight' ? 'pestlight' : item.stationType, padding: [40, 40, 40, 40] //
sortNo: item.sortNo, });
stationName: item.stationName,
stationCode: item.stationCode
})
})
} }
}, },
//
adjustMapToRegion(regionName) {
let points = [];
if (regionName === '团柏河') {
//
points = this.stationTwolist
.filter(item => item.groupName === '团柏河')
.map(item => ({
latitude: Number(item.stationLatitude),
longitude: Number(item.stationLongitude)
}));
} else if (regionName === '对竹河') {
//
points = this.stationTwolist
.filter(item => item.groupName === '对竹河')
.map(item => ({
latitude: Number(item.stationLatitude),
longitude: Number(item.stationLongitude)
}));
}
if (points.length > 0 && this.mapCtx) {
this.mapCtx.includePoints({
points: points,
padding: [60, 60, 60, 60] //
});
}
},
markertap(e) { markertap(e) {
const index = e.detail.markerId const index = e.detail.markerId
console.log(e.detail, 'index')
if (['orient', 'livestock'].includes(this.list[index].stationType)) { if (['orient', 'livestock'].includes(this.list[index].stationType)) {
uni.navigateTo({ uni.navigateTo({
url: `/packDetail/pages/Site/detail?item=${encodeURIComponent(JSON.stringify(this.list[index]))}` url: `/packDetail/pages/Site/detail?item=${encodeURIComponent(JSON.stringify(this.list[index]))}`
@ -199,7 +174,7 @@
stationName: item.stationName, stationName: item.stationName,
stationCode: item.stationCode stationCode: item.stationCode
}) })
// markers
const markerItem = { const markerItem = {
id: item.id, id: item.id,
iconPath: item.iconPath, iconPath: item.iconPath,
@ -208,37 +183,52 @@
width: item.width, width: item.width,
height: item.height, height: item.height,
customCallout: { customCallout: {
anchorY: 0, // Y anchorY: 0,
anchorX: 0, // X anchorX: 0,
display: 'ALWAYS' // display: 'ALWAYS'
}, },
stationType: item.stationType, stationType: item.stationType,
stationName: item.stationName, stationName: item.stationName,
stationCode: item.stationCode, stationCode: item.stationCode,
joinCluster: true // joinCluster: true
}; };
this.markers.push(markerItem); this.markers.push(markerItem);
} }
}, },
switch2Change() { switch2Change(name) {
this.issscd = !this.issscd //
this.list1query() if (name === "团柏河") {
}, this.stationlist = this.issscd ?
switch3Change() { this.stationTwolist.filter(item => item.groupName !== "团柏河") :
this.isssscd = !this.isssscd this.stationTwolist;
this.list2query() } else {
this.stationlist = this.isssscd ?
this.stationTwolist.filter(item => item.groupName !== "对竹河") :
this.stationTwolist;
}
//
this.list1query();
//
setTimeout(() => {
this.adjustMapToRegion(name);
}, 300);
}, },
list1query() { list1query() {
// orient
this.markers = this.markers.filter(item => item.stationType !== 'orient');
if (!this.issscd) { if (!this.issscd) {
for (let i = 0; i < this.stationInfo.length; i++) { for (let i = 0; i < this.stationlist.length; i++) {
const item = this.stationInfo[i]; const item = this.stationlist[i];
if (item.stationType === 'orient') { if (item.stationType === 'orient') {
item.iconPath = '/static/zhandian_nongtian_dingwei.png'; item.iconPath = this.baseUrl +'/'+ item.stationIcon;
item.latitude = Number(item.stationLatitude); item.latitude = Number(item.stationLatitude);
item.longitude = Number(item.stationLongitude); item.longitude = Number(item.stationLongitude);
item.width = 35; item.width = 172;
item.height = 52; item.height = 148;
// markers
const markerItem = { const markerItem = {
id: item.id, id: item.id,
iconPath: item.iconPath, iconPath: item.iconPath,
@ -247,169 +237,20 @@
width: item.width, width: item.width,
height: item.height, height: item.height,
customCallout: { customCallout: {
anchorY: 0, // Y anchorY: 0,
anchorX: 0, // X anchorX: 0,
display: 'ALWAYS' // display: 'ALWAYS'
}, },
stationType: item.stationType, stationType: item.stationType,
stationName: item.stationName, stationName: item.stationName,
stationCode: item.stationCode, stationCode: item.stationCode,
joinCluster: true // joinCluster: true
}; };
this.markers.push(markerItem); this.markers.push(markerItem);
} }
} }
} else {
this.markers = this.markers.filter((item) => {
return item.stationType !== 'orient'
})
} }
}, },
list2query() {
if (!this.isssscd) {
for (let i = 0; i < this.stationInfo.length; i++) {
const item = this.stationInfo[i];
if (item.stationType === 'livestock') {
item.iconPath = '/static/zhandian_xuqin_dingwei.png';
item.latitude = Number(item.stationLatitude);
item.longitude = Number(item.stationLongitude);
item.width = 35;
item.height = 52;
// markers
const markerItem = {
id: item.id,
iconPath: item.iconPath,
latitude: item.latitude,
longitude: item.longitude,
width: item.width,
height: item.height,
customCallout: {
anchorY: 0, // Y
anchorX: 0, // X
display: 'ALWAYS' //
},
stationType: item.stationType,
stationName: item.stationName,
stationCode: item.stationCode,
joinCluster: true //
};
this.markers.push(markerItem);
}
}
} else {
this.markers = this.markers.filter((item) => {
return item.stationType !== 'livestock'
})
}
}
} }
} }
</script> </script>
<style lang="scss">
.bgimg {
position: fixed;
// z-index: -99;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.customCallout {
width: 349rpx;
height: 49rpx;
color: #fff;
font-size: 24rpx;
text-shadow: 1rpx 2rpx 0rpx #0D1934;
font-weight: bold;
// background-image: url('@/static/zhandian_icon_nongtian_title.png');
background-repeat: no-repeat;
background-size: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.customCallout1 {
width: 349rpx;
height: 49rpx;
color: #fff;
font-size: 24rpx;
text-shadow: 1rpx 2rpx 0rpx #0D1934;
font-weight: bold;
// background-image: url('@/static/zhandian_icon_xuqin_title.png');
background-repeat: no-repeat;
background-size: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.zdxq {
position: fixed;
left: 33rpx;
bottom: 36rpx;
}
.zdxqitem {
padding: 8rpx 0 7rpx 17rpx;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 22rpx;
font-family: Source Han Sans SC;
font-weight: 500;
color: #FFFFFF;
text-shadow: 0rpx 1rpx 0rpx rgba(4, 49, 52, 0.55);
width: 359rpx;
background: rgba(0, 0, 0, 0.52);
border: 1px solid #4B677C;
border-radius: 6rpx;
margin-bottom: 10rpx;
position: relative;
}
.crildon {
width: 10rpx;
height: 10rpx;
border-radius: 50%;
margin-right: 15rpx;
}
.zdxqitem:last-child {
margin-bottom: 0;
}
.zdxqitem image {
width: 33rpx;
height: 50rpx;
margin-right: 15rpx;
}
.zdxqitem:first-child image {
width: 30rpx;
height: 40rpx;
margin-right: 15rpx;
}
.textss {
flex: 1;
text-align: left;
}
.imgs {
position: absolute;
width: 100%;
height: 100%;
z-index: -9;
}
.switchs {
position: fixed;
top: 36rpx;
right: 40rpx;
display: flex;
align-items: center;
}
</style>