From 733823ffa701f749c7154cacf60a26951891f2ca Mon Sep 17 00:00:00 2001
From: whyczyk <525500596@qq.com>
Date: 星期三, 02 三月 2022 16:33:41 +0800
Subject: [PATCH] 老平台对接接口防重放问题

---
 src/components/charts/chinaMap.vue |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/components/charts/chinaMap.vue b/src/components/charts/chinaMap.vue
index e18a559..a84cd41 100644
--- a/src/components/charts/chinaMap.vue
+++ b/src/components/charts/chinaMap.vue
@@ -132,7 +132,9 @@
 			} else {
 				// 鍒濆鍖栭〉闈�
 				this.$nextTick(() => {
-					this.getAllMapOutlineAction();
+					if (sessionStorage.getItem('newPlatform') != 1) {
+						this.getAllMapOutlineAction();
+					}
 				})
 			}
 		},

--
Gitblit v1.9.1