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/selector.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 */
@@ -3245,7 +3255,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3245
3255
  enterprise: {
3246
3256
  label: '选择单位',
3247
3257
  name: 'enterprise',
3248
- url: api["n" /* selectObject */],
3258
+ url: api["q" /* selectObject */],
3249
3259
  data: [],
3250
3260
  nodeData: '',
3251
3261
  selection: [],
@@ -3259,7 +3269,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3259
3269
  department: {
3260
3270
  label: '选择部门',
3261
3271
  name: 'department',
3262
- url: api["n" /* selectObject */],
3272
+ url: api["q" /* selectObject */],
3263
3273
  data: [],
3264
3274
  nodeData: '',
3265
3275
  selection: [],
@@ -3273,7 +3283,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3273
3283
  employee: {
3274
3284
  label: '选择用户',
3275
3285
  name: 'employee',
3276
- url: api["n" /* selectObject */],
3286
+ url: api["q" /* selectObject */],
3277
3287
  data: [],
3278
3288
  nodeData: '',
3279
3289
  selection: [],
@@ -3287,7 +3297,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3287
3297
  myemployee: {
3288
3298
  label: '本单位用户',
3289
3299
  name: 'myemployee',
3290
- url: api["n" /* selectObject */],
3300
+ url: api["q" /* selectObject */],
3291
3301
  data: [],
3292
3302
  nodeData: '',
3293
3303
  selection: [],
@@ -3301,7 +3311,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3301
3311
  otheremployee: {
3302
3312
  label: '外单位用户',
3303
3313
  name: 'otheremployee',
3304
- url: api["n" /* selectObject */],
3314
+ url: api["q" /* selectObject */],
3305
3315
  data: [],
3306
3316
  nodeData: '',
3307
3317
  selection: [],
@@ -3315,7 +3325,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3315
3325
  person: {
3316
3326
  label: '选择人员',
3317
3327
  name: 'person',
3318
- url: api["n" /* selectObject */],
3328
+ url: api["q" /* selectObject */],
3319
3329
  data: [],
3320
3330
  nodeData: '',
3321
3331
  selection: [],
@@ -3329,7 +3339,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3329
3339
  otherperson: {
3330
3340
  label: '外单位人员',
3331
3341
  name: 'otherperson',
3332
- url: api["n" /* selectObject */],
3342
+ url: api["q" /* selectObject */],
3333
3343
  data: [],
3334
3344
  nodeData: '',
3335
3345
  selection: [],
@@ -3343,7 +3353,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3343
3353
  persongroup: {
3344
3354
  label: '选择群组成员',
3345
3355
  name: 'persongroup',
3346
- url: api["n" /* selectObject */],
3356
+ url: api["q" /* selectObject */],
3347
3357
  data: [],
3348
3358
  nodeData: '',
3349
3359
  selection: [],
@@ -3361,7 +3371,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3361
3371
  selection: [],
3362
3372
  value: [],
3363
3373
  name: 'filgroup',
3364
- url: api["n" /* selectObject */],
3374
+ url: api["q" /* selectObject */],
3365
3375
  param: {
3366
3376
  objType: this.objType,
3367
3377
  selecttype: 'filgroup',
@@ -3371,7 +3381,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3371
3381
  depgroup: {
3372
3382
  label: '部门群组成员',
3373
3383
  name: 'depgroup',
3374
- url: api["n" /* selectObject */],
3384
+ url: api["q" /* selectObject */],
3375
3385
  data: [],
3376
3386
  nodeData: '',
3377
3387
  selection: [],
@@ -3385,7 +3395,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3385
3395
  persongroupobj: {
3386
3396
  label: '人员群组',
3387
3397
  name: 'persongroupobj',
3388
- url: api["n" /* selectObject */],
3398
+ url: api["q" /* selectObject */],
3389
3399
  data: [],
3390
3400
  nodeData: '',
3391
3401
  selection: [],
@@ -3399,7 +3409,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3399
3409
  filgroupobj: {
3400
3410
  label: '单位群组',
3401
3411
  name: 'filgroupobj',
3402
- url: api["n" /* selectObject */],
3412
+ url: api["q" /* selectObject */],
3403
3413
  data: [],
3404
3414
  nodeData: '',
3405
3415
  selection: [],
@@ -3413,7 +3423,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3413
3423
  depgroupobj: {
3414
3424
  label: '部门群组',
3415
3425
  name: 'depgroupobj',
3416
- url: api["n" /* selectObject */],
3426
+ url: api["q" /* selectObject */],
3417
3427
  data: [],
3418
3428
  nodeData: '',
3419
3429
  selection: [],
@@ -3427,7 +3437,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3427
3437
  role: {
3428
3438
  label: '选择角色',
3429
3439
  name: 'role',
3430
- url: api["n" /* selectObject */],
3440
+ url: api["q" /* selectObject */],
3431
3441
  data: [],
3432
3442
  nodeData: '',
3433
3443
  selection: [],
@@ -3441,7 +3451,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3441
3451
  post: {
3442
3452
  label: '选择岗位',
3443
3453
  name: 'post',
3444
- url: api["n" /* selectObject */],
3454
+ url: api["q" /* selectObject */],
3445
3455
  data: [],
3446
3456
  nodeData: '',
3447
3457
  selection: [],
@@ -3455,7 +3465,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3455
3465
  codetable: {
3456
3466
  label: '代码表',
3457
3467
  name: 'codetable',
3458
- url: api["n" /* selectObject */],
3468
+ url: api["q" /* selectObject */],
3459
3469
  data: [],
3460
3470
  nodeData: '',
3461
3471
  selection: [],
@@ -3469,7 +3479,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3469
3479
  topcontacts: {
3470
3480
  label: '常用联系人',
3471
3481
  name: 'topcontacts',
3472
- url: api["n" /* selectObject */],
3482
+ url: api["q" /* selectObject */],
3473
3483
  data: [],
3474
3484
  nodeData: '',
3475
3485
  selection: [],
@@ -3659,7 +3669,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3659
3669
  this.newParam.pid = this.param.pid || 'root';
3660
3670
  }
3661
3671
  Object(http["a" /* default */])({
3662
- url: this.url ? this.url : this.baseUrl ? this.baseUrl + api["n" /* selectObject */] : api["n" /* selectObject */],
3672
+ url: this.url ? this.url : this.baseUrl ? this.baseUrl + api["q" /* selectObject */] : api["q" /* selectObject */],
3663
3673
  params: _extends({
3664
3674
  objType: this.objType,
3665
3675
  namelike: this.namelike,
@@ -3724,7 +3734,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
3724
3734
  duration: 0
3725
3735
  });
3726
3736
  Object(http["a" /* default */])({
3727
- url: this.baseUrl ? this.baseUrl + api["n" /* selectObject */] : api["n" /* selectObject */],
3737
+ url: this.baseUrl ? this.baseUrl + api["q" /* selectObject */] : api["q" /* selectObject */],
3728
3738
  params: params
3729
3739
  }).then(function (res) {
3730
3740
  if (res.rCode == 0) {
package/lib/skeleton.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 = 39);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 41);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 39:
195
+ /***/ 41:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";
package/lib/stepper.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 = 46);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 48);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 46:
195
+ /***/ 48:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";
package/lib/swipe.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 = 49);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 51);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 49:
195
+ /***/ 51:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";
@@ -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 */
package/lib/table.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 = 53);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 55);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -660,6 +660,7 @@ var formatDate = function formatDate(date, fmt) {
660
660
  'q+': quarter[Math.ceil((obj.getMonth() + 1) / 3) - 1], // 季度
661
661
  S: obj.getMilliseconds() // 毫秒
662
662
  };
663
+ console.log(o, 'o');
663
664
  if (/(y+)/.test(fmt)) {
664
665
  fmt = fmt.replace(RegExp.$1, (obj.getFullYear() + '').substr(4 - RegExp.$1.length));
665
666
  }
@@ -1884,7 +1885,7 @@ module.exports = require("@eoss-design/color");
1884
1885
 
1885
1886
  /***/ }),
1886
1887
 
1887
- /***/ 53:
1888
+ /***/ 55:
1888
1889
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1889
1890
 
1890
1891
  "use strict";
@@ -0,0 +1 @@
1
+ @charset "UTF-8";.em-flow-btn .btn-list{position:fixed;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;background-color:#fff;padding:10px 10px 34px;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;bottom:-1px;left:0;z-index:998;-webkit-box-shadow:0 -7px 7px -7px #ddd;box-shadow:0 -7px 7px -7px #ddd}.em-flow-btn .btn-list .left{display:-webkit-box;display:-ms-flexbox;display:flex}.em-flow-btn .btn-list .left .item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:35px}.em-flow-btn .btn-list .left .item:last-child{margin-right:0}.em-flow-btn .btn-list .left .item .icon{width:18px;height:auto}.em-flow-btn .btn-list .left .item .label{color:#666;font-weight:400;font-size:14px;margin-top:4px}.em-flow-btn .btn-list .right-one .audit{width:160px;height:40px;line-height:40px;background-color:#12278B;color:#fff;border-radius:20px;text-align:center;font-size:18px}.em-flow-btn .btn-list .right-two{display:-webkit-box;display:-ms-flexbox;display:flex}.em-flow-btn .btn-list .right-two .reject{width:80px;height:40px;line-height:40px;background-color:#fff;color:#12278B;text-align:center;border:1px solid #12278B;font-size:18px;border-radius:20px 0 0 20px}.em-flow-btn .btn-list .right-two .audit{width:80px;height:40px;line-height:40px;background-color:#12278B;color:#fff;border:1px solid #12278B;border-radius:0 20px 20px 0;text-align:center;font-size:18px}.em-flow-btn .btn-list-1{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.em-flow-btn .more-list{position:fixed;background-color:#fff;width:100%;bottom:83px;color:#999;padding:10px}.em-flow-btn .more-list .item{padding:10px;border-bottom:1px solid #999}
@@ -0,0 +1 @@
1
+ @charset "UTF-8";.em-flow-list{width:100%;background-color:#fff}.em-flow-list .list{padding:32px 16px 0}.em-flow-list .list .item{position:relative;border-left:1px solid #eee;padding:10px 0;margin:10px 0}.em-flow-list .list .item .icon-gou{position:absolute;top:-15px;left:-8px;color:#12278B}.em-flow-list .list .item .process-pending{position:absolute;top:-15px;left:-8.5px;width:16px;height:16px;border-radius:50%;background:rgba(18,39,139,.1);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.em-flow-list .list .item .process-pending .process-pending-yuan{display:inline-block;width:6px;height:6px;border-radius:50%;background:#12278B}.em-flow-list .list .item:last-child{border-left-color:transparent;height:auto}.em-flow-list .list .item .icon-finish{width:16px;height:auto;position:relative;left:-8px}.em-flow-list .list .item .icon-ing{width:34px;height:auto;position:relative;left:-14px}.em-flow-list .list .item .item-box{padding-left:29px;width:100%}.em-flow-list .list .item .item-box .one{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:-18px}.em-flow-list .list .item .item-box .one .label{font-size:14px;font-family:PingFang SC;font-weight:400;color:#666}.em-flow-list .list .item .item-box .one .time{font-size:12px;font-family:PingFang SC;font-weight:400;color:#999}.em-flow-list .list .item .item-box .two{font-size:16px;font-family:PingFang SC;font-weight:400;color:#333;padding-bottom:10px;border-bottom:1px solid #eee}.em-flow-list .list .item .item-box .tree{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:12px;font-family:PingFang SC;color:#999;line-height:16px;margin-bottom:16px;margin-top:10px}.em-flow-list .list .item .time{text-align:right;color:#333;font-size:13px;padding-top:10px;height:16px;line-height:15px}.em-flow-list .list .success-icon{border-left-color:#12278B}.em-flow-list .more{color:#12278B}.em-flow-list .custom-image .van-empty__image{width:90px;height:90px}