fmui-base 2.2.73 → 2.2.74
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 +1 -0
- package/lib/process_list/processList.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -322,21 +322,21 @@ var ListItem = function (_React$Component) {
|
|
|
322
322
|
//projectPath = modules/mobileoffice
|
|
323
323
|
// 预算模块跳转特殊处理
|
|
324
324
|
if (module == 'bud_cost') {
|
|
325
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetcost/").split('?_')[0].split('
|
|
325
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetcost/").split('?_')[0].split('#/')[0];
|
|
326
326
|
} else if (module == 'bud_project') {
|
|
327
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetproject/").split('?_')[0].split('
|
|
327
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetproject/").split('?_')[0].split('#/')[0];
|
|
328
328
|
} else if (module == 'hoa_topic' || module == 'hoa_funds' || module == 'hoa_achievements') {
|
|
329
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/ky/ky/").split('?_')[0].split('
|
|
329
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/ky/ky/").split('?_')[0].split('#/')[0];
|
|
330
330
|
} else if (module == 'contract_sign' || module == 'contract_exmanage') {
|
|
331
331
|
fullUrl = fullUrl.replace("/" + projectPath + "/", "/contract/contract/").split('?_')[0].split('#/')[0];
|
|
332
332
|
} else if (module.indexOf("dj_") != '-1' || module.indexOf("jj_") != '-1' || module.indexOf("zdh_") != '-1' || module.indexOf("gh_") != '-1') {
|
|
333
|
-
fullUrl = fullUrl.split('?_')[0].split('
|
|
333
|
+
fullUrl = fullUrl.split('?_')[0].split('#/')[0];
|
|
334
334
|
} else if (module.indexOf("hoa_") != '-1') {
|
|
335
335
|
var category = module.split("_")[0];
|
|
336
336
|
mobilePath = module.substring(module.indexOf("_") + 1);
|
|
337
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/" + category + "/" + mobilePath + "/").split('?_')[0].split('
|
|
337
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/" + category + "/" + mobilePath + "/").split('?_')[0].split('#/')[0];
|
|
338
338
|
} else {
|
|
339
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/modules/" + mobilePath + "/").split('?_')[0].split('
|
|
339
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/modules/" + mobilePath + "/").split('?_')[0].split('#/')[0];
|
|
340
340
|
}
|
|
341
341
|
var _url3 = "process/processDetails/" + taskId + "/" + param_formKey + "/" + param_businessKey + "/" + param_list_type + "/0/" + processInstanceId + "/" + module + "/" + loginUserId;
|
|
342
342
|
_url3 = fullUrl + '#/' + _url3;
|