fmui-base 2.2.81 → 2.2.82

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.82: 流程提交推送到统一待办我的文件
6
7
  - 2.2.81: 流程办理下一环节是指定办理人未未匹配到人员时,提交后,提醒:“未找到办理人员,不允许提交”
7
8
  - 2.2.80: 流程扫码发起后关闭表单
8
9
  - 2.2.79: 整型浮点型为空时不校验
package/lib/db/db.js CHANGED
@@ -873,6 +873,16 @@ context.create('FlowModuleAPI', {
873
873
  /* header:{'content-Type':'application/x-www-form-urlencoded'},*/
874
874
  willFetch: function willFetch() {}
875
875
  },
876
+ getSignature: {
877
+ mockUrl: 'query/getSignature.json',
878
+ url: _variables2.default.URLS.getSignature,
879
+ method: 'GET',
880
+ header: {
881
+ Authorization: 'Bearer ' + getLoginUserInfo().token
882
+ },
883
+ /* header:{'content-Type':'application/x-www-form-urlencoded'},*/
884
+ willFetch: function willFetch() {}
885
+ },
876
886
  getAllModuleList: {
877
887
  mockUrl: 'query/getAllModuleList.json',
878
888
  url: _variables2.default.URLS.getAllModuleList,
@@ -97,6 +97,7 @@ exports.default = {
97
97
  batchValidateForm: approveUrlPrefix + "batchValidateForm" + '?', //批量校验表单必填
98
98
  completeTaskBatch: approveUrlPrefix + "completeTaskBatch" + '?', //批量办理
99
99
  readCompleteTaskBatch: approveUrlPrefix + "readCompleteTaskBatch" + '?', //批量已阅
100
+ getSignature: approveUrlPrefix + "getSignature" + '?', //获取签章
100
101
  getPersonalPhrase: approveUrlPrefix + "getPersonalPhrase" + '?', //获取常用语
101
102
  savePersonalPhrase: approveUrlPrefix + "savePersonalPhrase" + '?', //保存常用语
102
103
  deletePhrase: approveUrlPrefix + "delPersonalPhrase" + '?', //删除常用语
@@ -2424,7 +2424,8 @@ var PageHome = function (_React$Component) {
2424
2424
  module: _this2.state.module,
2425
2425
  lock: _this2.state.lock,
2426
2426
  reminderContent: _this2.state.reminderContent,
2427
- processInstanceId: _this2.state.processInstanceId
2427
+ processInstanceId: _this2.state.processInstanceId,
2428
+ permissionCode: _this2.state.permissionCode
2428
2429
  };
2429
2430
  var dealActionName = "";
2430
2431
  if (_this2.state.isStart == true) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmui-base",
3
- "version": "2.2.81",
3
+ "version": "2.2.82",
4
4
  "title": "fmui-base",
5
5
  "description": "fmui移动端组件",
6
6
  "main": "lib/index.js",