| | |
| | | |
| | | window.GLOB = window.GLOB || {} |
| | | |
| | | if (!(options.sysType === 'local' && window.GLOB.systemType === 'official')) { // 只有业务系统才可以设置为正式系统 |
| | | // 只有业务系统才可以设置为正式系统 |
| | | if (options.sysType === 'local' && (window.GLOB.systemType === 'official' || window.GLOB.systemType === 'production')) { |
| | | window.GLOB.systemType = 'production' |
| | | } else { |
| | | window.GLOB.systemType = '' |
| | | } |
| | | |
| | |
| | | if (process.env.NODE_ENV === 'production') { // 用于校验是否存在开发权限 |
| | | let _service = window.location.href.replace(/\/index.html(.*)|\/#(.*)/ig, '').replace(new RegExp(document.location.origin + '/?', 'ig'), '') |
| | | window.GLOB.linkurl = window.location.href.split('#')[0] |
| | | if (!/index.html/ig.test(window.GLOB.linkurl)) { |
| | | window.GLOB.linkurl = window.GLOB.linkurl + 'index.html' |
| | | } |
| | | window.GLOB.service = _service ? _service + '/' : '' |
| | | } else { |
| | | window.GLOB.linkurl = '' |