| 123456789101112131415161718192021 |
- export let hostUrl,reportHosturl
- if(window.location.href.indexOf('localhost') > -1){ //本地调试
- // hostUrl = 'http://pdc.goldenwater.com.cn'
- // // hostUrl = 'http://61.154.12.112:9900/pdcApi'
- reportHosturl = 'http://pdc.goldenwater.com.cn'
- hostUrl = 'http://localhost:8500'
- }else if(window.location.href.indexOf('10.1.102.') > -1){ //测试环境
- hostUrl = `${window.location.protocol}//${window.location.hostname}:${window.location.port}`
- reportHosturl = 'http://pdc.goldenwater.com.cn'
- }else if(window.location.port){ //带端口号
- hostUrl = `${window.location.protocol}//${window.location.hostname}:${window.location.port}`
- reportHosturl = `${window.location.protocol}//${window.location.hostname}:${window.location.port}`
- }else{
- hostUrl = `${window.location.protocol}//${window.location.hostname}`
- reportHosturl = `${window.location.protocol}//${window.location.hostname}`
- }
- export let curAdcode_long,curAdcode_short
- // curAdcode_long 行政区划编码全 curAdcode_short 取行政区划编码前六位
- curAdcode_long = localStorage.getItem('currentRlcode') ? localStorage.getItem('currentRlcode') : '000000000000'
- curAdcode_short = curAdcode_long.substr(0,6)
|