eoss-ui 0.5.12 → 0.5.14

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 (79) hide show
  1. package/lib/button-group.js +1 -13
  2. package/lib/button.js +3 -15
  3. package/lib/cascader.js +2 -2
  4. package/lib/checkbox-group.js +40 -34
  5. package/lib/data-table-form.js +4 -15
  6. package/lib/data-table.js +1219 -1529
  7. package/lib/date-picker.js +3 -15
  8. package/lib/dialog.js +10 -22
  9. package/lib/eoss-ui.common.js +1282 -1818
  10. package/lib/flow-group.js +1 -13
  11. package/lib/flow-list.js +3 -15
  12. package/lib/flow.js +43 -54
  13. package/lib/form.js +5 -22
  14. package/lib/handle-user.js +1 -13
  15. package/lib/handler.js +1 -13
  16. package/lib/icons.js +2 -2
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +3 -15
  19. package/lib/input.js +3 -15
  20. package/lib/label.js +5 -4
  21. package/lib/layout.js +166 -152
  22. package/lib/login.js +1 -13
  23. package/lib/main.js +15 -24
  24. package/lib/menu.js +2 -2
  25. package/lib/nav.js +10 -22
  26. package/lib/notify.js +2 -2
  27. package/lib/page.js +3 -15
  28. package/lib/pagination.js +2 -2
  29. package/lib/player.js +9 -21
  30. package/lib/qr-code.js +5 -17
  31. package/lib/radio-group.js +44 -34
  32. package/lib/retrial-auth.js +3 -15
  33. package/lib/select-ganged.js +26 -18
  34. package/lib/select.js +42 -31
  35. package/lib/selector-panel.js +7 -18
  36. package/lib/selector.js +5 -17
  37. package/lib/sizer.js +3 -15
  38. package/lib/steps.js +10 -22
  39. package/lib/switch.js +3 -15
  40. package/lib/table-form.js +3 -15
  41. package/lib/tabs-panel.js +2 -2
  42. package/lib/tabs.js +3 -15
  43. package/lib/theme-chalk/data-table.css +1 -1
  44. package/lib/theme-chalk/index.css +1 -1
  45. package/lib/theme-chalk/nav.css +1 -1
  46. package/lib/tips.js +3 -15
  47. package/lib/toolbar.js +2 -2
  48. package/lib/tree-group.js +3 -15
  49. package/lib/tree.js +3 -15
  50. package/lib/upload.js +4 -16
  51. package/lib/utils/util.js +1 -10
  52. package/lib/utils/webSocket.js +0 -3
  53. package/lib/wujie.js +3 -15
  54. package/lib/wxlogin.js +3 -15
  55. package/package.json +1 -1
  56. package/packages/checkbox-group/src/main.vue +20 -30
  57. package/packages/data-table/src/children.vue +4 -8
  58. package/packages/data-table/src/column.vue +522 -575
  59. package/packages/data-table/src/main.vue +123 -124
  60. package/packages/flow/src/component/taskUnionExamine.vue +1 -1
  61. package/packages/flow/src/main.vue +1 -1
  62. package/packages/flow/src/processForm.vue +1 -1
  63. package/packages/flow/src/processReject.vue +1 -1
  64. package/packages/flow/src/startTaskRead.vue +1 -1
  65. package/packages/form/src/main.vue +2 -7
  66. package/packages/label/src/main.vue +3 -2
  67. package/packages/main/src/main.vue +6 -4
  68. package/packages/radio-group/src/main.vue +20 -30
  69. package/packages/select/src/main.vue +20 -29
  70. package/packages/select-ganged/src/main.vue +1 -3
  71. package/packages/theme-chalk/lib/data-table.css +1 -1
  72. package/packages/theme-chalk/lib/index.css +1 -1
  73. package/packages/theme-chalk/lib/nav.css +1 -1
  74. package/packages/theme-chalk/src/data-table.scss +2 -1
  75. package/packages/theme-chalk/src/nav.scss +21 -2
  76. package/src/index.js +1 -1
  77. package/src/utils/util.js +1 -10
  78. package/src/utils/webSocket.js +0 -3
  79. package/packages/data-table/src/mixins/table.js +0 -12
package/lib/flow-group.js CHANGED
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -5380,7 +5371,6 @@ var WebSocket = function () {
5380
5371
  this.connects = 1;
5381
5372
  this.recon = false;
5382
5373
  this.sendTimeout = null;
5383
- this.isSend = false;
5384
5374
  }
5385
5375
 
5386
5376
  /** socket连接 */
@@ -5408,9 +5398,7 @@ var WebSocket = function () {
5408
5398
  // tryTimes定义重置
5409
5399
  _this.connects = 1;
5410
5400
  // 订阅消息
5411
- // if (!this.isSend) {
5412
5401
  _this.subscribe();
5413
- // }
5414
5402
  }, function (error) {
5415
5403
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
5416
5404
  if (_this.connects > 5 && diffSecond < _this.interval) {
package/lib/flow-list.js CHANGED
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -3329,7 +3320,7 @@ module.exports = require("sm-crypto");
3329
3320
 
3330
3321
  /***/ }),
3331
3322
 
3332
- /***/ 15:
3323
+ /***/ 17:
3333
3324
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3334
3325
 
3335
3326
  "use strict";
@@ -3837,7 +3828,7 @@ mainvue_type_template_id_7b7f270e_render._withStripped = true
3837
3828
  var api = __webpack_require__(1);
3838
3829
 
3839
3830
  // EXTERNAL MODULE: ./packages/flow/src/component/FileList.vue + 4 modules
3840
- var FileList = __webpack_require__(15);
3831
+ var FileList = __webpack_require__(17);
3841
3832
 
3842
3833
  // EXTERNAL MODULE: ./src/utils/util.js
3843
3834
  var util = __webpack_require__(0);
@@ -4948,7 +4939,6 @@ var WebSocket = function () {
4948
4939
  this.connects = 1;
4949
4940
  this.recon = false;
4950
4941
  this.sendTimeout = null;
4951
- this.isSend = false;
4952
4942
  }
4953
4943
 
4954
4944
  /** socket连接 */
@@ -4976,9 +4966,7 @@ var WebSocket = function () {
4976
4966
  // tryTimes定义重置
4977
4967
  _this.connects = 1;
4978
4968
  // 订阅消息
4979
- // if (!this.isSend) {
4980
4969
  _this.subscribe();
4981
- // }
4982
4970
  }, function (error) {
4983
4971
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
4984
4972
  if (_this.connects > 5 && diffSecond < _this.interval) {
package/lib/flow.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 = 28);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 29);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -2522,7 +2522,6 @@ var setStorage = function setStorage(_ref14) {
2522
2522
  * @author huangbo
2523
2523
  * @date 2022年5月7日
2524
2524
  * @param {String} [url] - 连接地址
2525
- * @param {String} [send] - 是否发送消息
2526
2525
  * @param {String} [take] - 订阅地址
2527
2526
  * @param {String} [debug] - 调试
2528
2527
  * @param {String} [interval] - 重连间隔时间
@@ -2530,16 +2529,8 @@ var setStorage = function setStorage(_ref14) {
2530
2529
  * @param {Function} [error] - 重连间隔时间
2531
2530
  **/
2532
2531
  function socket(option, vm) {
2533
- var options = {};
2534
- for (var i in option) {
2535
- if (i === 'send') {
2536
- options['isSend'] = option[i];
2537
- } else {
2538
- options[i] = option[i];
2539
- }
2540
- }
2541
2532
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2542
- socket.init(options, vm);
2533
+ socket.init(option, vm);
2543
2534
  return socket;
2544
2535
  }
2545
2536
  /**
@@ -3477,7 +3468,6 @@ var WebSocket = function () {
3477
3468
  this.connects = 1;
3478
3469
  this.recon = false;
3479
3470
  this.sendTimeout = null;
3480
- this.isSend = false;
3481
3471
  }
3482
3472
 
3483
3473
  /** socket连接 */
@@ -3505,9 +3495,7 @@ var WebSocket = function () {
3505
3495
  // tryTimes定义重置
3506
3496
  _this.connects = 1;
3507
3497
  // 订阅消息
3508
- // if (!this.isSend) {
3509
3498
  _this.subscribe();
3510
- // }
3511
3499
  }, function (error) {
3512
3500
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
3513
3501
  if (_this.connects > 5 && diffSecond < _this.interval) {
@@ -3609,7 +3597,9 @@ module.exports = require("babel-runtime/regenerator");
3609
3597
  /***/ }),
3610
3598
  /* 13 */,
3611
3599
  /* 14 */,
3612
- /* 15 */
3600
+ /* 15 */,
3601
+ /* 16 */,
3602
+ /* 17 */
3613
3603
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3614
3604
 
3615
3605
  "use strict";
@@ -3783,8 +3773,6 @@ var component = Object(componentNormalizer["a" /* default */])(
3783
3773
  /* harmony default export */ var FileList = __webpack_exports__["a"] = (component.exports);
3784
3774
 
3785
3775
  /***/ }),
3786
- /* 16 */,
3787
- /* 17 */,
3788
3776
  /* 18 */,
3789
3777
  /* 19 */,
3790
3778
  /* 20 */,
@@ -3795,14 +3783,15 @@ var component = Object(componentNormalizer["a" /* default */])(
3795
3783
  /* 25 */,
3796
3784
  /* 26 */,
3797
3785
  /* 27 */,
3798
- /* 28 */
3786
+ /* 28 */,
3787
+ /* 29 */
3799
3788
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3800
3789
 
3801
3790
  "use strict";
3802
3791
  // ESM COMPAT FLAG
3803
3792
  __webpack_require__.r(__webpack_exports__);
3804
3793
 
3805
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=57a9df9a&
3794
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=13cc8c3c&
3806
3795
  var render = function () {
3807
3796
  var _vm = this
3808
3797
  var _h = _vm.$createElement
@@ -5439,7 +5428,7 @@ var staticRenderFns = []
5439
5428
  render._withStripped = true
5440
5429
 
5441
5430
 
5442
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=57a9df9a&
5431
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=13cc8c3c&
5443
5432
 
5444
5433
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
5445
5434
  var regenerator_ = __webpack_require__(12);
@@ -6392,8 +6381,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
6392
6381
  )
6393
6382
 
6394
6383
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
6395
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=d47486b0&
6396
- var processFormvue_type_template_id_d47486b0_render = function () {
6384
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=b6491348&
6385
+ var processFormvue_type_template_id_b6491348_render = function () {
6397
6386
  var _vm = this
6398
6387
  var _h = _vm.$createElement
6399
6388
  var _c = _vm._self._c || _h
@@ -6859,11 +6848,11 @@ var processFormvue_type_template_id_d47486b0_render = function () {
6859
6848
  1
6860
6849
  )
6861
6850
  }
6862
- var processFormvue_type_template_id_d47486b0_staticRenderFns = []
6863
- processFormvue_type_template_id_d47486b0_render._withStripped = true
6851
+ var processFormvue_type_template_id_b6491348_staticRenderFns = []
6852
+ processFormvue_type_template_id_b6491348_render._withStripped = true
6864
6853
 
6865
6854
 
6866
- // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=d47486b0&
6855
+ // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=b6491348&
6867
6856
 
6868
6857
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=db651118&
6869
6858
  var selectUservue_type_template_id_db651118_render = function () {
@@ -8775,7 +8764,7 @@ var processFormvue_type_script_lang_js_components;
8775
8764
 
8776
8765
  util["a" /* default */].ajax({
8777
8766
  url: api["t" /* findCodeValues */],
8778
- params: { ccCode: 'notification_type' }
8767
+ params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
8779
8768
  }).then(function (res) {
8780
8769
  var status = res.status,
8781
8770
  data = res.data;
@@ -9153,8 +9142,8 @@ var processFormvue_type_script_lang_js_components;
9153
9142
 
9154
9143
  var processForm_component = Object(componentNormalizer["a" /* default */])(
9155
9144
  src_processFormvue_type_script_lang_js_,
9156
- processFormvue_type_template_id_d47486b0_render,
9157
- processFormvue_type_template_id_d47486b0_staticRenderFns,
9145
+ processFormvue_type_template_id_b6491348_render,
9146
+ processFormvue_type_template_id_b6491348_staticRenderFns,
9158
9147
  false,
9159
9148
  null,
9160
9149
  null,
@@ -9164,7 +9153,7 @@ var processForm_component = Object(componentNormalizer["a" /* default */])(
9164
9153
 
9165
9154
  /* harmony default export */ var processForm = (processForm_component.exports);
9166
9155
  // EXTERNAL MODULE: ./packages/flow/src/component/FileList.vue + 4 modules
9167
- var FileList = __webpack_require__(15);
9156
+ var FileList = __webpack_require__(17);
9168
9157
 
9169
9158
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=template&id=7d374b0a&
9170
9159
  var SendMsgvue_type_template_id_7d374b0a_render = function () {
@@ -10012,8 +10001,8 @@ var TimeLimit_component = Object(componentNormalizer["a" /* default */])(
10012
10001
  )
10013
10002
 
10014
10003
  /* harmony default export */ var TimeLimit = (TimeLimit_component.exports);
10015
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=4de07824&
10016
- var processRejectvue_type_template_id_4de07824_render = function () {
10004
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=b5a52fc0&
10005
+ var processRejectvue_type_template_id_b5a52fc0_render = function () {
10017
10006
  var _vm = this
10018
10007
  var _h = _vm.$createElement
10019
10008
  var _c = _vm._self._c || _h
@@ -10204,11 +10193,11 @@ var processRejectvue_type_template_id_4de07824_render = function () {
10204
10193
  1
10205
10194
  )
10206
10195
  }
10207
- var processRejectvue_type_template_id_4de07824_staticRenderFns = []
10208
- processRejectvue_type_template_id_4de07824_render._withStripped = true
10196
+ var processRejectvue_type_template_id_b5a52fc0_staticRenderFns = []
10197
+ processRejectvue_type_template_id_b5a52fc0_render._withStripped = true
10209
10198
 
10210
10199
 
10211
- // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=4de07824&
10200
+ // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=b5a52fc0&
10212
10201
 
10213
10202
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=script&lang=js&
10214
10203
  //
@@ -10342,7 +10331,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
10342
10331
 
10343
10332
  util["a" /* default */].ajax({
10344
10333
  url: api["t" /* findCodeValues */],
10345
- params: { ccCode: 'notification_type' }
10334
+ params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
10346
10335
  }).then(function (res) {
10347
10336
  var status = res.status,
10348
10337
  data = res.data;
@@ -10486,8 +10475,8 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
10486
10475
 
10487
10476
  var processReject_component = Object(componentNormalizer["a" /* default */])(
10488
10477
  src_processRejectvue_type_script_lang_js_,
10489
- processRejectvue_type_template_id_4de07824_render,
10490
- processRejectvue_type_template_id_4de07824_staticRenderFns,
10478
+ processRejectvue_type_template_id_b5a52fc0_render,
10479
+ processRejectvue_type_template_id_b5a52fc0_staticRenderFns,
10491
10480
  false,
10492
10481
  null,
10493
10482
  null,
@@ -10496,8 +10485,8 @@ var processReject_component = Object(componentNormalizer["a" /* default */])(
10496
10485
  )
10497
10486
 
10498
10487
  /* harmony default export */ var processReject = (processReject_component.exports);
10499
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=44f07b3f&
10500
- var startTaskReadvue_type_template_id_44f07b3f_render = function () {
10488
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=02be1571&
10489
+ var startTaskReadvue_type_template_id_02be1571_render = function () {
10501
10490
  var _vm = this
10502
10491
  var _h = _vm.$createElement
10503
10492
  var _c = _vm._self._c || _h
@@ -10872,11 +10861,11 @@ var startTaskReadvue_type_template_id_44f07b3f_render = function () {
10872
10861
  1
10873
10862
  )
10874
10863
  }
10875
- var startTaskReadvue_type_template_id_44f07b3f_staticRenderFns = []
10876
- startTaskReadvue_type_template_id_44f07b3f_render._withStripped = true
10864
+ var startTaskReadvue_type_template_id_02be1571_staticRenderFns = []
10865
+ startTaskReadvue_type_template_id_02be1571_render._withStripped = true
10877
10866
 
10878
10867
 
10879
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=44f07b3f&
10868
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=02be1571&
10880
10869
 
10881
10870
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=script&lang=js&
10882
10871
  var startTaskReadvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -11273,7 +11262,7 @@ var startTaskReadvue_type_script_lang_js_components;
11273
11262
 
11274
11263
  util["a" /* default */].ajax({
11275
11264
  url: api["t" /* findCodeValues */],
11276
- params: { ccCode: 'notification_type' }
11265
+ params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
11277
11266
  }).then(function (res) {
11278
11267
  var status = res.status,
11279
11268
  data = res.data;
@@ -11477,8 +11466,8 @@ var startTaskReadvue_type_script_lang_js_components;
11477
11466
 
11478
11467
  var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
11479
11468
  src_startTaskReadvue_type_script_lang_js_,
11480
- startTaskReadvue_type_template_id_44f07b3f_render,
11481
- startTaskReadvue_type_template_id_44f07b3f_staticRenderFns,
11469
+ startTaskReadvue_type_template_id_02be1571_render,
11470
+ startTaskReadvue_type_template_id_02be1571_staticRenderFns,
11482
11471
  false,
11483
11472
  null,
11484
11473
  null,
@@ -11487,8 +11476,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
11487
11476
  )
11488
11477
 
11489
11478
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
11490
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=47986272&
11491
- var taskUnionExaminevue_type_template_id_47986272_render = function () {
11479
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=2e0435c4&
11480
+ var taskUnionExaminevue_type_template_id_2e0435c4_render = function () {
11492
11481
  var _vm = this
11493
11482
  var _h = _vm.$createElement
11494
11483
  var _c = _vm._self._c || _h
@@ -11703,11 +11692,11 @@ var taskUnionExaminevue_type_template_id_47986272_render = function () {
11703
11692
  1
11704
11693
  )
11705
11694
  }
11706
- var taskUnionExaminevue_type_template_id_47986272_staticRenderFns = []
11707
- taskUnionExaminevue_type_template_id_47986272_render._withStripped = true
11695
+ var taskUnionExaminevue_type_template_id_2e0435c4_staticRenderFns = []
11696
+ taskUnionExaminevue_type_template_id_2e0435c4_render._withStripped = true
11708
11697
 
11709
11698
 
11710
- // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=47986272&
11699
+ // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=2e0435c4&
11711
11700
 
11712
11701
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=script&lang=js&
11713
11702
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -12114,7 +12103,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12114
12103
 
12115
12104
  util["a" /* default */].ajax({
12116
12105
  url: api["t" /* findCodeValues */],
12117
- params: { ccCode: 'notification_type' }
12106
+ params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
12118
12107
  }).then(function (res) {
12119
12108
  var status = res.status,
12120
12109
  data = res.data;
@@ -12185,8 +12174,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
12185
12174
 
12186
12175
  var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
12187
12176
  component_taskUnionExaminevue_type_script_lang_js_,
12188
- taskUnionExaminevue_type_template_id_47986272_render,
12189
- taskUnionExaminevue_type_template_id_47986272_staticRenderFns,
12177
+ taskUnionExaminevue_type_template_id_2e0435c4_render,
12178
+ taskUnionExaminevue_type_template_id_2e0435c4_staticRenderFns,
12190
12179
  false,
12191
12180
  null,
12192
12181
  null,
@@ -13343,7 +13332,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13343
13332
 
13344
13333
  util["a" /* default */].ajax({
13345
13334
  url: api["t" /* findCodeValues */],
13346
- params: { ccCode: 'notification_type' }
13335
+ params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
13347
13336
  }).then(function (res) {
13348
13337
  var status = res.status,
13349
13338
  data = res.data;
package/lib/form.js CHANGED
@@ -2522,7 +2522,6 @@ var setStorage = function setStorage(_ref14) {
2522
2522
  * @author huangbo
2523
2523
  * @date 2022年5月7日
2524
2524
  * @param {String} [url] - 连接地址
2525
- * @param {String} [send] - 是否发送消息
2526
2525
  * @param {String} [take] - 订阅地址
2527
2526
  * @param {String} [debug] - 调试
2528
2527
  * @param {String} [interval] - 重连间隔时间
@@ -2530,16 +2529,8 @@ var setStorage = function setStorage(_ref14) {
2530
2529
  * @param {Function} [error] - 重连间隔时间
2531
2530
  **/
2532
2531
  function socket(option, vm) {
2533
- var options = {};
2534
- for (var i in option) {
2535
- if (i === 'send') {
2536
- options['isSend'] = option[i];
2537
- } else {
2538
- options[i] = option[i];
2539
- }
2540
- }
2541
2532
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2542
- socket.init(options, vm);
2533
+ socket.init(option, vm);
2543
2534
  return socket;
2544
2535
  }
2545
2536
  /**
@@ -3477,7 +3468,6 @@ var WebSocket = function () {
3477
3468
  this.connects = 1;
3478
3469
  this.recon = false;
3479
3470
  this.sendTimeout = null;
3480
- this.isSend = false;
3481
3471
  }
3482
3472
 
3483
3473
  /** socket连接 */
@@ -3505,9 +3495,7 @@ var WebSocket = function () {
3505
3495
  // tryTimes定义重置
3506
3496
  _this.connects = 1;
3507
3497
  // 订阅消息
3508
- // if (!this.isSend) {
3509
3498
  _this.subscribe();
3510
- // }
3511
3499
  }, function (error) {
3512
3500
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
3513
3501
  if (_this.connects > 5 && diffSecond < _this.interval) {
@@ -3667,7 +3655,7 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
3667
3655
  // ESM COMPAT FLAG
3668
3656
  __webpack_require__.r(__webpack_exports__);
3669
3657
 
3670
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=2fd814fb&
3658
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=14ee5f2f&
3671
3659
  var render = function () {
3672
3660
  var _vm = this
3673
3661
  var _h = _vm.$createElement
@@ -14586,7 +14574,7 @@ var staticRenderFns = []
14586
14574
  render._withStripped = true
14587
14575
 
14588
14576
 
14589
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=2fd814fb&
14577
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=14ee5f2f&
14590
14578
 
14591
14579
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
14592
14580
  var regenerator_ = __webpack_require__(12);
@@ -18488,8 +18476,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18488
18476
  inheritAttrs: false,
18489
18477
  provide: function provide() {
18490
18478
  return {
18491
- esForm: this,
18492
- sysCodes: this.sysCodes
18479
+ esForm: this
18493
18480
  };
18494
18481
  },
18495
18482
 
@@ -18664,8 +18651,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18664
18651
  newHeight: null,
18665
18652
  uuid: util["a" /* default */].uuid(32),
18666
18653
  dialog: false,
18667
- refresh: true,
18668
- sysCodes: {}
18654
+ refresh: true
18669
18655
  };
18670
18656
  },
18671
18657
 
@@ -19674,9 +19660,6 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19674
19660
  data: data,
19675
19661
  attrs: attrs
19676
19662
  });
19677
- },
19678
- setSysCodes: function setSysCodes(name, value) {
19679
- this.$set(this.sysCodes, name, value);
19680
19663
  }
19681
19664
  }
19682
19665
  });
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -3782,7 +3773,6 @@ var WebSocket = function () {
3782
3773
  this.connects = 1;
3783
3774
  this.recon = false;
3784
3775
  this.sendTimeout = null;
3785
- this.isSend = false;
3786
3776
  }
3787
3777
 
3788
3778
  /** socket连接 */
@@ -3810,9 +3800,7 @@ var WebSocket = function () {
3810
3800
  // tryTimes定义重置
3811
3801
  _this.connects = 1;
3812
3802
  // 订阅消息
3813
- // if (!this.isSend) {
3814
3803
  _this.subscribe();
3815
- // }
3816
3804
  }, function (error) {
3817
3805
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
3818
3806
  if (_this.connects > 5 && diffSecond < _this.interval) {
package/lib/handler.js CHANGED
@@ -2523,7 +2523,6 @@ var setStorage = function setStorage(_ref14) {
2523
2523
  * @author huangbo
2524
2524
  * @date 2022年5月7日
2525
2525
  * @param {String} [url] - 连接地址
2526
- * @param {String} [send] - 是否发送消息
2527
2526
  * @param {String} [take] - 订阅地址
2528
2527
  * @param {String} [debug] - 调试
2529
2528
  * @param {String} [interval] - 重连间隔时间
@@ -2531,16 +2530,8 @@ var setStorage = function setStorage(_ref14) {
2531
2530
  * @param {Function} [error] - 重连间隔时间
2532
2531
  **/
2533
2532
  function socket(option, vm) {
2534
- var options = {};
2535
- for (var i in option) {
2536
- if (i === 'send') {
2537
- options['isSend'] = option[i];
2538
- } else {
2539
- options[i] = option[i];
2540
- }
2541
- }
2542
2533
  var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_4__[/* default */ "a"]();
2543
- socket.init(options, vm);
2534
+ socket.init(option, vm);
2544
2535
  return socket;
2545
2536
  }
2546
2537
  /**
@@ -4021,7 +4012,6 @@ var WebSocket = function () {
4021
4012
  this.connects = 1;
4022
4013
  this.recon = false;
4023
4014
  this.sendTimeout = null;
4024
- this.isSend = false;
4025
4015
  }
4026
4016
 
4027
4017
  /** socket连接 */
@@ -4049,9 +4039,7 @@ var WebSocket = function () {
4049
4039
  // tryTimes定义重置
4050
4040
  _this.connects = 1;
4051
4041
  // 订阅消息
4052
- // if (!this.isSend) {
4053
4042
  _this.subscribe();
4054
- // }
4055
4043
  }, function (error) {
4056
4044
  var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
4057
4045
  if (_this.connects > 5 && diffSecond < _this.interval) {
package/lib/icons.js CHANGED
@@ -87,7 +87,7 @@ module.exports =
87
87
  /************************************************************************/
88
88
  /******/ ({
89
89
 
90
- /***/ 20:
90
+ /***/ 21:
91
91
  /***/ (function(module) {
92
92
 
93
93
  module.exports = JSON.parse("[\"zuomian\",\"monitor\",\"maximize\",\"pointer-up\",\"pointer-left\",\"pointer-down\",\"tri-down\",\"retrograde\",\"rainfall\",\"caveat\",\"print\",\"alarm\",\"table\",\"duigouquan\",\"bumen\",\"mm\",\"accelerate\",\"quanping\",\"password\",\"qing\",\"kaifa\",\"daoru\",\"piaochongicon\",\"instructions\",\"notice\",\"wifi\",\"tishicuo\",\"minganciguanli\",\"switch-off\",\"switch-on\",\"narrow\",\"yidongduan\",\"web\",\"upload\",\"message\",\"go-back\",\"close\",\"shujutongji\",\"folder\",\"edit\",\"enter\",\"dian\",\"wendu\",\"shangwu\",\"shenbao\",\"magnifier\",\"project-add\",\"xiexian\",\"caidan\",\"tupian\",\"home\",\"yinyu\",\"wenhao\",\"template\",\"daiban\",\"set\",\"zhengwen\",\"cuowu\",\"chenggong\",\"indent\",\"increase\",\"ziliaoku\",\"tuichu\",\"quit\",\"leaf\",\"refresh\",\"statistic\",\"gengduo\",\"lvyou\",\"mail\",\"user\",\"zhishi\",\"weizhi\",\"jinggao\",\"zuzhijigou\",\"xue\",\"fenxiang\",\"jinrong\",\"shanchu\",\"jianhao\",\"jiahao\",\"yinzhang\",\"renyuanqiehuan\",\"gouxuanzhong1\",\"circle\",\"fuxuankuang1\",\"fangkuang\",\"application\",\"wenjianjia\",\"jiaren\",\"xiugai\",\"duanxinguanli\",\"workbench\",\"rizhi\",\"gongwen\",\"qingshi\",\"shiwu\",\"official\",\"baogao\",\"document\",\"wodeyouxiang\",\"ziliaojiaohuan\",\"denglu\",\"podium\",\"fangkuai\",\"xuewei\",\"duoyun\",\"pm\",\"xiajia\",\"huanbao\",\"dunpai\",\"shu\",\"gongzuozheng\",\"more\",\"fenlei\",\"delete\",\"fengsu\",\"bar\",\"yuanqu\",\"duomeiti\",\"youjian\",\"qiye\",\"zuixinzixun\",\"biaoge\",\"omit\",\"diaotou\",\"jiantou-left\",\"jiantou-right\",\"jiantou-up\",\"roles\",\"jiantou-next\",\"chijiuhuacunchu\",\"zhuanhuan\",\"cloudy\",\"form\",\"wuye\",\"tri-up\",\"pointer-right\",\"bianji\",\"tri-right\",\"tri-left\",\"daimaguanli\",\"jiankong\",\"kaifazhong\",\"fujian\",\"bingtu\",\"zhuzhuangtu\",\"lose\",\"rmb\",\"move\",\"xiazai\",\"yiban\",\"laoshi\",\"clear\",\"jinyong\",\"yunxing\",\"weihu\",\"chakan\",\"pifu\",\"ren\",\"gouwuche\",\"loading2\",\"yulan\",\"ziliao\",\"yidong\",\"fenxiang11\",\"kaoqin\",\"change\",\"shidu\",\"portfolio\",\"info\",\"yanjing\",\"laba\",\"camera\",\"xitongxiaoxi\",\"xitongguanli\",\"webduan\",\"wagnz\",\"group\",\"shengqian\",\"jiantou-prev\",\"attention\",\"look\",\"guanzhu\",\"daikuan\",\"tubiao\",\"duigou\",\"star\",\"dayin\",\"xinzeng\",\"reduce\",\"goup\",\"calendar\",\"tree\",\"yingyong\",\"caution\",\"zhuanfa\",\"add\",\"zongtiqixian\",\"daochu\",\"gongwu\",\"ihouse\",\"chilun\",\"weixiu\",\"chengguo\",\"trophy\",\"duiwu\",\"qiehuanjiaose\",\"door\",\"shebei\",\"fangjian\",\"microscope\",\"huaxue\",\"shiyanshianquan\",\"shiyan\",\"qiyexinxi\",\"yewuxinxi\",\"lab\",\"shiyanguanli\",\"yuqing\",\"big-screen\",\"signal-search\",\"database\",\"star-mark\",\"cng\",\"professor\",\"informatization\",\"code\",\"science\",\"price\",\"xunhuan\",\"savings\",\"administration\",\"aid\",\"biao\",\"line\",\"xietong\",\"jingzheng\",\"enterprise\",\"datatable\",\"toubiao\",\"bingdu\",\"keji2\",\"qiyeku5\",\"touzi5\",\"zijinliu\",\"zhishichanquan3\",\"kejifuwu2\",\"zhishichanquan2\",\"zijinanquan\",\"kejifuwu1\",\"geju\",\"yiqingfangkong\",\"kejifuwu\",\"anquanfangkong\",\"shujufuwu\",\"shujuceng\",\"shujugongxiang\",\"flows\",\"setup\",\"shujulian\",\"caiwujianguan\",\"caiwuliushui\",\"mubiaogeju\",\"juxing\",\"fuwuqi\",\"touzijigou\",\"xiezilou\",\"jianzhu\",\"logo\",\"touzhi\",\"zijin\",\"fintech\",\"touzixiangmu\",\"library\",\"touziguanli\",\"zhongda\",\"ziyuan\",\"shujutai\",\"shujudongtai\",\"bank\",\"shujuzhongxin\",\"zhongyaomubiao\",\"touzishijian\",\"caiwuguanli\",\"mingzhong\",\"touzishenpi\",\"jingzhenggeju\",\"property\",\"keji\",\"qiyeku\",\"zhongyaojihui\",\"touzilicai\",\"zhishichanquan\",\"touzi\",\"tzz\",\"menu\",\"xiangmushu\",\"pdf\",\"jiazai\",\"gongsi\",\"rise\",\"jbxx\",\"zwxx\",\"jypx\",\"jcgl\",\"ndkh\",\"grjl\",\"shgx\",\"gou\",\"shijian\",\"fukuan\",\"guoji\",\"shoukuan\",\"down\",\"gongzuotai\",\"gaigedongtai\",\"xitongshezhi\",\"relation\",\"zuzhirenshi\",\"kaohepingjia\",\"caiwujiandu\",\"sanzhongyida\",\"mima\",\"xianshi\",\"zhanghao\",\"bangongshi\",\"checked\",\"checke\",\"help\",\"kuoda\",\"banli\",\"xiaoxi\",\"shouqicaidan\",\"shouqicaidan-right\",\"smile\",\"tongzhi\",\"guanji\",\"shuaxin\",\"guiji\",\"tianjiawenjianjia\",\"yunxiazai\",\"del\",\"touzifangan\",\"zongheguanli\",\"sanzhongyida_mian\",\"gongwenguanli1\",\"heguiguanli\",\"jingyingfenxi\",\"txl\",\"diannao\",\"renliziyuan\",\"caiwuxitong\",\"shiwuguanli\",\"shouye\",\"bangongyongpin\",\"sidebar\",\"zhidulashi\",\"log\",\"fawenguanli\",\"huiyiguanli\",\"zuzhishishi\",\"gongwenqianshou\",\"jinxiupeixun\",\"gongwenbao\",\"jiaohuan\",\"daibanshixiang\",\"richeng\",\"tongxunlu\",\"yongche\",\"yanzheng\",\"daibanxinxi\",\"shuben\",\"fanfu\",\"guangbo\",\"shuzhuangtu\",\"bengqiye\",\"tongguo\",\"dengdai\",\"cross\",\"daichuli\",\"zhenggai\",\"shouli\",\"shujuhecha\",\"guanli\",\"paper-file\",\"wenjian\",\"dakaiwenjian\",\"yewu\",\"jiance\",\"jiheguanli\",\"jinru\",\"arrow-right\",\"lingdao\",\"rencai\",\"prev\",\"next\",\"jianpan\",\"qrcode\",\"bohui\",\"homepage\",\"download\",\"gantanhao\",\"dingding\",\"weixin\",\"pad\",\"ios\",\"android\",\"txt\",\"doc\",\"audioo\",\"video\",\"zip\",\"shuru\",\"duanxin\",\"saoma\",\"youxiang\",\"word\",\"excel\",\"fileword\",\"picture\",\"ppt\",\"ca\",\"usb-key\"]");
@@ -321,7 +321,7 @@ render._withStripped = true
321
321
  // CONCATENATED MODULE: ./packages/icons/src/main.vue?vue&type=template&id=32c03886&
322
322
 
323
323
  // EXTERNAL MODULE: ./packages/icons/src/icon.json
324
- var icon = __webpack_require__(20);
324
+ var icon = __webpack_require__(21);
325
325
 
326
326
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/icons/src/main.vue?vue&type=script&lang=js&
327
327
  //