Browse Source

注释打印

lifanagju_citu 4 tháng trước cách đây
mục cha
commit
67f8a85a6d
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      src/utils/whiteList.js

+ 3 - 3
src/utils/whiteList.js

@@ -2,11 +2,11 @@
 // 查询是否在白名单内
 const checkWhiteListFun = (url, whiteList)=> {
   const path = url.split('?')[0]
-  console.log('path:', path)
-  console.log('whiteList:', whiteList)
+  // console.log('path:', path)
+  // console.log('whiteList:', whiteList)
   for (const item of whiteList) {
     if (path.startsWith(item)) {
-      console.log('在白名单内')
+      // console.log('在白名单内')
       return true
     }
   }