fmui-base 2.1.16 → 2.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/lib/process_list/processList.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -133,6 +133,8 @@ var ListItem = function (_React$Component) {
|
|
|
133
133
|
} else {
|
|
134
134
|
var fullUrl = window.location.href;
|
|
135
135
|
fullUrl = fullUrl.replace("clientType", "");
|
|
136
|
+
fullUrl = fullUrl.replace("thirdMenuType", "");
|
|
137
|
+
fullUrl = fullUrl.replace("clientAppType", "");
|
|
136
138
|
var mobilePath = module;
|
|
137
139
|
//projectPath = modules/mobileoffice
|
|
138
140
|
// 预算模块跳转特殊处理
|
|
@@ -140,7 +142,7 @@ var ListItem = function (_React$Component) {
|
|
|
140
142
|
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetcost/").split('?_')[0].split('/approval/all')[0];
|
|
141
143
|
} else if (module == 'bud_project') {
|
|
142
144
|
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetproject/").split('?_')[0].split('/approval/all')[0];
|
|
143
|
-
} else if (module.indexOf("hoa_") != '-1') {
|
|
145
|
+
} else if (module.indexOf("hoa_") != '-1' || module.indexOf("jj_") != '-1' || module.indexOf("dj_") != '-1') {
|
|
144
146
|
var category = module.split("_")[0];
|
|
145
147
|
mobilePath = module.substring(module.indexOf("_") + 1);
|
|
146
148
|
fullUrl = fullUrl.replace("/" + projectPath + "/", "/" + category + "/" + mobilePath + "/").split('?_')[0].split('/approval/all')[0];
|