From 69390ca33e65ccb2c348c687d506c23fc8225fe4 Mon Sep 17 00:00:00 2001 From: aixianling Date: Mon, 15 Jul 2024 16:36:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E9=94=80=E5=94=AE=E6=9C=BA?= =?UTF-8?q?=E4=BC=9A,=E5=B9=B6=E5=A2=9E=E5=8A=A0=E5=9C=B0=E5=9B=BE?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E8=AF=B7=E6=B1=82=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/AppThreeMap.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/AppThreeMap.vue b/src/views/AppThreeMap.vue index 1f702c7..3621d20 100644 --- a/src/views/AppThreeMap.vue +++ b/src/views/AppThreeMap.vue @@ -357,7 +357,7 @@ export default { showHoverPanel({data: marker, position} = {}) { this.hoverPanelElement.style.opacity = '1' - this.hoverPanelElement.innerHTML = [marker.storeName, `现烤库存金额:${marker.bakeStockAmt}`, `现烤销售机会:${marker.bakeStockAmt}`].join('
') + this.hoverPanelElement.innerHTML = [marker.storeName, `现烤库存金额:${marker.bakeStockAmt}`, `现烤销售机会:${marker.preSaleNum}`].join('
') this.hoverPanel.scale.set(...Array(3).fill(0.04)) this.hoverPanel.rotation.z = Math.PI / 2 this.hoverPanel.rotation.y = Math.PI / 6 @@ -369,10 +369,10 @@ export default { }, getData() { const {$http, $waitFor} = window - const {groupCodeList, currentDate} = this.search + const {groupCodeList, currentDate, hourNum} = this.search return $waitFor($http).then(() => Promise.all([ $http.post("/data-boot/la/screen/marketBoard/storeReport", { - groupCodeList, currentDate + groupCodeList, currentDate, hourNum }).then(res => { if (res?.data) { return this.layers = res.data || []