config.js 1.0 KB

123456789101112131415161718192021
  1. // 判断浏览器是否为IE
  2. const ua = window.navigator.userAgent
  3. const isIE = ua.indexOf('MSIE') !== -1 || ua.indexOf('Trident/') !== -1
  4. // 如果浏览器为IE,则提示用户更新浏览器
  5. if (isIE) {
  6. // alert('您的浏览器版本过低,请更新浏览器!')
  7. window.unsupportedBrowser = true
  8. document.getElementById('app').innerHTML = '<h1 style="width:960px;margin:200px auto;font-size:32px;font-weight:700;">您的浏览器版本过低,请升级浏览器以获取更好的体验!<br>推荐使用 <a href="https://www.microsoft.com/zh-cn/edge" style="color:blue">Microsoft Edge</a> 或者 <a href="https://www.google.com/chrome" style="color:blue">Google Chrome</a> 浏览器。<br>如果您使用的是双核浏览器,请切换到极速模式访问</h1>'
  9. }
  10. window.GLOBAL_CONFIG = {
  11. web_pc: 'https://myxjyszptxweb.bozedu.net/',
  12. origin: window.location.origin,
  13. api: 'https://openapi.bozedu.net/',
  14. oss: 'https://openapi.bozedu.net/',
  15. uc: 'https://uc.bozedu.net/',
  16. myxjyszptx: 'https://myxjyszptxapi.bozedu.net/',
  17. }