seimin 7 months ago
parent
commit
78f55f1603
2 changed files with 9 additions and 7 deletions
  1. 7 2
      http/http.js
  2. 2 5
      readme.md

+ 7 - 2
http/http.js

@@ -10,8 +10,13 @@ let pathname = location.pathname.split('/')[1]; //二级目录
10 10
 pathname = pathname ? '/' + pathname : '';
11 11
 let protocolName = document.location.protocol; //http协议
12 12
 let wsName = protocolName === 'http:' ? 'ws' : 'wss'; //ws协议
13
-// export const baseUrl = `${location.origin}${pathname}`;//宜昌二级目录
14
-export const baseUrl = `${location.origin}`;
13
+let url_temporary = '';
14
+if(pathname === '/app'){
15
+  url_temporary = `${location.origin}`;//无二级目录
16
+}else{
17
+  url_temporary = `${location.origin}${pathname}`;//二级目录
18
+}
19
+export const baseUrl = url_temporary;
15 20
 path = `${baseUrl}/service`;
16 21
 dsHost = location.hostname;
17 22
 // #endif

+ 2 - 5
readme.md

@@ -1,5 +1,2 @@
1
-# v2.2.0
2
-- 选择时间进行优化,例如无需年月日输入,默认情况下自动获取当前日期,在旁边增加“次日”勾选框,生成时间时增加一天;选择小时和分钟即可,分钟按照每半个小时进行选择;
3
-- 增加护士端工单列表筛选功能,使用下拉框形式,默认为执行中,其中可以选择执行中、待评价、全部;执行中包含状态:待抢单、待接单、待到达、待送达、执行中、定时预约;
4
-- 护士端移除检查信息列表
5
-- 增加护士端综合日志
1
+# 宜昌中心医院有二级目录,打包的时候需要修改配置
2
+- manifest.json文件需要修改h5.router.base,代码已注释