修改接口地址
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -9,3 +9,4 @@
|
|||||||
**/node_modules/**
|
**/node_modules/**
|
||||||
hs-im-server/.vs/
|
hs-im-server/.vs/
|
||||||
hs-im-server/hs-im-server.7z
|
hs-im-server/hs-im-server.7z
|
||||||
|
im-uniapp/
|
||||||
|
|||||||
@@ -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_MAP_AUTHKEY='30efbafe-d218-4d77-8200-0207246924be'
|
||||||
VUE_APP_API="https://172.16.3.19/znzq"
|
VUE_APP_API="https://172.16.3.18/znzq"
|
||||||
VUE_APP_STATIC_FILE_Prefix='//172.16.3.19/static_file'
|
VUE_APP_STATIC_FILE_Prefix='//172.16.3.18/static_file'
|
||||||
VUE_APP_SRS_URL='webrtc://172.16.3.19/'
|
VUE_APP_SRS_URL='webrtc://172.16.3.18/'
|
||||||
VUE_APP_IM_API_URL='https://172.16.3.19/im_api/v1'
|
VUE_APP_IM_API_URL='https://172.16.3.18/im_api/v1'
|
||||||
|
|||||||
@@ -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_MAP_AUTHKEY='30efbafe-d218-4d77-8200-0207246924be'
|
||||||
VUE_APP_API="https://172.16.3.19/znzq"
|
VUE_APP_API="https://172.16.3.18/znzq"
|
||||||
VUE_APP_STATIC_FILE_Prefix='//172.16.3.19/static_file'
|
VUE_APP_STATIC_FILE_Prefix='//172.16.3.18/static_file'
|
||||||
VUE_APP_SRS_URL='webrtc://172.16.3.19/'
|
VUE_APP_SRS_URL='webrtc://172.16.3.18/'
|
||||||
VUE_APP_IM_API_URL='https://172.16.3.19/im_api/v1'
|
VUE_APP_IM_API_URL='https://172.16.3.18/im_api/v1'
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ const spinner = ora(chalk.green('正在发布到服务器...'));
|
|||||||
spinner.start();
|
spinner.start();
|
||||||
|
|
||||||
client.scp('./dist/', { // 本地打包文件的位置
|
client.scp('./dist/', { // 本地打包文件的位置
|
||||||
"host": '172.16.3.19', // IP地址
|
"host": '172.16.3.18', // IP地址
|
||||||
"port": '22', // 服务器端口
|
"port": '22', // 服务器端口
|
||||||
"username": 'root', // 用户名
|
"username": 'root', // 用户名
|
||||||
"password": 'Huawei@123', // 密码
|
"password": 'Huawei@123', // 密码
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ function SrsRtcPublisherAsync() {
|
|||||||
|
|
||||||
self.turn = {
|
self.turn = {
|
||||||
iceServers: [{
|
iceServers: [{
|
||||||
urls: 'turns:172.16.3.19:3478', 'credential': 'huashiai',
|
urls: 'turns:172.16.3.18:3478', 'credential': 'huashiai',
|
||||||
'username': 'huashiai'
|
'username': 'huashiai'
|
||||||
}]
|
}]
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -392,7 +392,7 @@ export default {
|
|||||||
planningPathFoot() {
|
planningPathFoot() {
|
||||||
const startPoint = ol.proj.transform(this.navigationStartPoint, 'EPSG:4326', 'EPSG:3857');
|
const startPoint = ol.proj.transform(this.navigationStartPoint, 'EPSG:4326', 'EPSG:3857');
|
||||||
const endPoint = ol.proj.transform(this.navigationEndPoint, '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[0] + ","
|
||||||
_url = _url + this.navigationStartPoint[1] + ";"
|
_url = _url + this.navigationStartPoint[1] + ";"
|
||||||
_url = _url + this.navigationEndPoint[0] + ","
|
_url = _url + this.navigationEndPoint[0] + ","
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ public class FileController {
|
|||||||
log.info("====================Upload==================");
|
log.info("====================Upload==================");
|
||||||
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);
|
return ResponseVO.successResponse(upload);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user