|
@@ -19,12 +19,17 @@ Vue.prototype.$ajax = axios;
|
|
|
let region = 'cn'
|
|
|
// BaseUrl='http://gpt4.cocorobo.cn:8011/';
|
|
|
if (parent?.location?.href.includes('beta')) {
|
|
|
+ console.log(parent.location.href);
|
|
|
+
|
|
|
region = 'beta'
|
|
|
} else if (parent?.location?.href.includes('cn')) {
|
|
|
+ console.log(parent.location.href);
|
|
|
region = 'cn'
|
|
|
} else if (parent?.location?.href.includes('hk')) {
|
|
|
+ console.log(parent.location.href);
|
|
|
region = 'hk'
|
|
|
} else if (parent?.location?.href.includes('com')) {
|
|
|
+ console.log(parent.location.href);
|
|
|
region = 'com'
|
|
|
}
|
|
|
|