修改接口地址

This commit is contained in:
2023-11-30 22:50:02 +08:00
parent 88474f8813
commit 8a40bbc5e1
7 changed files with 15 additions and 14 deletions

1
.gitignore vendored
View File

@@ -9,3 +9,4 @@
**/node_modules/**
hs-im-server/.vs/
hs-im-server/hs-im-server.7z
im-uniapp/

View File

@@ -1,6 +1,6 @@
VUE_APP_MAP_URL='https://172.16.3.19/geoserver'
VUE_APP_MAP_URL='https://172.16.3.18/geoserver'
VUE_APP_MAP_AUTHKEY='30efbafe-d218-4d77-8200-0207246924be'
VUE_APP_API="https://172.16.3.19/znzq"
VUE_APP_STATIC_FILE_Prefix='//172.16.3.19/static_file'
VUE_APP_SRS_URL='webrtc://172.16.3.19/'
VUE_APP_IM_API_URL='https://172.16.3.19/im_api/v1'
VUE_APP_API="https://172.16.3.18/znzq"
VUE_APP_STATIC_FILE_Prefix='//172.16.3.18/static_file'
VUE_APP_SRS_URL='webrtc://172.16.3.18/'
VUE_APP_IM_API_URL='https://172.16.3.18/im_api/v1'

View File

@@ -1,6 +1,6 @@
VUE_APP_MAP_URL='https://172.16.3.19/geoserver'
VUE_APP_MAP_URL='https://172.16.3.18/geoserver'
VUE_APP_MAP_AUTHKEY='30efbafe-d218-4d77-8200-0207246924be'
VUE_APP_API="https://172.16.3.19/znzq"
VUE_APP_STATIC_FILE_Prefix='//172.16.3.19/static_file'
VUE_APP_SRS_URL='webrtc://172.16.3.19/'
VUE_APP_IM_API_URL='https://172.16.3.19/im_api/v1'
VUE_APP_API="https://172.16.3.18/znzq"
VUE_APP_STATIC_FILE_Prefix='//172.16.3.18/static_file'
VUE_APP_SRS_URL='webrtc://172.16.3.18/'
VUE_APP_IM_API_URL='https://172.16.3.18/im_api/v1'

View File

@@ -5,7 +5,7 @@ const spinner = ora(chalk.green('正在发布到服务器...'));
spinner.start();
client.scp('./dist/', { // 本地打包文件的位置
"host": '172.16.3.19', // IP地址
"host": '172.16.3.18', // IP地址
"port": '22', // 服务器端口
"username": 'root', // 用户名
"password": 'Huawei@123', // 密码

View File

@@ -36,7 +36,7 @@ function SrsRtcPublisherAsync() {
self.turn = {
iceServers: [{
urls: 'turns:172.16.3.19:3478', 'credential': 'huashiai',
urls: 'turns:172.16.3.18:3478', 'credential': 'huashiai',
'username': 'huashiai'
}]
};

View File

@@ -392,7 +392,7 @@ export default {
planningPathFoot() {
const startPoint = ol.proj.transform(this.navigationStartPoint, 'EPSG:4326', 'EPSG:3857');
const endPoint = ol.proj.transform(this.navigationEndPoint, 'EPSG:4326', 'EPSG:3857');
let _url = "https://172.16.3.19/route/v1/driving/"
let _url = "https://172.16.3.18/route/v1/driving/"
_url = _url + this.navigationStartPoint[0] + ","
_url = _url + this.navigationStartPoint[1] + ";"
_url = _url + this.navigationEndPoint[0] + ","

View File

@@ -35,7 +35,7 @@ public class FileController {
log.info("====================Upload==================");
log.info("====================Upload==================");
upload = upload.replaceAll("http://172.16.2.1:9000","https://172.16.2.3:19443");
upload = upload.replaceAll("http://172.16.2.1:9000","https://172.16.3.18");
return ResponseVO.successResponse(upload);
}