fmui-base 2.1.87 → 2.1.88
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 -1
- package/lib/process_list/processList.js +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -238,6 +238,9 @@ var ListItem = function (_React$Component) {
|
|
|
238
238
|
} else if (data.status == '4') {
|
|
239
239
|
comleteName = "取消";
|
|
240
240
|
checkIsNotComplete = false;
|
|
241
|
+
} else if (data.status == '5') {
|
|
242
|
+
comleteName = "结束(退回)";
|
|
243
|
+
checkIsNotComplete = false;
|
|
241
244
|
} else {
|
|
242
245
|
comleteName = data.nodeName;
|
|
243
246
|
}
|
|
@@ -255,6 +258,9 @@ var ListItem = function (_React$Component) {
|
|
|
255
258
|
} else if (data.status == '4') {
|
|
256
259
|
comleteName = "取消";
|
|
257
260
|
checkIsNotComplete = false;
|
|
261
|
+
} else if (data.status == '5') {
|
|
262
|
+
comleteName = "结束(退回)";
|
|
263
|
+
checkIsNotComplete = false;
|
|
258
264
|
} else {
|
|
259
265
|
comleteName = data.nodeName;
|
|
260
266
|
}
|