eoss-mobiles 0.2.29 → 0.2.30

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.
Files changed (50) hide show
  1. package/lib/action-sheet.js +2 -2
  2. package/lib/calendar.js +2 -2
  3. package/lib/cascader.js +2 -2
  4. package/lib/checkbox.js +57 -32
  5. package/lib/config/api.js +8 -2
  6. package/lib/count-down.js +2 -2
  7. package/lib/eoss-mobile.common.js +1370 -131
  8. package/lib/esign.js +2 -2
  9. package/lib/flow-btn.js +2702 -0
  10. package/lib/flow-list.js +2613 -0
  11. package/lib/flow.js +62 -52
  12. package/lib/form.js +2 -2
  13. package/lib/image-preview.js +2 -2
  14. package/lib/image.js +2 -2
  15. package/lib/index.js +1 -1
  16. package/lib/notice-bar.js +2 -2
  17. package/lib/pagination.js +2 -2
  18. package/lib/picker.js +37 -27
  19. package/lib/popover.js +2 -2
  20. package/lib/popup.js +2 -2
  21. package/lib/pull-refresh.js +2 -2
  22. package/lib/radio.js +58 -35
  23. package/lib/rate.js +2 -2
  24. package/lib/retrial-auth.js +41 -31
  25. package/lib/selector.js +56 -46
  26. package/lib/skeleton.js +2 -2
  27. package/lib/stepper.js +2 -2
  28. package/lib/swipe.js +2 -2
  29. package/lib/table-column.js +37 -27
  30. package/lib/table.js +3 -2
  31. package/lib/theme-chalk/flow-btn.css +1 -0
  32. package/lib/theme-chalk/flow-list.css +1 -0
  33. package/lib/theme-chalk/index.css +1 -1
  34. package/lib/utils/util.js +1 -0
  35. package/package.json +1 -1
  36. package/packages/checkbox/src/main.vue +8 -1
  37. package/packages/flow-btn/index.js +5 -0
  38. package/packages/flow-btn/src/main.vue +475 -0
  39. package/packages/flow-list/index.js +5 -0
  40. package/packages/flow-list/src/main.vue +225 -0
  41. package/packages/radio/src/main.vue +7 -5
  42. package/packages/theme-chalk/lib/flow-btn.css +1 -0
  43. package/packages/theme-chalk/lib/flow-list.css +1 -0
  44. package/packages/theme-chalk/lib/index.css +1 -1
  45. package/packages/theme-chalk/src/flow-btn.scss +94 -0
  46. package/packages/theme-chalk/src/flow-list.scss +122 -0
  47. package/packages/theme-chalk/src/index.scss +2 -0
  48. package/src/config/api.js +10 -2
  49. package/src/index.js +7 -1
  50. package/src/utils/util.js +1 -0
package/lib/flow.js CHANGED
@@ -659,6 +659,7 @@ var formatDate = function formatDate(date, fmt) {
659
659
  'q+': quarter[Math.ceil((obj.getMonth() + 1) / 3) - 1], // 季度
660
660
  S: obj.getMilliseconds() // 毫秒
661
661
  };
662
+ console.log(o, 'o');
662
663
  if (/(y+)/.test(fmt)) {
663
664
  fmt = fmt.replace(RegExp.$1, (obj.getFullYear() + '').substr(4 - RegExp.$1.length));
664
665
  }
@@ -1581,39 +1582,42 @@ function normalizeComponent(
1581
1582
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1582
1583
 
1583
1584
  "use strict";
1584
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return initRetrialAuth; });
1585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return getRetrialAuthCode; });
1585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return initRetrialAuth; });
1586
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return getRetrialAuthCode; });
1586
1587
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return codeRetrialAuth; });
1587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return selectObject; });
1588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return selectObject; });
1588
1589
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return findSysCode; });
1589
1590
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return commonOpion; });
1590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return getHandleInfoHtml; });
1591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return getNodeInfoHtml; });
1592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return taskHandleHtml; });
1593
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return taskHandleHtmlImg; });
1594
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return registerNew; });
1595
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return getNodeInfo; });
1596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return toStartFlow; });
1597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return taskRejectHtml; });
1598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return toTaskRejectHtml; });
1599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return handleTaskRead; });
1600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return taskReadHtml; });
1601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return toStartTaskRead; });
1602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return toStartTaskReadHtml; });
1603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return toTaskTransferIndex; });
1591
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return getHandleInfoHtml; });
1592
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return getNodeInfoHtml; });
1593
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return taskHandleHtml; });
1594
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return taskHandleHtmlImg; });
1595
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return registerNew; });
1596
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return getNodeInfo; });
1597
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return toStartFlow; });
1598
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return taskRejectHtml; });
1599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return toTaskRejectHtml; });
1600
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return handleTaskRead; });
1601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return taskReadHtml; });
1602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return toStartTaskRead; });
1603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return toStartTaskReadHtml; });
1604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return toTaskTransferIndex; });
1604
1605
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return findSysCodes; });
1605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return getNotificationMsg; });
1606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return toTaskUnionExamine; });
1607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return taskUnionExamine; });
1608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return toTaskTakeAdvice; });
1609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return taskTakeAdvice; });
1610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return toTaskStartDraft; });
1611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return taskStartDraft; });
1612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return toTaskUnionSeal; });
1613
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return taskUnionSeal; });
1606
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return getNotificationMsg; });
1607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return toTaskUnionExamine; });
1608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return taskUnionExamine; });
1609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return toTaskTakeAdvice; });
1610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return taskTakeAdvice; });
1611
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return toTaskStartDraft; });
1612
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return taskStartDraft; });
1613
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return toTaskUnionSeal; });
1614
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return taskUnionSeal; });
1614
1615
  /* unused harmony export toTwoOfficesDispatch */
1615
1616
  /* unused harmony export twoOfficesDispatch */
1616
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return isCanStartSubFlow; });
1617
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return isCanStartSubFlow; });
1618
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return pendedhistoryList; });
1619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return getHandleButtonHtml; });
1620
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return getSysParam; });
1617
1621
  /* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
1618
1622
 
1619
1623
  var activiti = '/bpm';
@@ -1697,6 +1701,12 @@ var toTwoOfficesDispatch = activiti + mecp + '/bpmBackend/toTwoOfficesDispatch';
1697
1701
  var twoOfficesDispatch = activiti + '/task/taskHandle/twoOfficesDispatch.dhtml';
1698
1702
  // 是否允许启动子流程(必经节点)
1699
1703
  var isCanStartSubFlow = activiti + '/task/taskHandle/isCanStartSubFlow.dhtml';
1704
+ // 流程列表
1705
+ var pendedhistoryList = '/api/v1/mecpIpending/pendedhistoryList.json';
1706
+ // 获取流程按钮
1707
+ var getHandleButtonHtml = '/api/mecp/v1/mecpItask/getHandleButtonHtml.json';
1708
+ // 获取系统参数
1709
+ var getSysParam = '/api/v1/mecpSys/getSysParam.json';
1700
1710
 
1701
1711
  /***/ }),
1702
1712
  /* 3 */
@@ -3342,7 +3352,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3342
3352
  });
3343
3353
  var _that = this;
3344
3354
  Object(http["a" /* default */])({
3345
- url: _that.apiBaseUrl ? _that.apiBaseUrl + api["m" /* registerNew */] : api["m" /* registerNew */],
3355
+ url: _that.apiBaseUrl ? _that.apiBaseUrl + api["p" /* registerNew */] : api["p" /* registerNew */],
3346
3356
  type: 'post',
3347
3357
  params: formData,
3348
3358
  format: false
@@ -3450,7 +3460,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3450
3460
  var that = this;
3451
3461
  return new Promise(function (resolve, reiect) {
3452
3462
  Object(http["a" /* default */])({
3453
- url: that.apiBaseUrl ? that.apiBaseUrl + api["w" /* toStartFlow */] : api["w" /* toStartFlow */],
3463
+ url: that.apiBaseUrl ? that.apiBaseUrl + api["z" /* toStartFlow */] : api["z" /* toStartFlow */],
3454
3464
  params: _extends({}, res, { userId: that.userId })
3455
3465
  }).then(function (res) {
3456
3466
  if (res.rCode == 0) {
@@ -3505,7 +3515,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3505
3515
 
3506
3516
  var _that = this;
3507
3517
  Object(http["a" /* default */])({
3508
- url: _that.apiBaseUrl ? _that.apiBaseUrl + api["f" /* getNodeInfo */] : api["f" /* getNodeInfo */],
3518
+ url: _that.apiBaseUrl ? _that.apiBaseUrl + api["g" /* getNodeInfo */] : api["g" /* getNodeInfo */],
3509
3519
  params: {
3510
3520
  processDefinitionId: this.flowObj.processDefinitionId,
3511
3521
  nodeId: res,
@@ -4830,7 +4840,7 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
4830
4840
  });
4831
4841
  var _that = this;
4832
4842
  Object(http["a" /* default */])({
4833
- url: _that.baseUrl ? _that.baseUrl + api["r" /* taskRejectHtml */] : api["r" /* taskRejectHtml */],
4843
+ url: _that.baseUrl ? _that.baseUrl + api["u" /* taskRejectHtml */] : api["u" /* taskRejectHtml */],
4834
4844
  type: 'post',
4835
4845
  params: formData,
4836
4846
  format: false
@@ -4863,7 +4873,7 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
4863
4873
  duration: 0
4864
4874
  });
4865
4875
  Object(http["a" /* default */])({
4866
- url: _that.baseUrl ? _that.baseUrl + api["z" /* toTaskRejectHtml */] : api["z" /* toTaskRejectHtml */],
4876
+ url: _that.baseUrl ? _that.baseUrl + api["C" /* toTaskRejectHtml */] : api["C" /* toTaskRejectHtml */],
4867
4877
  params: {
4868
4878
  pendingId: this.pendingId,
4869
4879
  isSinglePage: false,
@@ -4957,7 +4967,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
4957
4967
  duration: 0
4958
4968
  });
4959
4969
  Object(http["a" /* default */])({
4960
- url: _that.baseUrl ? _that.baseUrl + api["z" /* toTaskRejectHtml */] : api["z" /* toTaskRejectHtml */],
4970
+ url: _that.baseUrl ? _that.baseUrl + api["C" /* toTaskRejectHtml */] : api["C" /* toTaskRejectHtml */],
4961
4971
  params: {
4962
4972
  appid: this.appid,
4963
4973
  pendingId: this.pendingId,
@@ -5002,7 +5012,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
5002
5012
  console.log('获取流程');
5003
5013
  return new Promise(function (resolve, reiect) {
5004
5014
  Object(http["a" /* default */])({
5005
- url: that.baseUrl ? that.baseUrl + api["e" /* getHandleInfoHtml */] : api["e" /* getHandleInfoHtml */],
5015
+ url: that.baseUrl ? that.baseUrl + api["f" /* getHandleInfoHtml */] : api["f" /* getHandleInfoHtml */],
5006
5016
  params: {
5007
5017
  pendingId: that.pendingId,
5008
5018
  identityIds: that.identityIds
@@ -5098,7 +5108,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
5098
5108
 
5099
5109
  var _that = this;
5100
5110
  var params = {
5101
- url: _that.baseUrl ? _that.baseUrl + api["j" /* handleTaskRead */] : api["j" /* handleTaskRead */],
5111
+ url: _that.baseUrl ? _that.baseUrl + api["l" /* handleTaskRead */] : api["l" /* handleTaskRead */],
5102
5112
  params: {
5103
5113
  pendingId: this.pendingId,
5104
5114
  businessId: this.businessId,
@@ -5144,7 +5154,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
5144
5154
  ids = ids + r.showid + (i === _this3.nextReadUserSelectList.length - 1 ? '' : ',');
5145
5155
  });
5146
5156
  var params = {
5147
- url: _that.baseUrl ? _that.baseUrl + api["q" /* taskReadHtml */] : api["q" /* taskReadHtml */],
5157
+ url: _that.baseUrl ? _that.baseUrl + api["t" /* taskReadHtml */] : api["t" /* taskReadHtml */],
5148
5158
  params: {
5149
5159
  pendingId: this.pendingId,
5150
5160
  appId: this.appid,
@@ -5183,7 +5193,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
5183
5193
 
5184
5194
  var _that = this;
5185
5195
  Object(http["a" /* default */])({
5186
- url: _that.baseUrl ? _that.baseUrl + api["y" /* toStartTaskReadHtml */] : api["y" /* toStartTaskReadHtml */],
5196
+ url: _that.baseUrl ? _that.baseUrl + api["B" /* toStartTaskReadHtml */] : api["B" /* toStartTaskReadHtml */],
5187
5197
  params: {
5188
5198
  appId: this.appid,
5189
5199
  pendingId: this.pendingId,
@@ -5866,7 +5876,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
5866
5876
  duration: 0
5867
5877
  });
5868
5878
  Object(http["a" /* default */])({
5869
- url: this.baseUrl ? this.baseUrl + api["q" /* taskReadHtml */] : api["q" /* taskReadHtml */],
5879
+ url: this.baseUrl ? this.baseUrl + api["t" /* taskReadHtml */] : api["t" /* taskReadHtml */],
5870
5880
  headers: {
5871
5881
  Accept: 'application/json,text/plain'
5872
5882
  },
@@ -6005,7 +6015,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
6005
6015
  }
6006
6016
  }
6007
6017
  Object(http["a" /* default */])({
6008
- url: _that.baseUrl ? _that.baseUrl + (_that.form.isImageOpinion == 1 ? api["p" /* taskHandleHtmlImg */] : api["o" /* taskHandleHtml */]) : _that.form.isImageOpinion == 1 ? api["p" /* taskHandleHtmlImg */] : api["o" /* taskHandleHtml */],
6018
+ url: _that.baseUrl ? _that.baseUrl + (_that.form.isImageOpinion == 1 ? api["s" /* taskHandleHtmlImg */] : api["r" /* taskHandleHtml */]) : _that.form.isImageOpinion == 1 ? api["s" /* taskHandleHtmlImg */] : api["r" /* taskHandleHtml */],
6009
6019
  type: 'post',
6010
6020
  params: formData,
6011
6021
  format: false
@@ -6231,7 +6241,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
6231
6241
  var that = this;
6232
6242
  return new Promise(function (resolve, reiect) {
6233
6243
  Object(http["a" /* default */])({
6234
- url: that.baseUrl ? that.baseUrl + api["e" /* getHandleInfoHtml */] : api["e" /* getHandleInfoHtml */],
6244
+ url: that.baseUrl ? that.baseUrl + api["f" /* getHandleInfoHtml */] : api["f" /* getHandleInfoHtml */],
6235
6245
  params: {
6236
6246
  pendingId: that.pendingId,
6237
6247
  userId: that.userId
@@ -6398,7 +6408,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
6398
6408
  var _this5 = this;
6399
6409
 
6400
6410
  Object(http["a" /* default */])({
6401
- url: this.baseUrl ? this.baseUrl + api["y" /* toStartTaskReadHtml */] : api["y" /* toStartTaskReadHtml */],
6411
+ url: this.baseUrl ? this.baseUrl + api["B" /* toStartTaskReadHtml */] : api["B" /* toStartTaskReadHtml */],
6402
6412
  params: { pendingId: this.pendingId, userId: this.userId }
6403
6413
  }).then(function (res) {
6404
6414
  var status = res.status,
@@ -6431,7 +6441,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
6431
6441
 
6432
6442
  var _that = this;
6433
6443
  Object(http["a" /* default */])({
6434
- url: _that.baseUrl ? _that.baseUrl + api["g" /* getNodeInfoHtml */] : api["g" /* getNodeInfoHtml */],
6444
+ url: _that.baseUrl ? _that.baseUrl + api["h" /* getNodeInfoHtml */] : api["h" /* getNodeInfoHtml */],
6435
6445
  params: {
6436
6446
  processDefinitionId: this.processObj.taskExamine.processDefinitionId,
6437
6447
  nextNodeId: res,
@@ -6982,7 +6992,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
6982
6992
  taskExamine = this.taskExamine;
6983
6993
 
6984
6994
  var params = {
6985
- url: this.baseUrl ? this.baseUrl + api["C" /* toTaskTransferIndex */] : api["C" /* toTaskTransferIndex */],
6995
+ url: this.baseUrl ? this.baseUrl + api["F" /* toTaskTransferIndex */] : api["F" /* toTaskTransferIndex */],
6986
6996
  params: {
6987
6997
  opinion: opinion,
6988
6998
  pendingId: pendingId,
@@ -7058,7 +7068,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
7058
7068
  if (_that.newType != 'taskReadAndEnd') delete params.taskAction;
7059
7069
 
7060
7070
  Object(http["a" /* default */])({
7061
- url: _that.baseUrl ? _that.baseUrl + api["x" /* toStartTaskRead */] : api["x" /* toStartTaskRead */],
7071
+ url: _that.baseUrl ? _that.baseUrl + api["A" /* toStartTaskRead */] : api["A" /* toStartTaskRead */],
7062
7072
  params: params
7063
7073
  }).then(function (res) {
7064
7074
  _that.$toast.clear();
@@ -7100,7 +7110,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
7100
7110
 
7101
7111
  var _that = this;
7102
7112
  var params = {
7103
- url: _that.apiBaseUrl ? _that.apiBaseUrl + api["j" /* handleTaskRead */] : api["j" /* handleTaskRead */],
7113
+ url: _that.apiBaseUrl ? _that.apiBaseUrl + api["l" /* handleTaskRead */] : api["l" /* handleTaskRead */],
7104
7114
  params: {
7105
7115
  pendingId: this.pendingId,
7106
7116
  businessId: this.businessId,
@@ -7140,7 +7150,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
7140
7150
  var _this5 = this;
7141
7151
 
7142
7152
  Object(http["a" /* default */])({
7143
- url: this.baseUrl ? this.baseUrl + api["e" /* getHandleInfoHtml */] : api["e" /* getHandleInfoHtml */],
7153
+ url: this.baseUrl ? this.baseUrl + api["f" /* getHandleInfoHtml */] : api["f" /* getHandleInfoHtml */],
7144
7154
  params: { pendingId: this.pendingId, userId: this.userId }
7145
7155
  }).then(function (res) {
7146
7156
  var status = res.status,
@@ -7184,7 +7194,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
7184
7194
  processDefinitionId = _taskExamine.processDefinitionId;
7185
7195
 
7186
7196
  var params = {
7187
- url: _that.baseUrl ? _that.baseUrl + api["q" /* taskReadHtml */] : api["q" /* taskReadHtml */],
7197
+ url: _that.baseUrl ? _that.baseUrl + api["t" /* taskReadHtml */] : api["t" /* taskReadHtml */],
7188
7198
  type: 'post',
7189
7199
  params: TaskReadvue_type_script_lang_js_extends({}, this.form, {
7190
7200
  pendingId: this.pendingId,
@@ -7598,7 +7608,7 @@ taskUnionExaminevue_type_template_id_79caae4c_render._withStripped = true
7598
7608
  var _this = this;
7599
7609
 
7600
7610
  var params = {
7601
- url: api["l" /* isCanStartSubFlow */],
7611
+ url: api["n" /* isCanStartSubFlow */],
7602
7612
  params: {
7603
7613
  appId: this.appId,
7604
7614
  inevitableNode: this.inevitableNode,
@@ -7627,7 +7637,7 @@ taskUnionExaminevue_type_template_id_79caae4c_render._withStripped = true
7627
7637
  pendingId: this.pendingId,
7628
7638
  userId: this.userId
7629
7639
  };
7630
- Object(http["a" /* default */])({ url: api["h" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
7640
+ Object(http["a" /* default */])({ url: api["i" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
7631
7641
  if (res.status === 'success') {
7632
7642
  _this2.infoList.noticeInfo = res.message;
7633
7643
  }
@@ -7719,7 +7729,7 @@ taskUnionExaminevue_type_template_id_79caae4c_render._withStripped = true
7719
7729
  var _this5 = this;
7720
7730
 
7721
7731
  var params = {
7722
- url: this.type == 'takeAdvice' ? api["B" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["A" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["E" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? toTwoOfficesDispatch : api["D" /* toTaskUnionExamine */],
7732
+ url: this.type == 'takeAdvice' ? api["E" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["D" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["H" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? toTwoOfficesDispatch : api["G" /* toTaskUnionExamine */],
7723
7733
  params: { pendingId: this.pendingId, userId: this.userId },
7724
7734
  headers: { Accept: 'application/json,text/plain' }
7725
7735
  };
@@ -7861,7 +7871,7 @@ taskUnionExaminevue_type_template_id_79caae4c_render._withStripped = true
7861
7871
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
7862
7872
  // return this.$toast('暂未开放,敬请期待!');
7863
7873
  var param = {
7864
- url: this.type === 'startDraf' ? api["s" /* taskStartDraft */] : this.type == 'unionSeal' ? api["v" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? twoOfficesDispatch : this.type == 'takeAdvice' ? api["t" /* taskTakeAdvice */] : api["u" /* taskUnionExamine */],
7874
+ url: this.type === 'startDraf' ? api["v" /* taskStartDraft */] : this.type == 'unionSeal' ? api["y" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? twoOfficesDispatch : this.type == 'takeAdvice' ? api["w" /* taskTakeAdvice */] : api["x" /* taskUnionExamine */],
7865
7875
  params: formData,
7866
7876
  headers: { Accept: 'application/json,text/plain' },
7867
7877
  type: 'post',
@@ -7911,7 +7921,7 @@ taskUnionExaminevue_type_template_id_79caae4c_render._withStripped = true
7911
7921
  // duration: 0
7912
7922
  // });
7913
7923
  Object(http["a" /* default */])({
7914
- url: _that.baseUrl ? _that.baseUrl + api["D" /* toTaskUnionExamine */] : api["D" /* toTaskUnionExamine */],
7924
+ url: _that.baseUrl ? _that.baseUrl + api["G" /* toTaskUnionExamine */] : api["G" /* toTaskUnionExamine */],
7915
7925
  params: {
7916
7926
  pendingId: this.pendingId
7917
7927
  }
package/lib/form.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 38);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 40);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 38:
195
+ /***/ 40:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 42);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 44);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 42:
195
+ /***/ 44:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";
package/lib/image.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 41);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 43);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 41:
195
+ /***/ 43:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";