jazz
2024-01-09 f6ea728ea50706b1dfa75bc0d266fb6b5f13ef7f
src/config/index.js
@@ -25,7 +25,6 @@
  if (is_use_test_server) {
    isTestView = 1
  }
}
const pdomain = '/' // 线上
@@ -50,8 +49,8 @@
  const search = location.search
  // 参数数组
  let querys = []
  if (search && search.indexOf('?')>-1) {
    querys = search.split('?')[1].split('&').filter((str)=>{
  if (search && search.indexOf('?') > -1) {
    querys = search.split('?')[1].split('&').filter((str) => {
      const key = str.split('=')[0]
      const value = str.split('=')[1]
      return (key != 'code' && key != 'state')
@@ -62,7 +61,7 @@
  // 补充参数
  if (querys.length) {
    indexUrl += '?'+querys.join('&')
    indexUrl += '?' + querys.join('&')
  }
  return long.replace('{{appid}}', appid).replace('{{scope}}', scope).replace('{{url}}', encodeURIComponent(indexUrl))
@@ -73,7 +72,7 @@
  console.log = () => {}
}
var domain;
var domain
if (istest == 0) domain = pdomain // 线上
if (istest == 1) domain = tdomain // 本地