复制代码 <template> <view class="page"> <u-navbar title="地图" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' height='45'></u-navbar> <map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude" :show-location="true" :markers="markers" :polygons="polyline" @markertap="onMarkerTap"> </map> <view class="bot"> <view class="btn" @click="topage()"> 维修换电 </view> <view class="info"> <view class="cont"> <view class="cont_top"> 全部工单 </view> <view class="cont_bot"> {{infonum.allNum}} </view> </view> <view class="cont"> <view class="cont_top"> 待换电 </view> <view class="cont_bot"> {{infonum.powerReplacementNum}} </view> </view> <view class="cont"> <view class="cont_top"> 待维修 </view> <view class="cont_bot"> {{infonum.repairNum}} </view> </view> </view> </view> </view> </template> <script> export default { data() { return { bgc: { backgroundColor: "#F7FAFE", }, latitude: '26.940805', longitude: '120.356157', isMap: false, zoomSize: 15, markers: [], polyline: [], polygons: [], fixdata: [], eledata: [], listData: [], infonum: {} } }, onShow() { this.$store.dispatch('userInfo', this.$u).then(() => { // 执行其他操作... }); this.getArea() this.getParking() this.getmarks() this.getordernum() }, computed: { userId() { return this.$store.getters.userId; }, }, methods: { onMarkerTap(e) { console.log('点击了标记:', e); this.sn = e.detail.markerId; this.todetail(); }, todetail() { uni.navigateTo({ url: '/page_fix/repair/repair_index?id=' + this.sn }); }, getmarks() { this.$u.get(`/appVerify/adminOrder/list?adminId=` + 2).then((res) => { if (res.code == 200) { console.log('调用了'); this.listData = res.rows; this.fixdata = []; this.eledata = []; res.rows.forEach(item => { if (item.type == 1&&item.status==2) { this.fixdata.push(item); } else if (item.type == 2&&item.status==2) { this.eledata.push(item); } }); this.updateMarkers(); } else { console.error('接口返回错误:', res); } }).catch(error => { console.error("接口请求失败:", error); }); }, updateMarkers() { this.markers = []; const markerIds = new Set(); // 用于跟踪已添加的 id const addMarker = (item, iconPath) => { const id = parseFloat(item.sn); if (!markerIds.has(id)) { markerIds.add(id); this.markers.push({ id: id, latitude: parseFloat(item.latitude), longitude: parseFloat(item.longitude), width: 40, height: 40, iconPath: iconPath, }); } }; this.fixdata.forEach(item => { addMarker(item, 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX'); }); this.eledata.forEach(item => { addMarker(item, 'https://lxnapi.ccttiot.com/bike/img/static/u4UKmB47AxOj3YKIaajM'); }); console.log(this.markers, '更新后的标记'); }, topage() { uni.navigateTo({ url: '/page_fix/repair/repair_index' }); }, getordernum() { this.$u.get('/appVerify/adminOrder/num?adminId=' + 2).then((res) => { if (res.code === 200) { this.infonum = res.data; } }).catch(error => { console.error("获取订单数量数据失败:", error); }); }, getArea() { this.$u.get('/app/area/list').then((res) => { if (res.code === 200) { const polylines = res.rows.filter(area => area.boundaryStr) .map(area => this.convertBoundaryToPolyline(area.boundaryStr)); this.polyline = polylines; } }).catch(error => { console.error("获取区域数据失败:", error); }); }, convertBoundaryToPolylines(boundaries) { return boundaries.map(boundary => { if (!boundary) return null; let coords; try { coords = JSON.parse(boundary); } catch (error) { console.error("解析边界 JSON 失败:", error); return null; } if (!Array.isArray(coords)) { console.error("解析的边界不是数组:", coords); return null; } const points = coords.map(coord => ({ latitude: coord[1], longitude: coord[0] })); return { points: points, fillColor: "#55888840", strokeColor: "#558888", strokeWidth: 2, zIndex: 1, }; }).filter(polyline => polyline !== null); }, getParking() { this.$u.get('/app/parking/list').then((res) => { if (res.code === 200) { const validBoundaries = res.rows.map(row => row.boundaryStr).filter(boundary => boundary); const polylines = this.convertBoundaryToPolylines(validBoundaries); this.polyline = this.polyline.concat(polylines); } }).catch(error => { console.error("获取停车数据失败:", error); }); }, convertBoundaryToPolyline(boundary) { if (!boundary) return null; const points = JSON.parse(boundary).map(coord => ({ latitude: coord[1], longitude: coord[0] })); return { points: points, fillColor: "#55888840", strokeColor: "#22FF00", strokeWidth: 2, zIndex: 1, }; }, } } </script> <style lang="scss"> page { background-color: #F7FAFE; } .page { width: 750rpx; .map { width: 750rpx; height: 1250rpx; } .bot { padding: 40rpx 32rpx; position: fixed; bottom: 0; width: 750rpx; height: 272rpx; background: #fff; border-radius: 60rpx 60rpx 0 0; .btn { display: flex; align-items: center; justify-content: center; width: 686rpx; height: 90rpx; background: #4C97E7; border-radius: 54rpx 54rpx 54rpx 54rpx; font-weight: 500; font-size: 40rpx; color: #FFFFFF; } .info { margin-top: 24rpx; display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-around; .cont { width: 112rpx; display: flex; flex-wrap: wrap; justify-content: center; .cont_top { text-align: center; width: 112rpx; font-weight: 500; font-size: 28rpx; color: #3D3D3D; } .cont_bot { text-align: center; width: 112rpx; font-weight: 500; font-size: 28rpx; color: #3D3D3D; } } } } } </style>