fmui-base 2.2.62 → 2.2.63

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,6 +3,7 @@
3
3
  ---npm publish
4
4
 
5
5
  ## 更新日志
6
+ - 2.2.63: 再次发起回调参数
6
7
  - 2.2.62: 单选和多选支持选项后允许填空
7
8
  - 2.2.61: 我的流程支持再次发起
8
9
  - 2.2.60: 数据表字段关联值支持关联日期字段带出星期几,数据表字段关联值可以关联其他字段,进行赋值,批量办理支持CA批示意见的加签和验签
@@ -4970,8 +4970,8 @@ var PageHome = function (_React$Component) {
4970
4970
 
4971
4971
  //操作回调
4972
4972
  var type = 6;
4973
- if (t.state.isStart && t.state.dataId == '') {
4974
- //是不是起始节点
4973
+ if (t.state.isStart && (t.state.dataId == '' || t.state.isSub == '2')) {
4974
+ //是不是起始节点 或再次发起
4975
4975
  type = 4;
4976
4976
  }
4977
4977
  if (t.state.isEnd) {
@@ -4979,7 +4979,7 @@ var PageHome = function (_React$Component) {
4979
4979
  type = 1;
4980
4980
  }
4981
4981
  var dataId = t.state.dataId;
4982
- if (dataId == "") {
4982
+ if (dataId == "" || t.state.isSub == '2') {
4983
4983
  dataId = content.dataId;
4984
4984
  t.setState({ dataId: dataId });
4985
4985
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.2.62",
3
+ "version": "2.2.63",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",