eoss-ui 0.6.19 → 0.6.20

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 (102) hide show
  1. package/lib/eoss-ui.common.js +780 -678
  2. package/lib/flow.js +619 -515
  3. package/lib/index.js +1 -1
  4. package/lib/login.js +3 -2
  5. package/lib/main.js +143 -146
  6. package/lib/qr-code.js +13 -13
  7. package/lib/theme-chalk/index.css +1 -1
  8. package/lib/theme-chalk/login.css +1 -1
  9. package/package.json +157 -157
  10. package/packages/button/src/main.vue +418 -418
  11. package/packages/button-group/src/main.vue +298 -298
  12. package/packages/checkbox-group/src/main.vue +333 -333
  13. package/packages/clients/src/main.vue +144 -144
  14. package/packages/data-table/src/children.vue +39 -39
  15. package/packages/data-table/src/column.vue +983 -983
  16. package/packages/data-table/src/main.vue +1812 -1812
  17. package/packages/data-table/src/sizer.vue +195 -195
  18. package/packages/date-picker/src/main.vue +236 -236
  19. package/packages/flow/src/component/CustomPreset.vue +1 -1
  20. package/packages/flow/src/component/Preset.vue +1 -1
  21. package/packages/flow/src/component/SendMsg.vue +3 -1
  22. package/packages/flow/src/component/taskUnionExamine.vue +38 -20
  23. package/packages/flow/src/main.vue +2731 -2711
  24. package/packages/flow/src/processForm.vue +13 -2
  25. package/packages/flow/src/processReject.vue +14 -3
  26. package/packages/flow/src/startTaskRead.vue +23 -5
  27. package/packages/flow-group/src/main.vue +684 -684
  28. package/packages/form/src/main.vue +3582 -3582
  29. package/packages/form/src/table.vue +1420 -1420
  30. package/packages/handle-user/src/main.vue +134 -134
  31. package/packages/handler/src/main.vue +374 -374
  32. package/packages/icon/src/main.vue +101 -101
  33. package/packages/input/src/main.vue +356 -356
  34. package/packages/login/src/main.vue +1851 -1850
  35. package/packages/login/src/resetPassword.vue +557 -557
  36. package/packages/main/src/default/message.vue +249 -249
  37. package/packages/main/src/default/notice.vue +157 -157
  38. package/packages/main/src/default/userinfo.vue +494 -494
  39. package/packages/main/src/public/online.vue +89 -89
  40. package/packages/main/src/public/search.vue +454 -454
  41. package/packages/main/src/public/settings.vue +221 -221
  42. package/packages/main/src/simplicity/apps.vue +388 -388
  43. package/packages/main/src/simplicity/avatar.vue +82 -82
  44. package/packages/main/src/simplicity/handler.vue +183 -183
  45. package/packages/main/src/simplicity/index.vue +1930 -1931
  46. package/packages/main/src/simplicity/lists.vue +84 -84
  47. package/packages/main/src/simplicity/menu-list.vue +128 -128
  48. package/packages/main/src/simplicity/message.vue +259 -259
  49. package/packages/main/src/simplicity/notice.vue +190 -190
  50. package/packages/main/src/simplicity/router-page.vue +45 -45
  51. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  52. package/packages/main/src/simplicity/user.vue +248 -248
  53. package/packages/main/src/simplicity/userinfo.vue +304 -304
  54. package/packages/menu/src/main.vue +536 -536
  55. package/packages/pagination/src/main.vue +96 -96
  56. package/packages/qr-code/src/main.vue +170 -170
  57. package/packages/radio-group/src/main.vue +319 -319
  58. package/packages/select/src/main.vue +761 -761
  59. package/packages/selector/src/main.vue +677 -677
  60. package/packages/selector-panel/src/main.vue +1020 -1020
  61. package/packages/selector-panel/src/selection.vue +160 -160
  62. package/packages/tabs/src/main.vue +788 -788
  63. package/packages/theme-chalk/lib/index.css +1 -1
  64. package/packages/theme-chalk/lib/login.css +1 -1
  65. package/packages/theme-chalk/src/base.scss +260 -260
  66. package/packages/theme-chalk/src/button-group.scss +175 -175
  67. package/packages/theme-chalk/src/calendar.scss +113 -113
  68. package/packages/theme-chalk/src/clients.scss +87 -87
  69. package/packages/theme-chalk/src/common/var.scss +1 -4
  70. package/packages/theme-chalk/src/data-table.scss +276 -276
  71. package/packages/theme-chalk/src/dialog.scss +77 -77
  72. package/packages/theme-chalk/src/flow-group.scss +110 -110
  73. package/packages/theme-chalk/src/form.scss +496 -496
  74. package/packages/theme-chalk/src/handler.scss +133 -133
  75. package/packages/theme-chalk/src/icon.scss +1745 -1745
  76. package/packages/theme-chalk/src/icons.scss +99 -99
  77. package/packages/theme-chalk/src/login.scss +917 -926
  78. package/packages/theme-chalk/src/main.scss +632 -632
  79. package/packages/theme-chalk/src/menu.scss +222 -222
  80. package/packages/theme-chalk/src/nav.scss +125 -125
  81. package/packages/theme-chalk/src/pagination.scss +29 -29
  82. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  83. package/packages/theme-chalk/src/simplicity.scss +1246 -1246
  84. package/packages/theme-chalk/src/tabs.scss +87 -87
  85. package/packages/theme-chalk/src/toolbar.scss +179 -179
  86. package/packages/theme-chalk/src/tree-group.scss +72 -72
  87. package/packages/theme-chalk/src/tree.scss +165 -165
  88. package/packages/upload/src/main.vue +1313 -1313
  89. package/packages/wujie/src/main.vue +145 -145
  90. package/src/config/api.js +236 -236
  91. package/src/config/image.js +2 -2
  92. package/src/index.js +157 -157
  93. package/packages/.DS_Store +0 -0
  94. package/packages/checkbox-group/.DS_Store +0 -0
  95. package/packages/data-table/.DS_Store +0 -0
  96. package/packages/dialog/.DS_Store +0 -0
  97. package/packages/handler/.DS_Store +0 -0
  98. package/packages/login/.DS_Store +0 -0
  99. package/packages/main/.DS_Store +0 -0
  100. package/packages/main/src/.DS_Store +0 -0
  101. package/packages/theme-chalk/src/.DS_Store +0 -0
  102. package/src/.DS_Store +0 -0
@@ -24349,8 +24349,8 @@ form_src_main.install = function (Vue) {
24349
24349
  };
24350
24350
 
24351
24351
  /* harmony default export */ var packages_form = (form_src_main);
24352
- // 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=7e9b7c60&
24353
- var mainvue_type_template_id_7e9b7c60_render = function () {
24352
+ // 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=8a660742&
24353
+ var mainvue_type_template_id_8a660742_render = function () {
24354
24354
  var _vm = this
24355
24355
  var _h = _vm.$createElement
24356
24356
  var _c = _vm._self._c || _h
@@ -25455,10 +25455,11 @@ var mainvue_type_template_id_7e9b7c60_render = function () {
25455
25455
  key: item.cciValue,
25456
25456
  attrs: {
25457
25457
  label: item.cciValue,
25458
- disabled:
25459
- _vm.readOnlyNotificationType.indexOf(
25460
- item.cciValue
25461
- ) != -1,
25458
+ disabled: _vm.readOnlyNotificationType
25459
+ ? _vm.readOnlyNotificationType.indexOf(
25460
+ item.cciValue
25461
+ ) != -1
25462
+ : false,
25462
25463
  },
25463
25464
  },
25464
25465
  [
@@ -26020,7 +26021,7 @@ var mainvue_type_template_id_7e9b7c60_render = function () {
26020
26021
  staticClass: "flow-dialog",
26021
26022
  attrs: {
26022
26023
  "append-to-body": "",
26023
- height: "auto",
26024
+ height: "400px",
26024
26025
  "close-on-click-modal": false,
26025
26026
  title: _vm.taskReadType === "transfer" ? "转办" : "分阅",
26026
26027
  visible: _vm.showTaskRead,
@@ -26155,11 +26156,11 @@ var mainvue_type_template_id_7e9b7c60_render = function () {
26155
26156
  )
26156
26157
  : _vm._e()
26157
26158
  }
26158
- var mainvue_type_template_id_7e9b7c60_staticRenderFns = []
26159
- mainvue_type_template_id_7e9b7c60_render._withStripped = true
26159
+ var mainvue_type_template_id_8a660742_staticRenderFns = []
26160
+ mainvue_type_template_id_8a660742_render._withStripped = true
26160
26161
 
26161
26162
 
26162
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=7e9b7c60&
26163
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=8a660742&
26163
26164
 
26164
26165
  // 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/CommonOpinions.vue?vue&type=template&id=28c062bc&
26165
26166
  var CommonOpinionsvue_type_template_id_28c062bc_render = function () {
@@ -27151,8 +27152,8 @@ var CommonOpinions_component = normalizeComponent(
27151
27152
  )
27152
27153
 
27153
27154
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
27154
- // 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=48e37642&
27155
- var processFormvue_type_template_id_48e37642_render = function () {
27155
+ // 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=1a107d3f&
27156
+ var processFormvue_type_template_id_1a107d3f_render = function () {
27156
27157
  var _vm = this
27157
27158
  var _h = _vm.$createElement
27158
27159
  var _c = _vm._self._c || _h
@@ -27500,10 +27501,11 @@ var processFormvue_type_template_id_48e37642_render = function () {
27500
27501
  key: item.cciValue,
27501
27502
  attrs: {
27502
27503
  label: item.cciValue,
27503
- disabled:
27504
- _vm.readOnlyNotificationType.indexOf(
27505
- item.cciValue
27506
- ) != -1,
27504
+ disabled: _vm.readOnlyNotificationType
27505
+ ? _vm.readOnlyNotificationType.indexOf(
27506
+ item.cciValue
27507
+ ) != -1
27508
+ : false,
27507
27509
  },
27508
27510
  },
27509
27511
  [
@@ -27652,11 +27654,11 @@ var processFormvue_type_template_id_48e37642_render = function () {
27652
27654
  1
27653
27655
  )
27654
27656
  }
27655
- var processFormvue_type_template_id_48e37642_staticRenderFns = []
27656
- processFormvue_type_template_id_48e37642_render._withStripped = true
27657
+ var processFormvue_type_template_id_1a107d3f_staticRenderFns = []
27658
+ processFormvue_type_template_id_1a107d3f_render._withStripped = true
27657
27659
 
27658
27660
 
27659
- // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=48e37642&
27661
+ // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=1a107d3f&
27660
27662
 
27661
27663
  // 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&
27662
27664
  var selectUservue_type_template_id_db651118_render = function () {
@@ -28284,8 +28286,8 @@ var selectUser_component = normalizeComponent(
28284
28286
  )
28285
28287
 
28286
28288
  /* harmony default export */ var selectUser = (selectUser_component.exports);
28287
- // 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/CustomPreset.vue?vue&type=template&id=1f648b95&
28288
- var CustomPresetvue_type_template_id_1f648b95_render = function () {
28289
+ // 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/CustomPreset.vue?vue&type=template&id=b1fc2e9e&
28290
+ var CustomPresetvue_type_template_id_b1fc2e9e_render = function () {
28289
28291
  var _vm = this
28290
28292
  var _h = _vm.$createElement
28291
28293
  var _c = _vm._self._c || _h
@@ -28387,11 +28389,11 @@ var CustomPresetvue_type_template_id_1f648b95_render = function () {
28387
28389
  1
28388
28390
  )
28389
28391
  }
28390
- var CustomPresetvue_type_template_id_1f648b95_staticRenderFns = []
28391
- CustomPresetvue_type_template_id_1f648b95_render._withStripped = true
28392
+ var CustomPresetvue_type_template_id_b1fc2e9e_staticRenderFns = []
28393
+ CustomPresetvue_type_template_id_b1fc2e9e_render._withStripped = true
28392
28394
 
28393
28395
 
28394
- // CONCATENATED MODULE: ./packages/flow/src/component/CustomPreset.vue?vue&type=template&id=1f648b95&
28396
+ // CONCATENATED MODULE: ./packages/flow/src/component/CustomPreset.vue?vue&type=template&id=b1fc2e9e&
28395
28397
 
28396
28398
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CustomPreset.vue?vue&type=script&lang=js&
28397
28399
  var CustomPresetvue_type_script_lang_js_components;
@@ -28617,7 +28619,7 @@ var CustomPresetvue_type_script_lang_js_components;
28617
28619
  isNoStart && (this.newPresetList = []);
28618
28620
  var params = {
28619
28621
  url: api["K" /* getPresetCustomInfo */],
28620
- params: {
28622
+ data: {
28621
28623
  nodeId: nodeId,
28622
28624
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
28623
28625
  },
@@ -28712,8 +28714,8 @@ var CustomPresetvue_type_script_lang_js_components;
28712
28714
 
28713
28715
  var CustomPreset_component = normalizeComponent(
28714
28716
  component_CustomPresetvue_type_script_lang_js_,
28715
- CustomPresetvue_type_template_id_1f648b95_render,
28716
- CustomPresetvue_type_template_id_1f648b95_staticRenderFns,
28717
+ CustomPresetvue_type_template_id_b1fc2e9e_render,
28718
+ CustomPresetvue_type_template_id_b1fc2e9e_staticRenderFns,
28717
28719
  false,
28718
28720
  null,
28719
28721
  null,
@@ -28722,8 +28724,8 @@ var CustomPreset_component = normalizeComponent(
28722
28724
  )
28723
28725
 
28724
28726
  /* harmony default export */ var CustomPreset = (CustomPreset_component.exports);
28725
- // 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/Preset.vue?vue&type=template&id=23d1e880&
28726
- var Presetvue_type_template_id_23d1e880_render = function () {
28727
+ // 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/Preset.vue?vue&type=template&id=66f83948&
28728
+ var Presetvue_type_template_id_66f83948_render = function () {
28727
28729
  var _vm = this
28728
28730
  var _h = _vm.$createElement
28729
28731
  var _c = _vm._self._c || _h
@@ -28819,11 +28821,11 @@ var Presetvue_type_template_id_23d1e880_render = function () {
28819
28821
  1
28820
28822
  )
28821
28823
  }
28822
- var Presetvue_type_template_id_23d1e880_staticRenderFns = []
28823
- Presetvue_type_template_id_23d1e880_render._withStripped = true
28824
+ var Presetvue_type_template_id_66f83948_staticRenderFns = []
28825
+ Presetvue_type_template_id_66f83948_render._withStripped = true
28824
28826
 
28825
28827
 
28826
- // CONCATENATED MODULE: ./packages/flow/src/component/Preset.vue?vue&type=template&id=23d1e880&
28828
+ // CONCATENATED MODULE: ./packages/flow/src/component/Preset.vue?vue&type=template&id=66f83948&
28827
28829
 
28828
28830
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Preset.vue?vue&type=script&lang=js&
28829
28831
  var Presetvue_type_script_lang_js_components;
@@ -28971,7 +28973,7 @@ var Presetvue_type_script_lang_js_components;
28971
28973
 
28972
28974
  var params = {
28973
28975
  url: api["L" /* getPresetNodeInfo */],
28974
- params: {
28976
+ data: {
28975
28977
  nextNodeId: nextNodeId,
28976
28978
  processDefinitionId: processDefinitionId,
28977
28979
  businessId: businessId,
@@ -29097,8 +29099,8 @@ var Presetvue_type_script_lang_js_components;
29097
29099
 
29098
29100
  var Preset_component = normalizeComponent(
29099
29101
  component_Presetvue_type_script_lang_js_,
29100
- Presetvue_type_template_id_23d1e880_render,
29101
- Presetvue_type_template_id_23d1e880_staticRenderFns,
29102
+ Presetvue_type_template_id_66f83948_render,
29103
+ Presetvue_type_template_id_66f83948_staticRenderFns,
29102
29104
  false,
29103
29105
  null,
29104
29106
  null,
@@ -29374,6 +29376,8 @@ var processFormvue_type_script_lang_js_components;
29374
29376
  //
29375
29377
  //
29376
29378
  //
29379
+ //
29380
+ //
29377
29381
 
29378
29382
 
29379
29383
 
@@ -29502,6 +29506,7 @@ var processFormvue_type_script_lang_js_components;
29502
29506
  this.getUserInfo();
29503
29507
  },
29504
29508
  mounted: function mounted() {
29509
+ this.getNodeType();
29505
29510
  this.getStartFlow(this.processDefinitionId);
29506
29511
  this.newOpinion = this.opinion;
29507
29512
  },
@@ -29844,6 +29849,15 @@ var processFormvue_type_script_lang_js_components;
29844
29849
 
29845
29850
  if (status === 'success') {
29846
29851
  _this6.nextNode.noticeType = message.split(',');
29852
+ var arr = [];
29853
+ _this6.nextNode.noticeList.map(function (item) {
29854
+ _this6.nextNode.noticeType.map(function (x) {
29855
+ if (x == item.cciValue) {
29856
+ arr.push(x);
29857
+ }
29858
+ });
29859
+ });
29860
+ _this6.nextNode.noticeType = arr;
29847
29861
  } else {
29848
29862
  _this6.$message.error(message || '系统错误,请联系管理员!');
29849
29863
  }
@@ -29981,7 +29995,6 @@ var processFormvue_type_script_lang_js_components;
29981
29995
  _this7.isCustomPreset && _this7.$refs.customPreset.getPresetFlowInfo(_this7.nextNode.nextNode);
29982
29996
  _this7.getFind();
29983
29997
  _this7.getMessage();
29984
- _this7.getNodeType();
29985
29998
  } else {
29986
29999
  _this7.$message.error(message || '系统错误,请联系管理员!');
29987
30000
  }
@@ -30006,8 +30019,8 @@ var processFormvue_type_script_lang_js_components;
30006
30019
 
30007
30020
  var processForm_component = normalizeComponent(
30008
30021
  src_processFormvue_type_script_lang_js_,
30009
- processFormvue_type_template_id_48e37642_render,
30010
- processFormvue_type_template_id_48e37642_staticRenderFns,
30022
+ processFormvue_type_template_id_1a107d3f_render,
30023
+ processFormvue_type_template_id_1a107d3f_staticRenderFns,
30011
30024
  false,
30012
30025
  null,
30013
30026
  null,
@@ -30176,8 +30189,8 @@ var FileList_component = normalizeComponent(
30176
30189
  )
30177
30190
 
30178
30191
  /* harmony default export */ var FileList = (FileList_component.exports);
30179
- // 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=3dc7b24d&
30180
- var SendMsgvue_type_template_id_3dc7b24d_render = function () {
30192
+ // 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=6b27baa2&
30193
+ var SendMsgvue_type_template_id_6b27baa2_render = function () {
30181
30194
  var _vm = this
30182
30195
  var _h = _vm.$createElement
30183
30196
  var _c = _vm._self._c || _h
@@ -30240,9 +30253,11 @@ var SendMsgvue_type_template_id_3dc7b24d_render = function () {
30240
30253
  key: item.cciValue,
30241
30254
  attrs: {
30242
30255
  label: item.cciValue,
30243
- disabled:
30244
- _vm.readOnlyNotificationType.indexOf(item.cciValue) !=
30245
- -1,
30256
+ disabled: _vm.readOnlyNotificationType
30257
+ ? _vm.readOnlyNotificationType.indexOf(
30258
+ item.cciValue
30259
+ ) != -1
30260
+ : false,
30246
30261
  },
30247
30262
  },
30248
30263
  [
@@ -30380,11 +30395,11 @@ var SendMsgvue_type_template_id_3dc7b24d_render = function () {
30380
30395
  1
30381
30396
  )
30382
30397
  }
30383
- var SendMsgvue_type_template_id_3dc7b24d_staticRenderFns = []
30384
- SendMsgvue_type_template_id_3dc7b24d_render._withStripped = true
30398
+ var SendMsgvue_type_template_id_6b27baa2_staticRenderFns = []
30399
+ SendMsgvue_type_template_id_6b27baa2_render._withStripped = true
30385
30400
 
30386
30401
 
30387
- // CONCATENATED MODULE: ./packages/flow/src/component/SendMsg.vue?vue&type=template&id=3dc7b24d&
30402
+ // CONCATENATED MODULE: ./packages/flow/src/component/SendMsg.vue?vue&type=template&id=6b27baa2&
30388
30403
 
30389
30404
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=script&lang=js&
30390
30405
  //
@@ -30476,6 +30491,8 @@ SendMsgvue_type_template_id_3dc7b24d_render._withStripped = true
30476
30491
  //
30477
30492
  //
30478
30493
  //
30494
+ //
30495
+ //
30479
30496
 
30480
30497
 
30481
30498
 
@@ -30634,8 +30651,8 @@ SendMsgvue_type_template_id_3dc7b24d_render._withStripped = true
30634
30651
 
30635
30652
  var SendMsg_component = normalizeComponent(
30636
30653
  component_SendMsgvue_type_script_lang_js_,
30637
- SendMsgvue_type_template_id_3dc7b24d_render,
30638
- SendMsgvue_type_template_id_3dc7b24d_staticRenderFns,
30654
+ SendMsgvue_type_template_id_6b27baa2_render,
30655
+ SendMsgvue_type_template_id_6b27baa2_staticRenderFns,
30639
30656
  false,
30640
30657
  null,
30641
30658
  null,
@@ -31043,8 +31060,8 @@ var TimeLimit_component = normalizeComponent(
31043
31060
  )
31044
31061
 
31045
31062
  /* harmony default export */ var TimeLimit = (TimeLimit_component.exports);
31046
- // 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=7df0d512&
31047
- var processRejectvue_type_template_id_7df0d512_render = function () {
31063
+ // 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=0f092122&
31064
+ var processRejectvue_type_template_id_0f092122_render = function () {
31048
31065
  var _vm = this
31049
31066
  var _h = _vm.$createElement
31050
31067
  var _c = _vm._self._c || _h
@@ -31181,10 +31198,11 @@ var processRejectvue_type_template_id_7df0d512_render = function () {
31181
31198
  key: item.cciValue,
31182
31199
  attrs: {
31183
31200
  label: item.cciValue,
31184
- disabled:
31185
- _vm.readOnlyNotificationType.indexOf(
31186
- item.cciValue
31187
- ) != -1,
31201
+ disabled: _vm.readOnlyNotificationType
31202
+ ? _vm.readOnlyNotificationType.indexOf(
31203
+ item.cciValue
31204
+ ) != -1
31205
+ : false,
31188
31206
  },
31189
31207
  },
31190
31208
  [
@@ -31264,11 +31282,11 @@ var processRejectvue_type_template_id_7df0d512_render = function () {
31264
31282
  1
31265
31283
  )
31266
31284
  }
31267
- var processRejectvue_type_template_id_7df0d512_staticRenderFns = []
31268
- processRejectvue_type_template_id_7df0d512_render._withStripped = true
31285
+ var processRejectvue_type_template_id_0f092122_staticRenderFns = []
31286
+ processRejectvue_type_template_id_0f092122_render._withStripped = true
31269
31287
 
31270
31288
 
31271
- // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=7df0d512&
31289
+ // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=0f092122&
31272
31290
 
31273
31291
  // 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&
31274
31292
  //
@@ -31354,6 +31372,8 @@ processRejectvue_type_template_id_7df0d512_render._withStripped = true
31354
31372
  //
31355
31373
  //
31356
31374
  //
31375
+ //
31376
+ //
31357
31377
 
31358
31378
 
31359
31379
 
@@ -31399,6 +31419,7 @@ processRejectvue_type_template_id_7df0d512_render._withStripped = true
31399
31419
  },
31400
31420
  mounted: function mounted() {
31401
31421
  this.newsInformation = this.newsInfo;
31422
+ this.getNodeType();
31402
31423
  this.getProcessReject();
31403
31424
  },
31404
31425
 
@@ -31488,6 +31509,15 @@ processRejectvue_type_template_id_7df0d512_render._withStripped = true
31488
31509
 
31489
31510
  if (status === 'success') {
31490
31511
  _this3.nextNode.noticeType = message.split(',');
31512
+ var arr = [];
31513
+ _this3.nextNode.noticeList.map(function (item) {
31514
+ _this3.nextNode.noticeType.map(function (x) {
31515
+ if (x == item.cciValue) {
31516
+ arr.push(x);
31517
+ }
31518
+ });
31519
+ });
31520
+ _this3.nextNode.noticeType = arr;
31491
31521
  }
31492
31522
  }).catch(function (err) {
31493
31523
  _this3.loading = false;
@@ -31546,7 +31576,6 @@ processRejectvue_type_template_id_7df0d512_render._withStripped = true
31546
31576
  }
31547
31577
  });
31548
31578
  this.getFind();
31549
- this.getNodeType();
31550
31579
  }
31551
31580
  }
31552
31581
  });
@@ -31562,8 +31591,8 @@ processRejectvue_type_template_id_7df0d512_render._withStripped = true
31562
31591
 
31563
31592
  var processReject_component = normalizeComponent(
31564
31593
  src_processRejectvue_type_script_lang_js_,
31565
- processRejectvue_type_template_id_7df0d512_render,
31566
- processRejectvue_type_template_id_7df0d512_staticRenderFns,
31594
+ processRejectvue_type_template_id_0f092122_render,
31595
+ processRejectvue_type_template_id_0f092122_staticRenderFns,
31567
31596
  false,
31568
31597
  null,
31569
31598
  null,
@@ -31572,8 +31601,8 @@ var processReject_component = normalizeComponent(
31572
31601
  )
31573
31602
 
31574
31603
  /* harmony default export */ var processReject = (processReject_component.exports);
31575
- // 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=4a0a6b09&
31576
- var startTaskReadvue_type_template_id_4a0a6b09_render = function () {
31604
+ // 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=1372220b&
31605
+ var startTaskReadvue_type_template_id_1372220b_render = function () {
31577
31606
  var _vm = this
31578
31607
  var _h = _vm.$createElement
31579
31608
  var _c = _vm._self._c || _h
@@ -31604,351 +31633,369 @@ var startTaskReadvue_type_template_id_4a0a6b09_render = function () {
31604
31633
  attrs: { model: _vm.nextNode, "label-width": "110px" },
31605
31634
  },
31606
31635
  [
31607
- _vm.type === "transfer"
31608
- ? _c(
31609
- "el-form-item",
31610
- { attrs: { prop: "handleExplain", label: "当前步骤" } },
31611
- [
31612
- _c("el-input", {
31613
- attrs: { readonly: "" },
31614
- model: {
31615
- value: _vm.nextNode.nodeName,
31616
- callback: function ($$v) {
31617
- _vm.$set(_vm.nextNode, "nodeName", $$v)
31618
- },
31619
- expression: "nextNode.nodeName",
31620
- },
31621
- }),
31622
- ],
31623
- 1
31624
- )
31625
- : _vm._e(),
31626
- _vm.type == "transfer" && _vm.transferInfo.isSinglePage
31627
- ? _c(
31628
- "el-form-item",
31629
- { attrs: { prop: "handleExplain", label: "意见" } },
31630
- [
31631
- _c("el-input", {
31632
- attrs: { placeholder: "请填写意见" },
31633
- model: {
31634
- value: _vm.nextNode.handleExplain,
31635
- callback: function ($$v) {
31636
- _vm.$set(_vm.nextNode, "handleExplain", $$v)
31637
- },
31638
- expression: "nextNode.handleExplain",
31639
- },
31640
- }),
31641
- ],
31642
- 1
31643
- )
31644
- : _vm._e(),
31645
31636
  _c(
31646
- "el-form-item",
31637
+ "div",
31647
31638
  {
31648
- attrs: {
31649
- prop: "nextUser",
31650
- label:
31651
- _vm.type === "transfer"
31652
- ? "转办对象"
31653
- : _vm.configInfo.isCdjxjTaskHandle == "true"
31654
- ? "接收人"
31655
- : "办理用户",
31639
+ staticStyle: {
31640
+ "max-height": "290px",
31641
+ "overflow-y": "auto",
31642
+ "margin-bottom": "10px",
31656
31643
  },
31657
31644
  },
31658
31645
  [
31659
- _c("SelectUser", {
31660
- attrs: {
31661
- nextUser: _vm.nextNode.nextUser,
31662
- options: _vm.userOptions,
31663
- multiple: _vm.type != "transfer" ? _vm.multiple : false,
31664
- mix: _vm.type != "transfer",
31665
- selectUserList: _vm.selectUserList,
31666
- types:
31667
- _vm.type == "transfer"
31668
- ? ["employee", "persongroup"]
31669
- : ["employee", "enterprise", "department", "persongroup"],
31670
- tabs: _vm.tabs,
31671
- where: { type: "user" },
31672
- },
31673
- on: {
31674
- change: function ($event) {
31675
- _vm.changeSelectUser($event, "nextUser")
31646
+ _vm.type === "transfer"
31647
+ ? _c(
31648
+ "el-form-item",
31649
+ { attrs: { prop: "handleExplain", label: "当前步骤" } },
31650
+ [
31651
+ _c("el-input", {
31652
+ attrs: { readonly: "" },
31653
+ model: {
31654
+ value: _vm.nextNode.nodeName,
31655
+ callback: function ($$v) {
31656
+ _vm.$set(_vm.nextNode, "nodeName", $$v)
31657
+ },
31658
+ expression: "nextNode.nodeName",
31659
+ },
31660
+ }),
31661
+ ],
31662
+ 1
31663
+ )
31664
+ : _vm._e(),
31665
+ _vm.type == "transfer" && _vm.transferInfo.isSinglePage
31666
+ ? _c(
31667
+ "el-form-item",
31668
+ { attrs: { prop: "handleExplain", label: "意见" } },
31669
+ [
31670
+ _c("el-input", {
31671
+ attrs: { placeholder: "请填写意见" },
31672
+ model: {
31673
+ value: _vm.nextNode.handleExplain,
31674
+ callback: function ($$v) {
31675
+ _vm.$set(_vm.nextNode, "handleExplain", $$v)
31676
+ },
31677
+ expression: "nextNode.handleExplain",
31678
+ },
31679
+ }),
31680
+ ],
31681
+ 1
31682
+ )
31683
+ : _vm._e(),
31684
+ _c(
31685
+ "el-form-item",
31686
+ {
31687
+ attrs: {
31688
+ prop: "nextUser",
31689
+ label:
31690
+ _vm.type === "transfer"
31691
+ ? "转办对象"
31692
+ : _vm.configInfo.isCdjxjTaskHandle == "true"
31693
+ ? "接收人"
31694
+ : "办理用户",
31676
31695
  },
31677
31696
  },
31678
- }),
31679
- ],
31680
- 1
31681
- ),
31682
- _vm.configInfo.isCdjxjTaskHandle != "true" && _vm.type != "transfer"
31683
- ? _c(
31684
- "el-form-item",
31685
- { attrs: { prop: "cy", label: "常用群组" } },
31686
31697
  [
31687
- _c(
31688
- "el-checkbox-group",
31689
- {
31690
- model: {
31691
- value: _vm.selectCheck,
31692
- callback: function ($$v) {
31693
- _vm.selectCheck = $$v
31694
- },
31695
- expression: "selectCheck",
31698
+ _c("SelectUser", {
31699
+ attrs: {
31700
+ nextUser: _vm.nextNode.nextUser,
31701
+ options: _vm.userOptions,
31702
+ multiple: _vm.type != "transfer" ? _vm.multiple : false,
31703
+ mix: _vm.type != "transfer",
31704
+ selectUserList: _vm.selectUserList,
31705
+ types:
31706
+ _vm.type == "transfer"
31707
+ ? ["employee", "persongroup"]
31708
+ : [
31709
+ "employee",
31710
+ "enterprise",
31711
+ "department",
31712
+ "persongroup",
31713
+ ],
31714
+ tabs: _vm.tabs,
31715
+ where: { type: "user" },
31716
+ },
31717
+ on: {
31718
+ change: function ($event) {
31719
+ _vm.changeSelectUser($event, "nextUser")
31696
31720
  },
31697
31721
  },
31698
- _vm._l(_vm.configInfo.groups, function (item) {
31699
- return _c(
31700
- "el-checkbox",
31722
+ }),
31723
+ ],
31724
+ 1
31725
+ ),
31726
+ _vm.configInfo.isCdjxjTaskHandle != "true" &&
31727
+ _vm.type != "transfer"
31728
+ ? _c(
31729
+ "el-form-item",
31730
+ { attrs: { prop: "cy", label: "常用群组" } },
31731
+ [
31732
+ _c(
31733
+ "el-checkbox-group",
31701
31734
  {
31702
- key: item.id,
31703
- attrs: { label: item.name },
31704
- on: {
31705
- change: function ($event) {
31706
- _vm.handleSelectCheck($event, item)
31735
+ model: {
31736
+ value: _vm.selectCheck,
31737
+ callback: function ($$v) {
31738
+ _vm.selectCheck = $$v
31707
31739
  },
31740
+ expression: "selectCheck",
31708
31741
  },
31709
31742
  },
31710
- [_vm._v(_vm._s(item.name))]
31711
- )
31712
- }),
31743
+ _vm._l(_vm.configInfo.groups, function (item) {
31744
+ return _c(
31745
+ "el-checkbox",
31746
+ {
31747
+ key: item.id,
31748
+ attrs: { label: item.name },
31749
+ on: {
31750
+ change: function ($event) {
31751
+ _vm.handleSelectCheck($event, item)
31752
+ },
31753
+ },
31754
+ },
31755
+ [_vm._v(_vm._s(item.name))]
31756
+ )
31757
+ }),
31758
+ 1
31759
+ ),
31760
+ ],
31713
31761
  1
31714
- ),
31715
- ],
31716
- 1
31717
- )
31718
- : _vm._e(),
31719
- _vm.configInfo.fyDoresult == "true"
31720
- ? _c(
31721
- "el-form-item",
31722
- { attrs: { prop: "showDoresult", label: "流程意见" } },
31723
- [
31724
- _c(
31725
- "el-radio",
31726
- {
31727
- attrs: { label: "0" },
31728
- model: {
31729
- value: _vm.nextNode.showDoresult,
31730
- callback: function ($$v) {
31731
- _vm.$set(_vm.nextNode, "showDoresult", $$v)
31762
+ )
31763
+ : _vm._e(),
31764
+ _vm.configInfo.fyDoresult == "true"
31765
+ ? _c(
31766
+ "el-form-item",
31767
+ { attrs: { prop: "showDoresult", label: "流程意见" } },
31768
+ [
31769
+ _c(
31770
+ "el-radio",
31771
+ {
31772
+ attrs: { label: "0" },
31773
+ model: {
31774
+ value: _vm.nextNode.showDoresult,
31775
+ callback: function ($$v) {
31776
+ _vm.$set(_vm.nextNode, "showDoresult", $$v)
31777
+ },
31778
+ expression: "nextNode.showDoresult",
31779
+ },
31732
31780
  },
31733
- expression: "nextNode.showDoresult",
31734
- },
31735
- },
31736
- [_vm._v("分阅")]
31737
- ),
31738
- _c(
31739
- "el-radio",
31740
- {
31741
- attrs: { label: "1" },
31742
- model: {
31743
- value: _vm.nextNode.showDoresult,
31744
- callback: function ($$v) {
31745
- _vm.$set(_vm.nextNode, "showDoresult", $$v)
31781
+ [_vm._v("分阅")]
31782
+ ),
31783
+ _c(
31784
+ "el-radio",
31785
+ {
31786
+ attrs: { label: "1" },
31787
+ model: {
31788
+ value: _vm.nextNode.showDoresult,
31789
+ callback: function ($$v) {
31790
+ _vm.$set(_vm.nextNode, "showDoresult", $$v)
31791
+ },
31792
+ expression: "nextNode.showDoresult",
31793
+ },
31746
31794
  },
31747
- expression: "nextNode.showDoresult",
31748
- },
31749
- },
31750
- [_vm._v("不分阅")]
31751
- ),
31752
- ],
31753
- 1
31754
- )
31755
- : _vm._e(),
31756
- _vm.configInfo.fyeh == "true"
31757
- ? _c(
31758
- "el-form-item",
31759
- { attrs: { prop: "isInHistory", label: "分阅记录" } },
31760
- [
31761
- _c(
31762
- "el-radio",
31763
- {
31764
- attrs: { label: "0" },
31765
- model: {
31766
- value: _vm.nextNode.isInHistory,
31767
- callback: function ($$v) {
31768
- _vm.$set(_vm.nextNode, "isInHistory", $$v)
31795
+ [_vm._v("不分阅")]
31796
+ ),
31797
+ ],
31798
+ 1
31799
+ )
31800
+ : _vm._e(),
31801
+ _vm.configInfo.fyeh == "true"
31802
+ ? _c(
31803
+ "el-form-item",
31804
+ { attrs: { prop: "isInHistory", label: "分阅记录" } },
31805
+ [
31806
+ _c(
31807
+ "el-radio",
31808
+ {
31809
+ attrs: { label: "0" },
31810
+ model: {
31811
+ value: _vm.nextNode.isInHistory,
31812
+ callback: function ($$v) {
31813
+ _vm.$set(_vm.nextNode, "isInHistory", $$v)
31814
+ },
31815
+ expression: "nextNode.isInHistory",
31816
+ },
31769
31817
  },
31770
- expression: "nextNode.isInHistory",
31771
- },
31772
- },
31773
- [_vm._v("记录")]
31774
- ),
31775
- _c(
31776
- "el-radio",
31777
- {
31778
- attrs: { label: "1" },
31779
- model: {
31780
- value: _vm.nextNode.isInHistory,
31781
- callback: function ($$v) {
31782
- _vm.$set(_vm.nextNode, "isInHistory", $$v)
31818
+ [_vm._v("记录")]
31819
+ ),
31820
+ _c(
31821
+ "el-radio",
31822
+ {
31823
+ attrs: { label: "1" },
31824
+ model: {
31825
+ value: _vm.nextNode.isInHistory,
31826
+ callback: function ($$v) {
31827
+ _vm.$set(_vm.nextNode, "isInHistory", $$v)
31828
+ },
31829
+ expression: "nextNode.isInHistory",
31830
+ },
31783
31831
  },
31784
- expression: "nextNode.isInHistory",
31785
- },
31786
- },
31787
- [_vm._v("不记录")]
31788
- ),
31789
- ],
31790
- 1
31791
- )
31792
- : _vm._e(),
31793
- _vm.configInfo.download
31794
- ? _c(
31795
- "el-form-item",
31796
- { attrs: { prop: "isDownload", label: "打印下载文件" } },
31797
- [
31798
- _c(
31799
- "el-radio",
31800
- {
31801
- attrs: { label: "0" },
31802
- model: {
31803
- value: _vm.nextNode.isDownload,
31804
- callback: function ($$v) {
31805
- _vm.$set(_vm.nextNode, "isDownload", $$v)
31832
+ [_vm._v("不记录")]
31833
+ ),
31834
+ ],
31835
+ 1
31836
+ )
31837
+ : _vm._e(),
31838
+ _vm.configInfo.download
31839
+ ? _c(
31840
+ "el-form-item",
31841
+ { attrs: { prop: "isDownload", label: "打印下载文件" } },
31842
+ [
31843
+ _c(
31844
+ "el-radio",
31845
+ {
31846
+ attrs: { label: "0" },
31847
+ model: {
31848
+ value: _vm.nextNode.isDownload,
31849
+ callback: function ($$v) {
31850
+ _vm.$set(_vm.nextNode, "isDownload", $$v)
31851
+ },
31852
+ expression: "nextNode.isDownload",
31853
+ },
31854
+ },
31855
+ [_vm._v("允许")]
31856
+ ),
31857
+ _c(
31858
+ "el-radio",
31859
+ {
31860
+ attrs: { label: "1" },
31861
+ model: {
31862
+ value: _vm.nextNode.isDownload,
31863
+ callback: function ($$v) {
31864
+ _vm.$set(_vm.nextNode, "isDownload", $$v)
31865
+ },
31866
+ expression: "nextNode.isDownload",
31867
+ },
31806
31868
  },
31807
- expression: "nextNode.isDownload",
31869
+ [_vm._v("不允许")]
31870
+ ),
31871
+ ],
31872
+ 1
31873
+ )
31874
+ : _vm._e(),
31875
+ _vm.type != "transfer"
31876
+ ? _c(
31877
+ "el-form-item",
31878
+ {
31879
+ attrs: {
31880
+ prop: "handleExplain",
31881
+ label:
31882
+ _vm.configInfo.isCdjxjTaskHandle == "true"
31883
+ ? "附言"
31884
+ : "办理说明",
31808
31885
  },
31809
31886
  },
31810
- [_vm._v("允许")]
31811
- ),
31812
- _c(
31813
- "el-radio",
31814
- {
31815
- attrs: { label: "1" },
31816
- model: {
31817
- value: _vm.nextNode.isDownload,
31818
- callback: function ($$v) {
31819
- _vm.$set(_vm.nextNode, "isDownload", $$v)
31887
+ [
31888
+ _c("el-input", {
31889
+ attrs: { placeholder: "请填写办理说明" },
31890
+ model: {
31891
+ value: _vm.nextNode.handleExplain,
31892
+ callback: function ($$v) {
31893
+ _vm.$set(_vm.nextNode, "handleExplain", $$v)
31894
+ },
31895
+ expression: "nextNode.handleExplain",
31820
31896
  },
31821
- expression: "nextNode.isDownload",
31897
+ }),
31898
+ ],
31899
+ 1
31900
+ )
31901
+ : _vm._e(),
31902
+ _vm.configInfo.isCdjxjTaskHandle != "true"
31903
+ ? _c(
31904
+ "el-form-item",
31905
+ {
31906
+ attrs: {
31907
+ prop: "noticeType",
31908
+ label: "通知方式",
31909
+ rules: [
31910
+ {
31911
+ required: false,
31912
+ message: "请选择通知方式",
31913
+ trigger: "blur",
31914
+ },
31915
+ ],
31822
31916
  },
31823
31917
  },
31824
- [_vm._v("不允许")]
31825
- ),
31826
- ],
31827
- 1
31828
- )
31829
- : _vm._e(),
31830
- _vm.type != "transfer"
31831
- ? _c(
31918
+ [
31919
+ _c(
31920
+ "el-checkbox-group",
31921
+ {
31922
+ staticStyle: { display: "contents" },
31923
+ model: {
31924
+ value: _vm.nextNode.noticeType,
31925
+ callback: function ($$v) {
31926
+ _vm.$set(_vm.nextNode, "noticeType", $$v)
31927
+ },
31928
+ expression: "nextNode.noticeType",
31929
+ },
31930
+ },
31931
+ _vm._l(_vm.noticeList, function (item) {
31932
+ return _c(
31933
+ "el-checkbox",
31934
+ {
31935
+ key: item.cciValue,
31936
+ attrs: {
31937
+ label: item.cciValue,
31938
+ disabled: _vm.readOnlyNotificationType
31939
+ ? _vm.readOnlyNotificationType.indexOf(
31940
+ item.cciValue
31941
+ ) != -1
31942
+ : false,
31943
+ },
31944
+ },
31945
+ [
31946
+ _vm._v(
31947
+ "\n " +
31948
+ _vm._s(item.shortName) +
31949
+ "\n "
31950
+ ),
31951
+ ]
31952
+ )
31953
+ }),
31954
+ 1
31955
+ ),
31956
+ ],
31957
+ 1
31958
+ )
31959
+ : _vm._e(),
31960
+ _c(
31832
31961
  "el-form-item",
31833
31962
  {
31834
- attrs: {
31835
- prop: "handleExplain",
31836
- label:
31837
- _vm.configInfo.isCdjxjTaskHandle == "true"
31838
- ? "附言"
31839
- : "办理说明",
31840
- },
31963
+ directives: [
31964
+ {
31965
+ name: "show",
31966
+ rawName: "v-show",
31967
+ value:
31968
+ _vm.nextNode.noticeType.length != 0 &&
31969
+ _vm.configInfo.isCdjxjTaskHandle != "true",
31970
+ expression:
31971
+ "\n nextNode.noticeType.length != 0 &&\n configInfo.isCdjxjTaskHandle != 'true'\n ",
31972
+ },
31973
+ ],
31974
+ attrs: { prop: "nextNode", label: "通知消息" },
31841
31975
  },
31842
31976
  [
31843
- _c("el-input", {
31844
- attrs: { placeholder: "请填写办理说明" },
31977
+ _c("es-input", {
31978
+ staticStyle: {
31979
+ "border-color": "#ccc",
31980
+ padding: "5px",
31981
+ "border-radius": "5px",
31982
+ "font-size": "13px",
31983
+ },
31984
+ attrs: {
31985
+ type: "textarea",
31986
+ readonly: _vm.notificationMessageReadOnly == "true",
31987
+ },
31845
31988
  model: {
31846
- value: _vm.nextNode.handleExplain,
31989
+ value: _vm.newsNoice,
31847
31990
  callback: function ($$v) {
31848
- _vm.$set(_vm.nextNode, "handleExplain", $$v)
31991
+ _vm.newsNoice = $$v
31849
31992
  },
31850
- expression: "nextNode.handleExplain",
31993
+ expression: "newsNoice",
31851
31994
  },
31852
31995
  }),
31853
31996
  ],
31854
31997
  1
31855
- )
31856
- : _vm._e(),
31857
- _vm.configInfo.isCdjxjTaskHandle != "true"
31858
- ? _c(
31859
- "el-form-item",
31860
- {
31861
- attrs: {
31862
- prop: "noticeType",
31863
- label: "通知方式",
31864
- rules: [
31865
- {
31866
- required: false,
31867
- message: "请选择通知方式",
31868
- trigger: "blur",
31869
- },
31870
- ],
31871
- },
31872
- },
31873
- [
31874
- _c(
31875
- "el-checkbox-group",
31876
- {
31877
- staticStyle: { display: "contents" },
31878
- model: {
31879
- value: _vm.nextNode.noticeType,
31880
- callback: function ($$v) {
31881
- _vm.$set(_vm.nextNode, "noticeType", $$v)
31882
- },
31883
- expression: "nextNode.noticeType",
31884
- },
31885
- },
31886
- _vm._l(_vm.noticeList, function (item) {
31887
- return _c(
31888
- "el-checkbox",
31889
- {
31890
- key: item.cciValue,
31891
- attrs: {
31892
- label: item.cciValue,
31893
- disabled:
31894
- _vm.configInfo.readOnlyNotificationType.indexOf(
31895
- item.cciValue
31896
- ) != -1,
31897
- },
31898
- },
31899
- [
31900
- _vm._v(
31901
- "\n " +
31902
- _vm._s(item.shortName) +
31903
- "\n "
31904
- ),
31905
- ]
31906
- )
31907
- }),
31908
- 1
31909
- ),
31910
- ],
31911
- 1
31912
- )
31913
- : _vm._e(),
31914
- _c(
31915
- "el-form-item",
31916
- {
31917
- directives: [
31918
- {
31919
- name: "show",
31920
- rawName: "v-show",
31921
- value:
31922
- _vm.nextNode.noticeType.length != 0 &&
31923
- _vm.configInfo.isCdjxjTaskHandle != "true" &&
31924
- _vm.type == "transfer",
31925
- expression:
31926
- "\n nextNode.noticeType.length != 0 &&\n configInfo.isCdjxjTaskHandle != 'true' &&\n type == 'transfer'\n ",
31927
- },
31928
- ],
31929
- attrs: { prop: "nextNode", label: "通知消息" },
31930
- },
31931
- [
31932
- _c("es-input", {
31933
- staticStyle: {
31934
- "border-color": "#ccc",
31935
- padding: "5px",
31936
- "border-radius": "5px",
31937
- "font-size": "13px",
31938
- },
31939
- attrs: {
31940
- type: "textarea",
31941
- readonly:
31942
- _vm.configInfo.notificationMessageReadOnly == "true",
31943
- },
31944
- model: {
31945
- value: _vm.newsNoice,
31946
- callback: function ($$v) {
31947
- _vm.newsNoice = $$v
31948
- },
31949
- expression: "newsNoice",
31950
- },
31951
- }),
31998
+ ),
31952
31999
  ],
31953
32000
  1
31954
32001
  ),
@@ -31980,11 +32027,11 @@ var startTaskReadvue_type_template_id_4a0a6b09_render = function () {
31980
32027
  1
31981
32028
  )
31982
32029
  }
31983
- var startTaskReadvue_type_template_id_4a0a6b09_staticRenderFns = []
31984
- startTaskReadvue_type_template_id_4a0a6b09_render._withStripped = true
32030
+ var startTaskReadvue_type_template_id_1372220b_staticRenderFns = []
32031
+ startTaskReadvue_type_template_id_1372220b_render._withStripped = true
31985
32032
 
31986
32033
 
31987
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=4a0a6b09&
32034
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=1372220b&
31988
32035
 
31989
32036
  // 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&
31990
32037
  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; };
@@ -32146,6 +32193,9 @@ var startTaskReadvue_type_script_lang_js_components;
32146
32193
  //
32147
32194
  //
32148
32195
  //
32196
+ //
32197
+ //
32198
+ //
32149
32199
 
32150
32200
 
32151
32201
 
@@ -32164,6 +32214,8 @@ var startTaskReadvue_type_script_lang_js_components;
32164
32214
  return {
32165
32215
  loading: false,
32166
32216
  newsNoice: '',
32217
+ readOnlyNotificationType: '',
32218
+ notificationMessageReadOnly: false,
32167
32219
  nextNode: {
32168
32220
  nextUser: [],
32169
32221
  userInfo: [],
@@ -32402,6 +32454,15 @@ var startTaskReadvue_type_script_lang_js_components;
32402
32454
 
32403
32455
  if (status === 'success') {
32404
32456
  _this5.noticeList = data;
32457
+ var arr = [];
32458
+ _this5.noticeList.map(function (item) {
32459
+ _this5.nextNode.noticeType.map(function (x) {
32460
+ if (x == item.cciValue) {
32461
+ arr.push(x);
32462
+ }
32463
+ });
32464
+ });
32465
+ _this5.nextNode.noticeType = arr;
32405
32466
  }
32406
32467
  }).catch(function (err) {
32407
32468
  _this5.loading = false;
@@ -32564,11 +32625,16 @@ var startTaskReadvue_type_script_lang_js_components;
32564
32625
  url: api["w" /* findSysCodes */]
32565
32626
  }).then(function (res) {
32566
32627
  var status = res.status,
32567
- message = res.message;
32628
+ message = res.message,
32629
+ data = res.data;
32568
32630
 
32569
32631
  _this8.loading = false;
32570
32632
  if (status === 'success') {
32571
32633
  _this8.nextNode.noticeType = message.split(',');
32634
+ if (data) {
32635
+ _this8.notificationMessageReadOnly = data.notificationMessageReadOnly;
32636
+ _this8.readOnlyNotificationType = data.readOnlyNotificationType;
32637
+ }
32572
32638
  } else {
32573
32639
  _this8.$message.error(message || '系统错误,请联系管理员!');
32574
32640
  }
@@ -32599,8 +32665,8 @@ var startTaskReadvue_type_script_lang_js_components;
32599
32665
 
32600
32666
  var startTaskRead_component = normalizeComponent(
32601
32667
  src_startTaskReadvue_type_script_lang_js_,
32602
- startTaskReadvue_type_template_id_4a0a6b09_render,
32603
- startTaskReadvue_type_template_id_4a0a6b09_staticRenderFns,
32668
+ startTaskReadvue_type_template_id_1372220b_render,
32669
+ startTaskReadvue_type_template_id_1372220b_staticRenderFns,
32604
32670
  false,
32605
32671
  null,
32606
32672
  null,
@@ -32609,8 +32675,8 @@ var startTaskRead_component = normalizeComponent(
32609
32675
  )
32610
32676
 
32611
32677
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
32612
- // 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=74c4b024&
32613
- var taskUnionExaminevue_type_template_id_74c4b024_render = function () {
32678
+ // 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=fa1f04ee&
32679
+ var taskUnionExaminevue_type_template_id_fa1f04ee_render = function () {
32614
32680
  var _vm = this
32615
32681
  var _h = _vm.$createElement
32616
32682
  var _c = _vm._self._c || _h
@@ -32773,9 +32839,11 @@ var taskUnionExaminevue_type_template_id_74c4b024_render = function () {
32773
32839
  key: item.cciValue,
32774
32840
  attrs: {
32775
32841
  label: item.cciValue,
32776
- disabled:
32777
- _vm.readOnlyNotificationType.indexOf(item.cciValue) !=
32778
- -1,
32842
+ disabled: _vm.readOnlyNotificationType
32843
+ ? _vm.readOnlyNotificationType.indexOf(
32844
+ item.cciValue
32845
+ ) != -1
32846
+ : false,
32779
32847
  },
32780
32848
  },
32781
32849
  [
@@ -32855,11 +32923,11 @@ var taskUnionExaminevue_type_template_id_74c4b024_render = function () {
32855
32923
  1
32856
32924
  )
32857
32925
  }
32858
- var taskUnionExaminevue_type_template_id_74c4b024_staticRenderFns = []
32859
- taskUnionExaminevue_type_template_id_74c4b024_render._withStripped = true
32926
+ var taskUnionExaminevue_type_template_id_fa1f04ee_staticRenderFns = []
32927
+ taskUnionExaminevue_type_template_id_fa1f04ee_render._withStripped = true
32860
32928
 
32861
32929
 
32862
- // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=74c4b024&
32930
+ // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=fa1f04ee&
32863
32931
 
32864
32932
  // 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&
32865
32933
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -32982,6 +33050,11 @@ var taskUnionExaminevue_type_script_lang_js_components;
32982
33050
  //
32983
33051
  //
32984
33052
  //
33053
+ //
33054
+ //
33055
+ //
33056
+ //
33057
+ //
32985
33058
 
32986
33059
 
32987
33060
 
@@ -33031,6 +33104,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
33031
33104
  mounted: function mounted() {
33032
33105
  this.loading = true;
33033
33106
  this.newMultiple = this.multiple;
33107
+ this.getNodeType();
33034
33108
  if (this.type === 'taskReview') return this.getTaskReview();
33035
33109
  this.getInfo();
33036
33110
  },
@@ -33114,7 +33188,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
33114
33188
  _this2.currentOrgProcessKey = taskExamine.currentOrgProcessKey;
33115
33189
  _this2.getFind();
33116
33190
  _this2.getMessage();
33117
- _this2.getNodeType();
33118
33191
  } else {
33119
33192
  _this2.$message.error(message || '系统错误,请联系管理员!');
33120
33193
  }
@@ -33180,7 +33253,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
33180
33253
  _this3.isMultiple(userSelectionType);
33181
33254
  _this3.getFind();
33182
33255
  _this3.getMessage();
33183
- _this3.getNodeType();
33184
33256
  } else {
33185
33257
  _this3.$message.error(message || '系统错误,请联系管理员!');
33186
33258
  }
@@ -33284,7 +33356,10 @@ var taskUnionExaminevue_type_script_lang_js_components;
33284
33356
 
33285
33357
  utils_util["a" /* default */].ajax({
33286
33358
  url: api["u" /* findCodeValues */],
33287
- params: { ccCode: 'notification_type', userId: utils_util["a" /* default */].getStorage('userId') }
33359
+ params: {
33360
+ ccCode: 'notification_type',
33361
+ userId: utils_util["a" /* default */].getStorage('userId')
33362
+ }
33288
33363
  }).then(function (res) {
33289
33364
  var status = res.status,
33290
33365
  data = res.data;
@@ -33331,6 +33406,15 @@ var taskUnionExaminevue_type_script_lang_js_components;
33331
33406
 
33332
33407
  if (status === 'success') {
33333
33408
  _this7.infoList.noticeType = message.split(',');
33409
+ var arr = [];
33410
+ _this7.infoList.noticeList.map(function (item) {
33411
+ _this7.infoList.noticeType.map(function (x) {
33412
+ if (x == item.cciValue) {
33413
+ arr.push(x);
33414
+ }
33415
+ });
33416
+ });
33417
+ _this7.infoList.noticeType = arr;
33334
33418
  } else {
33335
33419
  _this7.$message.error(message || '系统错误,请联系管理员!');
33336
33420
  }
@@ -33355,8 +33439,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
33355
33439
 
33356
33440
  var taskUnionExamine_component = normalizeComponent(
33357
33441
  component_taskUnionExaminevue_type_script_lang_js_,
33358
- taskUnionExaminevue_type_template_id_74c4b024_render,
33359
- taskUnionExaminevue_type_template_id_74c4b024_staticRenderFns,
33442
+ taskUnionExaminevue_type_template_id_fa1f04ee_render,
33443
+ taskUnionExaminevue_type_template_id_fa1f04ee_staticRenderFns,
33360
33444
  false,
33361
33445
  null,
33362
33446
  null,
@@ -34067,6 +34151,16 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34067
34151
  //
34068
34152
  //
34069
34153
  //
34154
+ //
34155
+ //
34156
+ //
34157
+ //
34158
+ //
34159
+ //
34160
+ //
34161
+ //
34162
+ //
34163
+ //
34070
34164
 
34071
34165
 
34072
34166
 
@@ -34247,6 +34341,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34247
34341
  mounted: function mounted() {
34248
34342
  this.businessIds = this.businessId;
34249
34343
  this.nextNode.nextNodeId = this.nextNodeId;
34344
+ this.getNodeType();
34250
34345
  !this.isFlow && (this.newTypeCode = this.typeCode || this.$route.query.typecode);
34251
34346
  if (this.isFlow) {
34252
34347
  this.businessId && this.getProcess();
@@ -34596,11 +34691,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34596
34691
  });
34597
34692
  },
34598
34693
 
34599
- /**
34600
- * saveInfo
34601
- * @desc:暂存
34602
- * @author liufan
34603
- * @date 2022年9月9日
34694
+ /**
34695
+ * saveInfo
34696
+ * @desc:暂存
34697
+ * @author liufan
34698
+ * @date 2022年9月9日
34604
34699
  **/
34605
34700
  saveInfo: function saveInfo(type, btn) {
34606
34701
  var _this6 = this;
@@ -34662,11 +34757,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34662
34757
  });
34663
34758
  },
34664
34759
 
34665
- /**
34666
- * rejectBtn
34667
- * @desc:点击驳回
34668
- * @author liufan
34669
- * @date 2022年5月25日
34760
+ /**
34761
+ * rejectBtn
34762
+ * @desc:点击驳回
34763
+ * @author liufan
34764
+ * @date 2022年5月25日
34670
34765
  **/
34671
34766
  rejectBtn: function rejectBtn() {
34672
34767
  var _this8 = this;
@@ -34684,11 +34779,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34684
34779
  }
34685
34780
  },
34686
34781
 
34687
- /**
34688
- * taskReadBtn
34689
- * @desc:点击分阅
34690
- * @author liufan
34691
- * @date 2022年5月25日
34782
+ /**
34783
+ * taskReadBtn
34784
+ * @desc:点击分阅
34785
+ * @author liufan
34786
+ * @date 2022年5月25日
34692
34787
  **/
34693
34788
  taskReadBtn: function taskReadBtn() {
34694
34789
  var _this9 = this;
@@ -34707,11 +34802,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34707
34802
  }
34708
34803
  },
34709
34804
 
34710
- /**
34711
- * getFind
34712
- * @desc:获取通知方式
34713
- * @author liufan
34714
- * @date 2022年5月25日
34805
+ /**
34806
+ * getFind
34807
+ * @desc:获取通知方式
34808
+ * @author liufan
34809
+ * @date 2022年5月25日
34715
34810
  **/
34716
34811
  getFind: function getFind() {
34717
34812
  var _this10 = this;
@@ -34724,6 +34819,15 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34724
34819
 
34725
34820
  if (status === 'success') {
34726
34821
  _this10.nextNode.notificationType = message.split(',');
34822
+ var arr = [];
34823
+ _this10.newsList.map(function (item) {
34824
+ _this10.nextNode.notificationType.map(function (x) {
34825
+ if (x == item.cciValue) {
34826
+ arr.push(x);
34827
+ }
34828
+ });
34829
+ });
34830
+ _this10.nextNode.notificationType = arr;
34727
34831
  }
34728
34832
  }).catch(function (err) {
34729
34833
  if (err.message && err.message !== 'canceled') {
@@ -34732,12 +34836,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34732
34836
  });
34733
34837
  },
34734
34838
 
34735
- /**
34736
- * endFlows
34737
- * @desc:直接办结
34738
- * @author liufan
34739
- * @param {Object} res 直接办结数据
34740
- * @date 2022年5月25日
34839
+ /**
34840
+ * endFlows
34841
+ * @desc:直接办结
34842
+ * @author liufan
34843
+ * @param {Object} res 直接办结数据
34844
+ * @date 2022年5月25日
34741
34845
  **/
34742
34846
  endFlows: function endFlows(res) {
34743
34847
  var _this11 = this;
@@ -34791,12 +34895,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34791
34895
  }).catch(function (e) {});
34792
34896
  },
34793
34897
 
34794
- /**
34795
- * goView
34796
- * @desc:更多流程按钮操作
34797
- * @author liufan
34798
- * @param {Object} res 当前点击操作按钮数据
34799
- * @date 2022年5月25日
34898
+ /**
34899
+ * goView
34900
+ * @desc:更多流程按钮操作
34901
+ * @author liufan
34902
+ * @param {Object} res 当前点击操作按钮数据
34903
+ * @date 2022年5月25日
34800
34904
  **/
34801
34905
  goView: function goView(res) {
34802
34906
  // 驳回并办结:rejectAndEndHtml
@@ -34873,11 +34977,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34873
34977
  // isCanStartSubFlow
34874
34978
  },
34875
34979
 
34876
- /**
34877
- * toTakeAdvice
34878
- * @desc:征求意见
34879
- * @author liufan
34880
- * @date 2022年9月29日
34980
+ /**
34981
+ * toTakeAdvice
34982
+ * @desc:征求意见
34983
+ * @author liufan
34984
+ * @date 2022年9月29日
34881
34985
  **/
34882
34986
  toTakeAdvice: function toTakeAdvice(res) {
34883
34987
  var _this13 = this;
@@ -34921,11 +35025,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34921
35025
  });
34922
35026
  },
34923
35027
 
34924
- /**
34925
- * toStartDraf
34926
- * @desc: 稿件递送、联合审核、复核
34927
- * @author liufan
34928
- * @date 2022年9月29日
35028
+ /**
35029
+ * toStartDraf
35030
+ * @desc: 稿件递送、联合审核、复核
35031
+ * @author liufan
35032
+ * @date 2022年9月29日
34929
35033
  **/
34930
35034
  toStartDraf: function toStartDraf(res) {
34931
35035
  var _this15 = this;
@@ -34939,11 +35043,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34939
35043
  }
34940
35044
  },
34941
35045
 
34942
- /**
34943
- * toSendMsg
34944
- * @desc:核稿通知
34945
- * @author liufan
34946
- * @date 2022年9月29日
35046
+ /**
35047
+ * toSendMsg
35048
+ * @desc:核稿通知
35049
+ * @author liufan
35050
+ * @date 2022年9月29日
34947
35051
  **/
34948
35052
  toSendMsg: function toSendMsg(res) {
34949
35053
  var _this16 = this;
@@ -34957,11 +35061,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34957
35061
  }
34958
35062
  },
34959
35063
 
34960
- /**
34961
- * toTaskReadAndEnd
34962
- * @desc:分阅并办结
34963
- * @author liufan
34964
- * @date 2022年9月29日
35064
+ /**
35065
+ * toTaskReadAndEnd
35066
+ * @desc:分阅并办结
35067
+ * @author liufan
35068
+ * @date 2022年9月29日
34965
35069
  **/
34966
35070
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
34967
35071
  var _this17 = this;
@@ -34979,11 +35083,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34979
35083
  }
34980
35084
  },
34981
35085
 
34982
- /**
34983
- * rejectAndEnd
34984
- * @desc:驳回并办结
34985
- * @author liufan
34986
- * @date 2022年9月29日
35086
+ /**
35087
+ * rejectAndEnd
35088
+ * @desc:驳回并办结
35089
+ * @author liufan
35090
+ * @date 2022年9月29日
34987
35091
  **/
34988
35092
  rejectAndEnd: function rejectAndEnd(res) {
34989
35093
  var _this18 = this;
@@ -35038,11 +35142,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35038
35142
  });
35039
35143
  },
35040
35144
 
35041
- /**
35042
- * toTransfer
35043
- * @desc:转办
35044
- * @author liufan
35045
- * @date 2022年9月29日
35145
+ /**
35146
+ * toTransfer
35147
+ * @desc:转办
35148
+ * @author liufan
35149
+ * @date 2022年9月29日
35046
35150
  **/
35047
35151
  toTransfer: function toTransfer(res) {
35048
35152
  var _this20 = this;
@@ -35058,11 +35162,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35058
35162
  }
35059
35163
  },
35060
35164
 
35061
- /**
35062
- * getNodeInfo
35063
- * @desc:获取节点信息
35064
- * @author liufan
35065
- * @date 2022年5月25日
35165
+ /**
35166
+ * getNodeInfo
35167
+ * @desc:获取节点信息
35168
+ * @author liufan
35169
+ * @date 2022年5月25日
35066
35170
  **/
35067
35171
  getNodeInfo: function getNodeInfo() {
35068
35172
  var _this21 = this;
@@ -35159,12 +35263,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35159
35263
  });
35160
35264
  },
35161
35265
 
35162
- /**
35163
- * selecNext
35164
- * @desc:下步节点变化时更新数据
35165
- * @author liufan
35166
- * @param {String} val 当前选中值
35167
- * @date 2022年5月25日
35266
+ /**
35267
+ * selecNext
35268
+ * @desc:下步节点变化时更新数据
35269
+ * @author liufan
35270
+ * @param {String} val 当前选中值
35271
+ * @date 2022年5月25日
35168
35272
  **/
35169
35273
  selecNext: function selecNext(val, type, isDef) {
35170
35274
  var _this22 = this;
@@ -35273,11 +35377,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35273
35377
  if (isDef !== true) this.getNodeInfo();
35274
35378
  },
35275
35379
 
35276
- /**
35277
- * isMultiple
35278
- * @desc:是否多选
35279
- * @author liufan
35280
- * @date 2022年9月13日
35380
+ /**
35381
+ * isMultiple
35382
+ * @desc:是否多选
35383
+ * @author liufan
35384
+ * @date 2022年9月13日
35281
35385
  **/
35282
35386
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
35283
35387
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -35309,11 +35413,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35309
35413
  }
35310
35414
  },
35311
35415
 
35312
- /**
35313
- * getHedInfo
35314
- * @desc:获取审核页面数据
35315
- * @author liufan
35316
- * @date 2022年5月25日
35416
+ /**
35417
+ * getHedInfo
35418
+ * @desc:获取审核页面数据
35419
+ * @author liufan
35420
+ * @date 2022年5月25日
35317
35421
  **/
35318
35422
  getHedInfo: function getHedInfo() {
35319
35423
  var _this23 = this;
@@ -35528,7 +35632,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35528
35632
  _this23.presetTaskNodeMap = presetTaskNodeMap;
35529
35633
  _this23.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
35530
35634
  _this23.getFind();
35531
- _this23.getNodeType();
35635
+
35532
35636
  _this23.getNodeInfo();
35533
35637
  } else {
35534
35638
  if (res.status === 'taskCompleted') {
@@ -35547,13 +35651,13 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35547
35651
  });
35548
35652
  },
35549
35653
 
35550
- /**
35551
- * closeProcess
35552
- * @desc:关闭弹窗
35553
- * @author liufan
35554
- * @param {boolean} val 当前是否办理流程
35555
- * @param {String} type 当前点击的弹窗类型
35556
- * @date 2022年5月25日
35654
+ /**
35655
+ * closeProcess
35656
+ * @desc:关闭弹窗
35657
+ * @author liufan
35658
+ * @param {boolean} val 当前是否办理流程
35659
+ * @param {String} type 当前点击的弹窗类型
35660
+ * @date 2022年5月25日
35557
35661
  **/
35558
35662
  closeProcess: function closeProcess(val, type, closeParent) {
35559
35663
  if (closeParent) {
@@ -35566,23 +35670,23 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35566
35670
  }
35567
35671
  },
35568
35672
 
35569
- /**
35570
- * selectChange
35571
- * @desc:常用语选择
35572
- * @author liufan
35573
- * @param {String} val 选中值
35574
- * @date 2022年5月25日
35673
+ /**
35674
+ * selectChange
35675
+ * @desc:常用语选择
35676
+ * @author liufan
35677
+ * @param {String} val 选中值
35678
+ * @date 2022年5月25日
35575
35679
  **/
35576
35680
  selectChange: function selectChange(val) {
35577
35681
  this.value = val;
35578
35682
  },
35579
35683
 
35580
- /**
35581
- * upDate
35582
- * @desc:修改常用语
35583
- * @author liufan
35584
- * @param {Object} val 修改值
35585
- * @date 2022年5月25日
35684
+ /**
35685
+ * upDate
35686
+ * @desc:修改常用语
35687
+ * @author liufan
35688
+ * @param {Object} val 修改值
35689
+ * @date 2022年5月25日
35586
35690
  **/
35587
35691
  upDate: function upDate(val) {
35588
35692
  this.FormData.id = val.id;
@@ -35590,11 +35694,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35590
35694
  },
35591
35695
 
35592
35696
 
35593
- /**
35594
- * getProcess
35595
- * @desc:获取选择流程
35596
- * @author liufan
35597
- * @date 2022年5月25日
35697
+ /**
35698
+ * getProcess
35699
+ * @desc:获取选择流程
35700
+ * @author liufan
35701
+ * @date 2022年5月25日
35598
35702
  **/
35599
35703
  getProcess: function getProcess() {
35600
35704
  var _this24 = this;
@@ -35647,11 +35751,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35647
35751
  });
35648
35752
  },
35649
35753
 
35650
- /**
35651
- * getPendedhistoryList
35652
- * @desc:获取流程列表
35653
- * @author liufan
35654
- * @date 2022年5月25日
35754
+ /**
35755
+ * getPendedhistoryList
35756
+ * @desc:获取流程列表
35757
+ * @author liufan
35758
+ * @date 2022年5月25日
35655
35759
  **/
35656
35760
  getPendedhistoryList: function getPendedhistoryList() {
35657
35761
  var _this25 = this;
@@ -35683,12 +35787,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35683
35787
  },
35684
35788
 
35685
35789
  // 提交流程
35686
- /**
35687
- * subProcess
35688
- * @desc:提交流程
35689
- * @author liufan
35690
- * @param {String} formName 当前form表单ref值
35691
- * @date 2022年5月25日
35790
+ /**
35791
+ * subProcess
35792
+ * @desc:提交流程
35793
+ * @author liufan
35794
+ * @param {String} formName 当前form表单ref值
35795
+ * @date 2022年5月25日
35692
35796
  **/
35693
35797
  subProcess: function subProcess(val) {
35694
35798
  var _this26 = this;
@@ -35938,8 +36042,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
35938
36042
 
35939
36043
  var flow_src_main_component = normalizeComponent(
35940
36044
  packages_flow_src_mainvue_type_script_lang_js_,
35941
- mainvue_type_template_id_7e9b7c60_render,
35942
- mainvue_type_template_id_7e9b7c60_staticRenderFns,
36045
+ mainvue_type_template_id_8a660742_render,
36046
+ mainvue_type_template_id_8a660742_staticRenderFns,
35943
36047
  false,
35944
36048
  null,
35945
36049
  null,
@@ -41582,8 +41686,8 @@ layout_src_main.install = function (Vue) {
41582
41686
  };
41583
41687
 
41584
41688
  /* harmony default export */ var packages_layout = (layout_src_main);
41585
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=3086e0dc&
41586
- var mainvue_type_template_id_3086e0dc_render = function () {
41689
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=d63cd28c&
41690
+ var mainvue_type_template_id_d63cd28c_render = function () {
41587
41691
  var _vm = this
41588
41692
  var _h = _vm.$createElement
41589
41693
  var _c = _vm._self._c || _h
@@ -42703,7 +42807,7 @@ var mainvue_type_template_id_3086e0dc_render = function () {
42703
42807
  )
42704
42808
  : _vm._e()
42705
42809
  }
42706
- var mainvue_type_template_id_3086e0dc_staticRenderFns = [
42810
+ var mainvue_type_template_id_d63cd28c_staticRenderFns = [
42707
42811
  function () {
42708
42812
  var _vm = this
42709
42813
  var _h = _vm.$createElement
@@ -42718,10 +42822,10 @@ var mainvue_type_template_id_3086e0dc_staticRenderFns = [
42718
42822
  ])
42719
42823
  },
42720
42824
  ]
42721
- mainvue_type_template_id_3086e0dc_render._withStripped = true
42825
+ mainvue_type_template_id_d63cd28c_render._withStripped = true
42722
42826
 
42723
42827
 
42724
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=3086e0dc&
42828
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=d63cd28c&
42725
42829
 
42726
42830
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=cab38660&
42727
42831
  var resetPasswordvue_type_template_id_cab38660_render = function () {
@@ -44865,6 +44969,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
44865
44969
  useCaseCodes: results.resourceCodes
44866
44970
  }
44867
44971
  });
44972
+ console.log(this.doorIndex, 9999999);
44868
44973
  if (this.launchShow) {
44869
44974
  this.$message({
44870
44975
  message: '登录成功!',
@@ -45047,8 +45152,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
45047
45152
 
45048
45153
  var login_src_main_component = normalizeComponent(
45049
45154
  packages_login_src_mainvue_type_script_lang_js_,
45050
- mainvue_type_template_id_3086e0dc_render,
45051
- mainvue_type_template_id_3086e0dc_staticRenderFns,
45155
+ mainvue_type_template_id_d63cd28c_render,
45156
+ mainvue_type_template_id_d63cd28c_staticRenderFns,
45052
45157
  false,
45053
45158
  null,
45054
45159
  null,
@@ -45165,8 +45270,8 @@ mainvue_type_template_id_b17beeee_render._withStripped = true
45165
45270
 
45166
45271
  // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=b17beeee&
45167
45272
 
45168
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=b8c4b516&scoped=true&
45169
- var simplicityvue_type_template_id_b8c4b516_scoped_true_render = function () {
45273
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=5bef793e&scoped=true&
45274
+ var simplicityvue_type_template_id_5bef793e_scoped_true_render = function () {
45170
45275
  var _vm = this
45171
45276
  var _h = _vm.$createElement
45172
45277
  var _c = _vm._self._c || _h
@@ -45671,7 +45776,7 @@ var simplicityvue_type_template_id_b8c4b516_scoped_true_render = function () {
45671
45776
  src: item.url,
45672
45777
  },
45673
45778
  })
45674
- : item.method === "wujie" && item.url
45779
+ : item.method === "wujie"
45675
45780
  ? _c("es-wujie", {
45676
45781
  attrs: {
45677
45782
  host: _vm.host,
@@ -45796,11 +45901,11 @@ var simplicityvue_type_template_id_b8c4b516_scoped_true_render = function () {
45796
45901
  ),
45797
45902
  ])
45798
45903
  }
45799
- var simplicityvue_type_template_id_b8c4b516_scoped_true_staticRenderFns = []
45800
- simplicityvue_type_template_id_b8c4b516_scoped_true_render._withStripped = true
45904
+ var simplicityvue_type_template_id_5bef793e_scoped_true_staticRenderFns = []
45905
+ simplicityvue_type_template_id_5bef793e_scoped_true_render._withStripped = true
45801
45906
 
45802
45907
 
45803
- // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=b8c4b516&scoped=true&
45908
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=5bef793e&scoped=true&
45804
45909
 
45805
45910
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
45806
45911
  var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
@@ -47696,10 +47801,10 @@ appsvue_type_template_id_71b9cb14_scoped_true_render._withStripped = true
47696
47801
  this.$emit('click', res);
47697
47802
  },
47698
47803
 
47699
- /**
47700
- * @desc:获取气泡提醒
47701
- * @author huangbo
47702
- * @date 2024年9月7日
47804
+ /**
47805
+ * @desc:获取气泡提醒
47806
+ * @author huangbo
47807
+ * @date 2024年9月7日
47703
47808
  **/
47704
47809
  getBadge: function getBadge(res) {
47705
47810
  var num = res.tips || 0;
@@ -51307,15 +51412,12 @@ var isIE = navigator.userAgent.indexOf('MSIE') != -1;
51307
51412
  var simplicityvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.systemMode || 'default';
51308
51413
  var events = [function (tabs, index, that) {
51309
51414
  var tab = tabs[index];
51415
+
51310
51416
  if (tab.method == 'iframe') {
51311
51417
  tabs[index].url = utils_util["a" /* default */].handlerUrl(tab.url);
51312
51418
  }
51313
51419
  if (tab.method === 'wujie' && tab.appCode) {
51314
- var url = tab.url;
51315
- tab.url = '';
51316
- that.$nextTick(function () {
51317
- tab.url = url;
51318
- });
51420
+ window.document.querySelector('iframe[name=' + tab.appCode + ']').contentWindow.location.reload(true);
51319
51421
  }
51320
51422
  if (tab.method === 'router') {
51321
51423
  that.$set(tabs[index], 'keys', utils_util["a" /* default */].uuid());
@@ -51655,10 +51757,10 @@ var events = [function (tabs, index, that) {
51655
51757
  },
51656
51758
 
51657
51759
  methods: {
51658
- /**
51659
- * @desc:匹配路由
51660
- * @author huangbo
51661
- * @date 2024年9月7日
51760
+ /**
51761
+ * @desc:匹配路由
51762
+ * @author huangbo
51763
+ * @date 2024年9月7日
51662
51764
  **/
51663
51765
  hasRouter: function hasRouter(res, url, code) {
51664
51766
  if (!url) {
@@ -51702,10 +51804,10 @@ var events = [function (tabs, index, that) {
51702
51804
  return false;
51703
51805
  },
51704
51806
 
51705
- /**
51706
- * @desc:获取初始数据
51707
- * @author huangbo
51708
- * @date 2024年9月7日
51807
+ /**
51808
+ * @desc:获取初始数据
51809
+ * @author huangbo
51810
+ * @date 2024年9月7日
51709
51811
  **/
51710
51812
  init: function init(results, first) {
51711
51813
  this.setConfig(results);
@@ -51714,10 +51816,10 @@ var events = [function (tabs, index, that) {
51714
51816
  }
51715
51817
  },
51716
51818
 
51717
- /**
51718
- * @desc:设置用户配置及信息
51719
- * @author huangbo
51720
- * @date 2024年9月7日
51819
+ /**
51820
+ * @desc:设置用户配置及信息
51821
+ * @author huangbo
51822
+ * @date 2024年9月7日
51721
51823
  **/
51722
51824
  setConfig: function setConfig(results) {
51723
51825
  localStorage.setItem('mainConfig', JSON.stringify(results));
@@ -51828,10 +51930,10 @@ var events = [function (tabs, index, that) {
51828
51930
  }
51829
51931
  },
51830
51932
 
51831
- /**
51832
- * @desc:获取所有应用
51833
- * @author huangbo
51834
- * @date 2024年9月7日
51933
+ /**
51934
+ * @desc:获取所有应用
51935
+ * @author huangbo
51936
+ * @date 2024年9月7日
51835
51937
  **/
51836
51938
  getApplications: function getApplications() {
51837
51939
  var _this = this;
@@ -51879,10 +51981,10 @@ var events = [function (tabs, index, that) {
51879
51981
  });
51880
51982
  },
51881
51983
 
51882
- /**
51883
- * @desc:获取菜单列表
51884
- * @author huangbo
51885
- * @date 2024年9月7日
51984
+ /**
51985
+ * @desc:获取菜单列表
51986
+ * @author huangbo
51987
+ * @date 2024年9月7日
51886
51988
  **/
51887
51989
  getMenus: function getMenus(loading) {
51888
51990
  var _this2 = this;
@@ -51915,10 +52017,10 @@ var events = [function (tabs, index, that) {
51915
52017
  });
51916
52018
  },
51917
52019
 
51918
- /**
51919
- * @desc:处理菜单列表
51920
- * @author huangbo
51921
- * @date 2024年9月7日
52020
+ /**
52021
+ * @desc:处理菜单列表
52022
+ * @author huangbo
52023
+ * @date 2024年9月7日
51922
52024
  **/
51923
52025
  renderMenus: function renderMenus(res) {
51924
52026
  this.menus = res;
@@ -52008,10 +52110,10 @@ var events = [function (tabs, index, that) {
52008
52110
  }
52009
52111
  },
52010
52112
 
52011
- /**
52012
- * @desc:设置页面加载类型
52013
- * @author huangbo
52014
- * @date 2024年9月7日
52113
+ /**
52114
+ * @desc:设置页面加载类型
52115
+ * @author huangbo
52116
+ * @date 2024年9月7日
52015
52117
  **/
52016
52118
  setIframeType: function setIframeType(res) {
52017
52119
  var url = res.url;
@@ -52067,10 +52169,10 @@ var events = [function (tabs, index, that) {
52067
52169
  return res;
52068
52170
  },
52069
52171
 
52070
- /**
52071
- * @desc:获取菜单
52072
- * @author huangbo
52073
- * @date 2024年9月7日
52172
+ /**
52173
+ * @desc:获取菜单
52174
+ * @author huangbo
52175
+ * @date 2024年9月7日
52074
52176
  **/
52075
52177
  getMenu: function getMenu(menus, res, key) {
52076
52178
  if (Array.isArray(menus)) {
@@ -52099,10 +52201,10 @@ var events = [function (tabs, index, that) {
52099
52201
  return false;
52100
52202
  },
52101
52203
 
52102
- /**
52103
- * @desc:获取菜单第一条数据
52104
- * @author huangbo
52105
- * @date 2024年9月7日
52204
+ /**
52205
+ * @desc:获取菜单第一条数据
52206
+ * @author huangbo
52207
+ * @date 2024年9月7日
52106
52208
  **/
52107
52209
  getFirst: function getFirst(obj) {
52108
52210
  if (!obj) {
@@ -52121,10 +52223,10 @@ var events = [function (tabs, index, that) {
52121
52223
  }
52122
52224
  },
52123
52225
 
52124
- /**
52125
- * @desc:遍历设置菜单气泡提醒
52126
- * @author huangbo
52127
- * @date 2024年9月7日
52226
+ /**
52227
+ * @desc:遍历设置菜单气泡提醒
52228
+ * @author huangbo
52229
+ * @date 2024年9月7日
52128
52230
  **/
52129
52231
  setTips: function setTips(obj) {
52130
52232
  var _this3 = this;
@@ -52168,10 +52270,10 @@ var events = [function (tabs, index, that) {
52168
52270
  return false;
52169
52271
  },
52170
52272
 
52171
- /**
52172
- * @desc:获取气泡提醒
52173
- * @author huangbo
52174
- * @date 2024年9月7日
52273
+ /**
52274
+ * @desc:获取气泡提醒
52275
+ * @author huangbo
52276
+ * @date 2024年9月7日
52175
52277
  **/
52176
52278
  getBadge: function getBadge(res) {
52177
52279
  var num = res.tips || 0;
@@ -52185,10 +52287,10 @@ var events = [function (tabs, index, that) {
52185
52287
  };
52186
52288
  },
52187
52289
 
52188
- /**
52189
- * @desc:开启weosocket
52190
- * @author huangbo
52191
- * @date 2024年9月7日
52290
+ /**
52291
+ * @desc:开启weosocket
52292
+ * @author huangbo
52293
+ * @date 2024年9月7日
52192
52294
  **/
52193
52295
  initWebSocket: function initWebSocket() {
52194
52296
  var _this4 = this;
@@ -52236,10 +52338,10 @@ var events = [function (tabs, index, that) {
52236
52338
  });
52237
52339
  },
52238
52340
 
52239
- /**
52240
- * @desc:显示用户信息
52241
- * @author huangbo
52242
- * @date 2024年9月7日
52341
+ /**
52342
+ * @desc:显示用户信息
52343
+ * @author huangbo
52344
+ * @date 2024年9月7日
52243
52345
  **/
52244
52346
  showUserInfo: function showUserInfo() {
52245
52347
  if (this.showUser === false) {
@@ -52247,19 +52349,19 @@ var events = [function (tabs, index, that) {
52247
52349
  }
52248
52350
  },
52249
52351
 
52250
- /**
52251
- * @desc:删除更多应用菜单点击
52252
- * @author huangbo
52253
- * @date 2024年9月7日
52352
+ /**
52353
+ * @desc:删除更多应用菜单点击
52354
+ * @author huangbo
52355
+ * @date 2024年9月7日
52254
52356
  **/
52255
52357
  handleDelete: function handleDelete(index) {
52256
52358
  this.newApps.splice(index, 1);
52257
52359
  },
52258
52360
 
52259
- /**
52260
- * @desc:储存更多应用菜单点击
52261
- * @author huangbo
52262
- * @date 2024年9月7日
52361
+ /**
52362
+ * @desc:储存更多应用菜单点击
52363
+ * @author huangbo
52364
+ * @date 2024年9月7日
52263
52365
  **/
52264
52366
  handlerClickApps: function handlerClickApps(res) {
52265
52367
  if (res.permission === false) {
@@ -52272,10 +52374,10 @@ var events = [function (tabs, index, that) {
52272
52374
  this.handlerClickApp(res);
52273
52375
  },
52274
52376
 
52275
- /**
52276
- * @desc:侧边应用菜单点击
52277
- * @author huangbo
52278
- * @date 2024年9月7日
52377
+ /**
52378
+ * @desc:侧边应用菜单点击
52379
+ * @author huangbo
52380
+ * @date 2024年9月7日
52279
52381
  **/
52280
52382
  handlerClickApp: function handlerClickApp(res) {
52281
52383
  this.showMsg = false;
@@ -52358,10 +52460,10 @@ var events = [function (tabs, index, that) {
52358
52460
  }
52359
52461
  },
52360
52462
 
52361
- /**
52362
- * @desc:显示Drawer界面
52363
- * @author huangbo
52364
- * @date 2024年9月7日
52463
+ /**
52464
+ * @desc:显示Drawer界面
52465
+ * @author huangbo
52466
+ * @date 2024年9月7日
52365
52467
  **/
52366
52468
  handlerSetDrawer: function handlerSetDrawer(res) {
52367
52469
  this.drawer.visible = !this.drawer.visible;
@@ -52372,19 +52474,19 @@ var events = [function (tabs, index, that) {
52372
52474
  }
52373
52475
  },
52374
52476
 
52375
- /**
52376
- * @desc:关闭Drawer界面
52377
- * @author huangbo
52378
- * @date 2024年9月7日
52477
+ /**
52478
+ * @desc:关闭Drawer界面
52479
+ * @author huangbo
52480
+ * @date 2024年9月7日
52379
52481
  **/
52380
52482
  handleCloseDrawer: function handleCloseDrawer() {
52381
52483
  this.drawer = { visible: false };
52382
52484
  },
52383
52485
 
52384
- /**
52385
- * @desc:菜单点击
52386
- * @author huangbo
52387
- * @date 2024年9月7日
52486
+ /**
52487
+ * @desc:菜单点击
52488
+ * @author huangbo
52489
+ * @date 2024年9月7日
52388
52490
  **/
52389
52491
  handlerClickMenu: function handlerClickMenu(res) {
52390
52492
  utils_util["a" /* default */].ajax({
@@ -52419,19 +52521,19 @@ var events = [function (tabs, index, that) {
52419
52521
  },
52420
52522
 
52421
52523
 
52422
- /**
52423
- * @desc:用户详情请求成功
52424
- * @author huangbo
52425
- * @date 2024年9月7日
52524
+ /**
52525
+ * @desc:用户详情请求成功
52526
+ * @author huangbo
52527
+ * @date 2024年9月7日
52426
52528
  **/
52427
52529
  handleSuccess: function handleSuccess(res) {
52428
52530
  this.simpleUserInfo = res.simpleUserInfo;
52429
52531
  },
52430
52532
 
52431
- /**
52432
- * @desc:修改用户配置
52433
- * @author huangbo
52434
- * @date 2024年9月7日
52533
+ /**
52534
+ * @desc:修改用户配置
52535
+ * @author huangbo
52536
+ * @date 2024年9月7日
52435
52537
  **/
52436
52538
  handleChangeConfig: function handleChangeConfig(name, res) {
52437
52539
  if (name == 'userHeadUrl') {
@@ -52447,10 +52549,10 @@ var events = [function (tabs, index, that) {
52447
52549
  }
52448
52550
  },
52449
52551
 
52450
- /**
52451
- * @desc:关闭webSocket
52452
- * @author huangbo
52453
- * @date 2024年9月7日
52552
+ /**
52553
+ * @desc:关闭webSocket
52554
+ * @author huangbo
52555
+ * @date 2024年9月7日
52454
52556
  **/
52455
52557
  handlerClose: function handlerClose() {
52456
52558
  if (this.webSocket) {
@@ -52458,10 +52560,10 @@ var events = [function (tabs, index, that) {
52458
52560
  }
52459
52561
  },
52460
52562
 
52461
- /**
52462
- * @desc:刷新选中iframe页签
52463
- * @author huangbo
52464
- * @date 2024年9月7日
52563
+ /**
52564
+ * @desc:刷新选中iframe页签
52565
+ * @author huangbo
52566
+ * @date 2024年9月7日
52465
52567
  **/
52466
52568
  handleRefresh: function handleRefresh() {
52467
52569
  var i = utils_util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
@@ -52482,10 +52584,10 @@ var events = [function (tabs, index, that) {
52482
52584
  }
52483
52585
  },
52484
52586
 
52485
- /**
52486
- * @desc:删除iframe
52487
- * @author huangbo
52488
- * @date 2024年9月7日
52587
+ /**
52588
+ * @desc:删除iframe
52589
+ * @author huangbo
52590
+ * @date 2024年9月7日
52489
52591
  **/
52490
52592
  handleRemove: function handleRemove(name) {
52491
52593
  var len = this.tabs.length - 1;
@@ -52502,10 +52604,10 @@ var events = [function (tabs, index, that) {
52502
52604
  }
52503
52605
  },
52504
52606
 
52505
- /**
52506
- * @desc:tabs鼠标右键事件
52507
- * @author huangbo
52508
- * @date 2024年9月7日
52607
+ /**
52608
+ * @desc:tabs鼠标右键事件
52609
+ * @author huangbo
52610
+ * @date 2024年9月7日
52509
52611
  **/
52510
52612
  handleContextmenu: function handleContextmenu(tabs, e) {
52511
52613
  var disabled = {};
@@ -52530,10 +52632,10 @@ var events = [function (tabs, index, that) {
52530
52632
  window.addEventListener('click', this.closeTabsEvents);
52531
52633
  },
52532
52634
 
52533
- /**
52534
- * @desc:tabs页签事件
52535
- * @author huangbo
52536
- * @date 2024年9月7日
52635
+ /**
52636
+ * @desc:tabs页签事件
52637
+ * @author huangbo
52638
+ * @date 2024年9月7日
52537
52639
  **/
52538
52640
  handleTabsEvents: function handleTabsEvents(num) {
52539
52641
  if (this.pane !== null) {
@@ -52551,10 +52653,10 @@ var events = [function (tabs, index, that) {
52551
52653
  window.removeEventListener('click', this.closeTabsEvents);
52552
52654
  },
52553
52655
 
52554
- /**
52555
- * @desc:handler工具栏点击事件
52556
- * @author huangbo
52557
- * @date 2024年9月7日
52656
+ /**
52657
+ * @desc:handler工具栏点击事件
52658
+ * @author huangbo
52659
+ * @date 2024年9月7日
52558
52660
  **/
52559
52661
  handleClick: function handleClick(res) {
52560
52662
  var type = res.type,
@@ -52630,10 +52732,10 @@ var events = [function (tabs, index, that) {
52630
52732
  this.$emit('handler-click', res);
52631
52733
  },
52632
52734
 
52633
- /**
52634
- * @desc:退出登录
52635
- * @author huangbo
52636
- * @date 2024年9月7日
52735
+ /**
52736
+ * @desc:退出登录
52737
+ * @author huangbo
52738
+ * @date 2024年9月7日
52637
52739
  **/
52638
52740
  handleQuit: function handleQuit() {
52639
52741
  var _this5 = this;
@@ -52691,10 +52793,10 @@ var events = [function (tabs, index, that) {
52691
52793
  }).catch(function (e) {});
52692
52794
  },
52693
52795
 
52694
- /**
52695
- * @desc:主题、消息回调
52696
- * @author huangbo
52697
- * @date 2024年9月7日
52796
+ /**
52797
+ * @desc:主题、消息回调
52798
+ * @author huangbo
52799
+ * @date 2024年9月7日
52698
52800
  **/
52699
52801
  handleChange: function handleChange(res) {
52700
52802
  var type = res.type,
@@ -52710,10 +52812,10 @@ var events = [function (tabs, index, that) {
52710
52812
  }
52711
52813
  },
52712
52814
 
52713
- /**
52714
- * @desc:菜单布局样式切换
52715
- * @author huangbo
52716
- * @date 2024年9月7日
52815
+ /**
52816
+ * @desc:菜单布局样式切换
52817
+ * @author huangbo
52818
+ * @date 2024年9月7日
52717
52819
  **/
52718
52820
  handleLayout: function handleLayout(res, active) {
52719
52821
  if (active) {
@@ -52722,10 +52824,10 @@ var events = [function (tabs, index, that) {
52722
52824
  this.$emit('chang-layout', res, active);
52723
52825
  },
52724
52826
 
52725
- /**
52726
- * @desc:消息修改总数
52727
- * @author huangbo
52728
- * @date 2024年9月7日
52827
+ /**
52828
+ * @desc:消息修改总数
52829
+ * @author huangbo
52830
+ * @date 2024年9月7日
52729
52831
  **/
52730
52832
  handleMenuTips: function handleMenuTips(id, num) {
52731
52833
  if (num) {
@@ -52736,10 +52838,10 @@ var events = [function (tabs, index, that) {
52736
52838
  }
52737
52839
  },
52738
52840
 
52739
- /**
52740
- * @desc:处理即时消息
52741
- * @author huangbo
52742
- * @date 2024年9月7日
52841
+ /**
52842
+ * @desc:处理即时消息
52843
+ * @author huangbo
52844
+ * @date 2024年9月7日
52743
52845
  **/
52744
52846
  handleOpened: function handleOpened(res) {
52745
52847
  var _this6 = this;
@@ -52837,11 +52939,11 @@ var events = [function (tabs, index, that) {
52837
52939
 
52838
52940
  var simplicity_component = normalizeComponent(
52839
52941
  src_simplicityvue_type_script_lang_js_,
52840
- simplicityvue_type_template_id_b8c4b516_scoped_true_render,
52841
- simplicityvue_type_template_id_b8c4b516_scoped_true_staticRenderFns,
52942
+ simplicityvue_type_template_id_5bef793e_scoped_true_render,
52943
+ simplicityvue_type_template_id_5bef793e_scoped_true_staticRenderFns,
52842
52944
  false,
52843
52945
  null,
52844
- "b8c4b516",
52946
+ "5bef793e",
52845
52947
  null
52846
52948
 
52847
52949
  )
@@ -59470,19 +59572,19 @@ var QRCode = __webpack_require__(22);
59470
59572
  //设置logo大小
59471
59573
  var logoPosition = (_this3.mwidth - 46) / 2; //logo相对于canvas居中定位
59472
59574
  //设置获取的logo将其变为圆角以及添加白色背景
59473
- /* ctx.fillStyle = "#fff";
59474
- ctx.beginPath();
59475
- let h = 46; //圆角高 10为基数(logo四周白色背景为10/2)
59476
- let w = 46; //圆角宽
59477
- let x = logoPosition - 5;
59478
- let y = logoPosition - 5;
59479
- let r = 5; //圆角半径
59480
- ctx.moveTo(x + r, y);
59481
- ctx.arcTo(x + w, y, x + w, y + h, r);
59482
- ctx.arcTo(x + w, y + h, x, y + h, r);
59483
- ctx.arcTo(x, y + h, x, y, r);
59484
- ctx.arcTo(x, y, x + w, y, r);
59485
- ctx.closePath();
59575
+ /* ctx.fillStyle = "#fff";
59576
+ ctx.beginPath();
59577
+ let h = 46; //圆角高 10为基数(logo四周白色背景为10/2)
59578
+ let w = 46; //圆角宽
59579
+ let x = logoPosition - 5;
59580
+ let y = logoPosition - 5;
59581
+ let r = 5; //圆角半径
59582
+ ctx.moveTo(x + r, y);
59583
+ ctx.arcTo(x + w, y, x + w, y + h, r);
59584
+ ctx.arcTo(x + w, y + h, x, y + h, r);
59585
+ ctx.arcTo(x, y + h, x, y, r);
59586
+ ctx.arcTo(x, y, x + w, y, r);
59587
+ ctx.closePath();
59486
59588
  ctx.fill(); */
59487
59589
  logo.onload = function () {
59488
59590
  ctx.drawImage(logo, logoPosition, logoPosition, 46, 46);
@@ -77283,7 +77385,7 @@ if (typeof window !== 'undefined' && window.Vue) {
77283
77385
  }
77284
77386
 
77285
77387
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
77286
- version: '0.6.19',
77388
+ version: '0.6.20',
77287
77389
  install: install,
77288
77390
  Button: packages_button,
77289
77391
  ButtonGroup: button_group,