Browse Source

项目区分

yuansh 2 years ago
parent
commit
c89e1e5860
1 changed files with 10 additions and 4 deletions
  1. 10 4
      url.config.js

+ 10 - 4
url.config.js

@@ -1,14 +1,20 @@
 export function getEditorJumpUrl () {
-    // let url = 'http://localhost:8080'
+    let url = 'http://localhost:8080'
     //let url ="http://106.15.206.14:8089";//测试服务器
     // let url ="http://192.168.1.158:8089";//森宇服务器
-    let url = "http://220.191.168.86:18089"; // 森语外网
+    // let url = "http://220.191.168.86:18089" // 森语外网
     // let url = 'http://172.18.91.36:8082' // 博物馆OA
     return url
   }
 
 export function getProjctManageUrl(){
-    // let url="http://localhost:4200/#";
-    let url="http://106.15.206.14:8085/#";
+    let url="http://localhost:8080/#";
+    // let url="http://106.15.206.14:8085/#";
     return url;
+}
+
+export function getProjctName(){
+    let name="森语";
+    // let name="技能博物馆";
+    return name;
 }