| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1x 1x 1x 1x | const matchEnv = function(reg) { return reg.test(window.location.hostname) } //测试环境test export const isTestEnv = function() { return !(isMasterEnv() || isReleaseEnv()) } //7上就是release export const isReleaseEnv = function() { return matchEnv(/(m|www)7.hunliji.com/i) } //线上master export const isMasterEnv = function() { return matchEnv(/(m|www|admin).hunliji.com/i) } |