fmui-base 2.1.93 → 2.1.95
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/msg_list/msgList.js +7 -7
- package/lib/process_info/FlowChart.js +8 -3
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/msg_list/msgList.js
CHANGED
|
@@ -146,19 +146,19 @@ var ListItem = function (_React$Component) {
|
|
|
146
146
|
//projectPath = modules/mobileoffice
|
|
147
147
|
// 预算模块跳转特殊处理
|
|
148
148
|
if (module == 'bud_cost') {
|
|
149
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetcost/").split('?_')[0].split('/
|
|
149
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetcost/").split('?_')[0].split('/msglist/all')[0];
|
|
150
150
|
} else if (module == 'bud_project') {
|
|
151
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetproject/").split('?_')[0].split('/
|
|
151
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/budget/budgetproject/").split('?_')[0].split('/msglist/all')[0];
|
|
152
152
|
} else if (module == 'hoa_topic' || module == 'hoa_funds' || module == 'hoa_achievements') {
|
|
153
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/ky/ky/").split('?_')[0].split('/
|
|
153
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/ky/ky/").split('?_')[0].split('/msglist/all')[0];
|
|
154
154
|
} else if (module.indexOf("dj_") != '-1' || module.indexOf("jj_") != '-1' || module.indexOf("zdh_") != '-1' || module.indexOf("gh_") != '-1') {
|
|
155
|
-
fullUrl = fullUrl.split('?_')[0].split('/
|
|
155
|
+
fullUrl = fullUrl.split('?_')[0].split('/msglist/all')[0];
|
|
156
156
|
} else if (module.indexOf("hoa_") != '-1') {
|
|
157
157
|
var category = module.split("_")[0];
|
|
158
158
|
mobilePath = module.substring(module.indexOf("_") + 1);
|
|
159
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/" + category + "/" + mobilePath + "/").split('?_')[0].split('/
|
|
159
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/" + category + "/" + mobilePath + "/").split('?_')[0].split('/msglist/all')[0];
|
|
160
160
|
} else {
|
|
161
|
-
fullUrl = fullUrl.replace("/" + projectPath + "/", "/modules/" + mobilePath + "/").split('?_')[0].split('/
|
|
161
|
+
fullUrl = fullUrl.replace("/" + projectPath + "/", "/modules/" + mobilePath + "/").split('?_')[0].split('/msglist/all')[0];
|
|
162
162
|
}
|
|
163
163
|
//alert(fullUrl);
|
|
164
164
|
var url = "process/processDetails/" + taskId + "/" + param_formKey + "/" + param_businessKey + "/" + param_list_type + "/0/" + processInstanceId + "/" + module + "/" + loginUserId;
|
|
@@ -885,7 +885,7 @@ var PageHome = function (_React$Component2) {
|
|
|
885
885
|
var url = 'approval/transaction/' + this.state.activeTabIndex;
|
|
886
886
|
location.hash = url;
|
|
887
887
|
} else {
|
|
888
|
-
var url = '
|
|
888
|
+
var url = 'msglist/all/' + this.state.activeTabIndex;
|
|
889
889
|
location.hash = url;
|
|
890
890
|
}
|
|
891
891
|
searchVal = '';
|
|
@@ -169,13 +169,18 @@ var Page = function (_React$Component) {
|
|
|
169
169
|
{ className: 'recording-info-left' },
|
|
170
170
|
_react2.default.createElement(
|
|
171
171
|
'div',
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
{ className: 'recording-name' },
|
|
173
|
+
dealusername
|
|
174
|
+
),
|
|
175
|
+
_react2.default.createElement(
|
|
176
|
+
'div',
|
|
177
|
+
{ className: 'recording-org' },
|
|
178
|
+
dealuserorg
|
|
174
179
|
)
|
|
175
180
|
),
|
|
176
181
|
_react2.default.createElement(
|
|
177
182
|
'div',
|
|
178
|
-
{ className: 'recording-author' },
|
|
183
|
+
{ className: 'recording-author label label-primary' },
|
|
179
184
|
item.curactivityname
|
|
180
185
|
)
|
|
181
186
|
),
|