1234567891011121314151617181920212223242526272829303132333435 |
- export function vaildUrl() {
- const url: string = window.location.href;
- let returnUrl = '';
- if (/test/.test(url)) {
- // dev 环境
- returnUrl = 'https://test.kt.colexiu.com';
- } else if (/dev/.test(url)) {
- returnUrl = 'https://dev.kt.colexiu.com';
- } else if (/localhost/.test(url)) {
- // //本地环境
- returnUrl = 'https://test.kt.colexiu.com';
- } else {
- // 默认dev环境
- returnUrl = 'https://kt.colexiu.com';
- }
- return returnUrl;
- }
- export function vaildMusicScoreUrl() {
- const url: string = window.location.href;
- let returnUrl = '';
- if (/test/.test(url)) {
- // dev 环境
- returnUrl = 'https://test.kt.colexiu.com';
- } else if (/dev/.test(url)) {
- returnUrl = 'https://dev.kt.colexiu.com';
- } else if (/localhost/.test(url)) {
- // //本地环境
- returnUrl = 'https://test.kt.colexiu.com';
- } else {
- returnUrl = 'https://mec.colexiu.com';
- }
- return returnUrl;
- }
|