mixin.js 629 B

123456789101112131415161718192021
  1. // 全局混入map上的tip气泡点击除地图外的区域也进行隐藏
  2. export const mixinMapTip = {
  3. mounted() {
  4. this.$nextTick(() => {
  5. this.closedMapTip();
  6. })
  7. },
  8. methods: {
  9. closedMapTip() {
  10. if(this.$refs.supermap){
  11. document.addEventListener("click", (e) => {
  12. let a = this.$refs.supermap.$el;
  13. if (this.$refs.supermap.mapshow && !a.contains(e.target)) {
  14. this.$refs.supermap.mapshow = false;
  15. }
  16. });
  17. }
  18. },
  19. }
  20. }