1234567891011 |
- import storage from "./common/storage";
- export default {
- web_name: "智小狸",
- // uni_app_web_api_url: "http://10.12.22.137:8080/api", //后端统一接口路径
- // web_socket_url:'ws://10.12.22.137:8080/ws/',
- // uni_app_web_api_url: "http://192.168.3.177:8080/api",
- // web_socket_url:'ws://192.168.3.177:8080/ws/',
- uni_app_web_api_url:storage.getJson("addressIp")?'http://'+storage.getJson("addressIp")+':8080/api':'',
- web_socket_url:storage.getJson("addressIp")?'ws://'+storage.getJson("addressIp")+':8080/ws/':'',
- debug: true
- }
|