From 2258b051846dee407b54e0f9b43e944639ffd79b Mon Sep 17 00:00:00 2001 From: wuhongjian Date: Tue, 18 Oct 2022 17:44:46 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/src/utils/location.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/back/src/utils/location.js b/back/src/utils/location.js index 82fc8775..25cd9f33 100644 --- a/back/src/utils/location.js +++ b/back/src/utils/location.js @@ -1,12 +1,12 @@ /* * @Author: hisense.guoyue * @Date: 2022-08-23 10:30:11 - * @LastEditors: hisense.guoyue - * @LastEditTime: 2022-10-02 14:47:05 + * @LastEditors: hisense.wuhongjian + * @LastEditTime: 2022-10-18 17:44:33 * @Description: 判断当前环境是西海岸还是青岛市局 */ const returnLocationStr = () => { - return CONFIGITEM.version + return CONFIGITEM.version === 'xihaian' ? 'xihaian' : 'qingdao' } export default returnLocationStr