url.config.js 592 B

1234567891011121314151617181920
  1. export function getEditorJumpUrl () {
  2. let url = 'http://localhost:8080'
  3. //let url ="http://106.15.206.14:8089";//测试服务器
  4. // let url ="http://192.168.1.158:8089";//森宇服务器
  5. // let url = "http://220.191.168.86:18089" // 森语外网
  6. // let url = 'http://172.18.91.36:8082' // 博物馆OA
  7. return url
  8. }
  9. export function getProjctManageUrl(){
  10. let url="http://localhost:8080/#";
  11. // let url="http://106.15.206.14:8085/#";
  12. return url;
  13. }
  14. export function getProjctName(){
  15. // let name="森语";
  16. let name="技能博物馆";
  17. return name;
  18. }