zhaomin 3 yıl önce
ebeveyn
işleme
f06d4b5530

+ 4 - 3
CallCenterWeb.UI/RMYYAPP/config/index.config.js

@@ -3,7 +3,8 @@ const CONFIG = {
3 3
     development: {
4 4
         assetsPath: '/static', // 静态资源路径
5 5
 				// baseUrl: 'http://192.168.8.10:8033/',
6
-				baseUrl: 'http://39.164.159.192:8000/', // 本地外网地址
6
+				baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
7
+				// baseUrl: 'http://39.164.159.192:8000/', // 本地外网地址
7 8
         hostUrl: '', // H5地址(前端运行地址)
8 9
         weixinAppId: '' // 微信公众号appid
9 10
 
@@ -12,8 +13,8 @@ const CONFIG = {
12 13
     production: {
13 14
         assetsPath: '/static', // 静态资源路径
14 15
 				// baseUrl: 'http://192.168.8.10:8033/',
15
-				baseUrl: 'http://39.164.159.192:8000/',
16
-				// baseUrl: 'http://117.159.24.43:8000/', // 本地外网地址
16
+				// baseUrl: 'http://39.164.159.192:8000/',
17
+				baseUrl: 'https://zyfb.zzrmyy.com/', // 本地外网地址
17 18
 				
18 19
         hostUrl: '', // H5地址(前端运行地址)
19 20
         weixinAppId: '' // 微信公众号appid

+ 1 - 1
CallCenterWeb.UI/RMYYAPP/pages/myTask/repairList/myRepairOrderList/myRepairOrderList.vue

@@ -249,7 +249,7 @@
249 249
 
250 250
 		.textState {
251 251
 			position: absolute;
252
-			right: -D5px;
252
+			right: -5px;
253 253
 			bottom: 0px;
254 254
 			font-size: 1rem;
255 255
 			background: #ffffff;

+ 1 - 0
CallCenterWeb.UI/RMYYAPP/utils/request/index.js

@@ -60,6 +60,7 @@ http.interceptor.response(
60 60
       // }
61 61
       
62 62
     }else{
63
+		
63 64
       switch (response.statusCode) {
64 65
       	case 200:
65 66
       		return response.data;

+ 3 - 1
CallCenterWeb.UI/RMYYAPP/utils/request/request.js

@@ -168,7 +168,8 @@ export default class Request {
168 168
 				responseType: _config.responseType,
169 169
 				// #endif
170 170
 				// #ifdef APP-PLUS
171
-				sslVerify: _config.sslVerify,
171
+				// sslVerify: _config.sslVerify,
172
+				sslVerify: false,
172 173
 				// #endif
173 174
 				complete: response => {
174 175
 					response.config = handleRe;
@@ -196,6 +197,7 @@ export default class Request {
196 197
 		return this.request({
197 198
 			url,
198 199
 			method: 'GET',
200
+			
199 201
 			...options
200 202
 		});
201 203
 	}