From fd0ec4e75f496e4ed211bb6d61e997e03c0e46ed Mon Sep 17 00:00:00 2001 From: yangdelong <828900aaa> Date: 星期三, 07 四月 2021 10:22:49 +0800 Subject: [PATCH] 修改地图样式里面的 size 值 --- src/components/LayerController/logic/WasteGas.js | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/LayerController/logic/WasteGas.js b/src/components/LayerController/logic/WasteGas.js index 944cfb7..4ecd0e0 100644 --- a/src/components/LayerController/logic/WasteGas.js +++ b/src/components/LayerController/logic/WasteGas.js @@ -19,9 +19,9 @@ */ this.init = async (layer, L) => { this.animalService = new AnimalService({ L: L, layer: layer }) - const res = await mapApi.GetWasteGas() + const res = await mapApi.getWasteGas() const data = res.Result.DataInfo || {} - console.log(data) + // console.log(data) for (let i = 0; i < data.length; i++) { // 缁忕含搴� 浣嶇疆 const positionX = data[i].Latitude @@ -44,20 +44,20 @@ } this.bindTooltip = (layer) => { - console.log(layer) return layer.options.test.Name } this.clickListener = async (e) => { // console.log(e) this.animalService.pulseEffect(e.latlng) - const dataValue = { - StoragePlaceId: e.layer.options.test.StoragePlaceId - } - const result = await mapApi.GetWasteGas(dataValue) + // const dataValue = { + // StoragePlaceId: e.layer.options.test.StoragePlaceId + // } + // const result = await mapApi.getWasteGas(dataValue) const PublicBounced = window.Vue.extend(publicBounced) const instance = new PublicBounced() - instance.setData(result) + instance.setGasData(e.layer.options.test, 'feiqi') + console.log(e.layer.options.test) instance.$mount() document.body.appendChild(instance.$el) } -- Gitblit v1.8.0