1234567891011121314151617181920 |
- export function getEditorJumpUrl () {
- // 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 = 'https://172.18.91.36:8082' // 博物馆OA
- return url
- }
- export function getProjctManageUrl(){
- let url="http://localhost:8080/#";
- // let url="http://106.15.206.14:8085/#";
- return url;
- }
- export function getProjctName(){
- // let name="森语";
- let name="技能博物馆";
- return name;
- }
|