From 9b2f52f8e276d6a80a19c2d487163e34273ec03a Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Tue, 01 Dec 2020 18:16:23 +0800 Subject: [PATCH] 地址组件增加加载状态 --- bases/Fetcher.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bases/Fetcher.js b/bases/Fetcher.js index d9b9e76..f80ee41 100644 --- a/bases/Fetcher.js +++ b/bases/Fetcher.js @@ -482,8 +482,8 @@ if (Tools.getTopUrlParam('query') === 'real') { return false; } - // 当没有 url 指定时,只有内网 ip 和 35** 的端口号,视为本地开发模式 - return /^(192|127|localhost).*?:35\d{2}$/i.test(window.location.host); + // 当没有 url 指定时,只有内网 ip 和 33** 的端口号,视为本地开发模式 + return /^(192|127|localhost).*?:33\d{2}$/i.test(window.location.host); })(); -- Gitblit v1.9.1