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 CHANGED
@@ -3,7 +3,8 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
- - 2.1.86:流程办理支持选择办理缓急
6
+ - 2.1.88:流程增加结束(退回)状态
7
+ - 2.1.87:流程办理支持选择办理缓急
7
8
  - 2.1.86:公众号隐藏附件下载按钮
8
9
  - 2.1.85:子流程同步主流程数据时,宏值不赋值
9
10
  - 2.1.84:子表扩展方法增加扩展参数
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.1.87",
3
+ "version": "2.1.88",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",