Browse Source

fix: 🧩 区域筛选优化

pull/12/head
liyongle 3 years ago
parent
commit
dc7274d47f
  1. 2
      src/composables/useGuideFilterShop.ts

2
src/composables/useGuideFilterShop.ts

@ -54,7 +54,7 @@ export const useGuideFilterShop = () => {
selectedShopList.value = shopList.value.filter(item => item.floorOrder === floorIdx.value) selectedShopList.value = shopList.value.filter(item => item.floorOrder === floorIdx.value)
window.Map_QM.showAreaAnimate() window.Map_QM.showAreaAnimate()
} else { } else {
selectedShopList.value = selectedShopList.value.filter(item => item.regionName === name)
selectedShopList.value = shopList.value.filter(item => item.regionName === name)
window.Map_QM.showAreaAnimate(name) window.Map_QM.showAreaAnimate(name)
} }
hideMapDialog() hideMapDialog()

Loading…
Cancel
Save