eoss-ui 0.6.52 → 0.6.53

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 (263) hide show
  1. package/lib/button-group.js +58 -55
  2. package/lib/button.js +58 -55
  3. package/lib/checkbox-group.js +61 -58
  4. package/lib/data-table-form.js +58 -55
  5. package/lib/data-table.js +65 -62
  6. package/lib/date-picker.js +58 -55
  7. package/lib/dialog.js +58 -55
  8. package/lib/eoss-ui.common.js +896 -832
  9. package/lib/flow-group.js +58 -55
  10. package/lib/flow-list.js +139 -136
  11. package/lib/flow.js +467 -424
  12. package/lib/form.js +62 -59
  13. package/lib/handle-user.js +58 -55
  14. package/lib/handler.js +58 -55
  15. package/lib/icon.js +58 -55
  16. package/lib/index.js +1 -1
  17. package/lib/input-number.js +58 -55
  18. package/lib/input.js +59 -56
  19. package/lib/login.js +61 -58
  20. package/lib/main.js +258 -235
  21. package/lib/menu.js +1 -1
  22. package/lib/nav.js +61 -58
  23. package/lib/page.js +58 -55
  24. package/lib/pagination.js +58 -55
  25. package/lib/player.js +58 -55
  26. package/lib/qr-code.js +71 -68
  27. package/lib/radio-group.js +61 -58
  28. package/lib/retrial-auth.js +58 -55
  29. package/lib/select-ganged.js +59 -56
  30. package/lib/select.js +61 -57
  31. package/lib/selector-panel.js +61 -58
  32. package/lib/selector.js +58 -55
  33. package/lib/sizer.js +58 -55
  34. package/lib/steps.js +61 -58
  35. package/lib/switch.js +58 -55
  36. package/lib/table-form.js +58 -55
  37. package/lib/tabs.js +58 -55
  38. package/lib/theme-chalk/index.css +1 -1
  39. package/lib/theme-chalk/upload.css +1 -1
  40. package/lib/tips.js +61 -58
  41. package/lib/tree-group.js +58 -55
  42. package/lib/tree.js +61 -58
  43. package/lib/upload.js +71 -68
  44. package/lib/utils/util.js +54 -51
  45. package/lib/wujie.js +58 -55
  46. package/lib/wxlogin.js +58 -55
  47. package/package.json +159 -159
  48. package/packages/button/index.js +5 -5
  49. package/packages/button/src/main.vue +418 -418
  50. package/packages/button-group/index.js +5 -5
  51. package/packages/button-group/src/main.vue +298 -298
  52. package/packages/calendar/index.js +5 -5
  53. package/packages/card/index.js +5 -5
  54. package/packages/card/src/main.vue +156 -156
  55. package/packages/cascader/index.js +5 -5
  56. package/packages/cascader/src/main.vue +168 -168
  57. package/packages/checkbox-group/index.js +5 -5
  58. package/packages/checkbox-group/src/main.vue +333 -333
  59. package/packages/clients/index.js +5 -5
  60. package/packages/clients/src/main.vue +144 -144
  61. package/packages/data-table/index.js +5 -5
  62. package/packages/data-table/src/children.vue +39 -39
  63. package/packages/data-table/src/column.vue +989 -989
  64. package/packages/data-table/src/main.vue +1822 -1822
  65. package/packages/data-table/src/sizer.vue +195 -195
  66. package/packages/data-table-form/index.js +5 -5
  67. package/packages/data-table-form/src/checkbox.vue +101 -101
  68. package/packages/data-table-form/src/colgroup.vue +17 -17
  69. package/packages/data-table-form/src/main.vue +181 -181
  70. package/packages/data-table-form/src/radio.vue +65 -65
  71. package/packages/data-table-form/src/table.vue +233 -233
  72. package/packages/data-table-form/src/tbody.vue +336 -336
  73. package/packages/data-table-form/src/thead.vue +68 -68
  74. package/packages/date-picker/index.js +5 -5
  75. package/packages/date-picker/src/main.vue +236 -236
  76. package/packages/dialog/index.js +5 -5
  77. package/packages/enable-drag/index.js +5 -5
  78. package/packages/enterprise/index.js +5 -5
  79. package/packages/enterprise/src/main.vue +66 -66
  80. package/packages/error-page/index.js +5 -5
  81. package/packages/error-page/src/main.vue +44 -44
  82. package/packages/flow/index.js +5 -5
  83. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  84. package/packages/flow/src/component/CustomPreset.vue +322 -322
  85. package/packages/flow/src/component/FileList.vue +99 -99
  86. package/packages/flow/src/component/Preset.vue +255 -255
  87. package/packages/flow/src/component/SendMsg.vue +229 -229
  88. package/packages/flow/src/component/TimeLimit.vue +190 -190
  89. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  90. package/packages/flow/src/form.vue +121 -121
  91. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  92. package/packages/flow/src/main.vue +3131 -3131
  93. package/packages/flow/src/processForm.vue +1031 -1031
  94. package/packages/flow/src/processReject.vue +293 -293
  95. package/packages/flow/src/reset.vue +900 -902
  96. package/packages/flow/src/startTaskRead.vue +641 -597
  97. package/packages/flow/src/supervise.vue +138 -138
  98. package/packages/flow/src/table.vue +58 -58
  99. package/packages/flow-group/index.js +5 -5
  100. package/packages/flow-group/src/main.vue +688 -688
  101. package/packages/flow-list/index.js +5 -5
  102. package/packages/flow-list/src/main.vue +1434 -1434
  103. package/packages/form/index.js +5 -5
  104. package/packages/form/src/main.vue +3583 -3583
  105. package/packages/form/src/table.vue +1426 -1426
  106. package/packages/handle-user/index.js +5 -5
  107. package/packages/handle-user/src/main.vue +138 -138
  108. package/packages/handler/index.js +5 -5
  109. package/packages/handler/src/main.vue +493 -493
  110. package/packages/icon/index.js +5 -5
  111. package/packages/icon/src/main.vue +101 -101
  112. package/packages/icons/index.js +5 -5
  113. package/packages/icons/src/main.vue +81 -81
  114. package/packages/input/index.js +5 -5
  115. package/packages/input/src/main.vue +356 -356
  116. package/packages/input-number/index.js +5 -5
  117. package/packages/input-number/src/main.vue +106 -106
  118. package/packages/label/index.js +5 -5
  119. package/packages/label/src/main.vue +457 -457
  120. package/packages/layout/index.js +5 -5
  121. package/packages/layout/src/item.vue +152 -152
  122. package/packages/layout/src/main.vue +31 -31
  123. package/packages/login/index.js +5 -5
  124. package/packages/login/src/main.vue +1935 -1935
  125. package/packages/login/src/resetPassword.vue +562 -562
  126. package/packages/main/index.js +5 -5
  127. package/packages/main/src/default/index.vue +7 -1
  128. package/packages/main/src/default/message.vue +249 -249
  129. package/packages/main/src/default/notice.vue +157 -157
  130. package/packages/main/src/default/userinfo.vue +503 -503
  131. package/packages/main/src/main.vue +4 -1
  132. package/packages/main/src/public/online.vue +89 -89
  133. package/packages/main/src/public/search.vue +466 -461
  134. package/packages/main/src/public/settings.vue +221 -221
  135. package/packages/main/src/simplicity/apps.vue +388 -388
  136. package/packages/main/src/simplicity/avatar.vue +82 -82
  137. package/packages/main/src/simplicity/handler.vue +259 -259
  138. package/packages/main/src/simplicity/index.vue +2064 -2064
  139. package/packages/main/src/simplicity/lists.vue +84 -84
  140. package/packages/main/src/simplicity/menu-list.vue +128 -128
  141. package/packages/main/src/simplicity/message.vue +259 -259
  142. package/packages/main/src/simplicity/notice.vue +190 -190
  143. package/packages/main/src/simplicity/router-page.vue +45 -45
  144. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  145. package/packages/main/src/simplicity/user.vue +257 -257
  146. package/packages/main/src/simplicity/userinfo.vue +312 -312
  147. package/packages/menu/index.js +5 -5
  148. package/packages/menu/src/main.vue +536 -536
  149. package/packages/nav/index.js +5 -5
  150. package/packages/nav/src/main.vue +351 -351
  151. package/packages/notify/index.js +5 -5
  152. package/packages/notify/src/main.vue +538 -538
  153. package/packages/page/index.js +5 -5
  154. package/packages/page/src/main.vue +167 -167
  155. package/packages/pagination/index.js +5 -5
  156. package/packages/pagination/src/main.vue +96 -96
  157. package/packages/player/index.js +5 -5
  158. package/packages/player/src/main.vue +194 -194
  159. package/packages/qr-code/index.js +5 -5
  160. package/packages/qr-code/src/main.vue +170 -170
  161. package/packages/radio-group/index.js +6 -6
  162. package/packages/radio-group/src/main.vue +319 -319
  163. package/packages/retrial-auth/index.js +5 -5
  164. package/packages/retrial-auth/src/main.vue +280 -280
  165. package/packages/select/index.js +5 -5
  166. package/packages/select/src/main.vue +776 -775
  167. package/packages/select-ganged/index.js +5 -5
  168. package/packages/select-ganged/src/main.vue +724 -724
  169. package/packages/selector/index.js +5 -5
  170. package/packages/selector/src/main.vue +687 -687
  171. package/packages/selector-panel/index.js +5 -5
  172. package/packages/selector-panel/src/main.vue +1027 -1027
  173. package/packages/selector-panel/src/selection.vue +177 -177
  174. package/packages/selector-panel/src/tree.vue +129 -129
  175. package/packages/sizer/index.js +5 -5
  176. package/packages/sizer/src/main.vue +254 -254
  177. package/packages/steps/index.js +5 -5
  178. package/packages/steps/src/main.vue +181 -181
  179. package/packages/switch/index.js +5 -5
  180. package/packages/switch/src/main.vue +154 -154
  181. package/packages/table-form/index.js +5 -5
  182. package/packages/tabs/index.js +5 -5
  183. package/packages/tabs/src/main.vue +788 -788
  184. package/packages/tabs-panel/index.js +5 -5
  185. package/packages/tabs-panel/src/main.vue +29 -29
  186. package/packages/theme-chalk/lib/index.css +1 -1
  187. package/packages/theme-chalk/lib/upload.css +1 -1
  188. package/packages/theme-chalk/src/base.scss +260 -260
  189. package/packages/theme-chalk/src/button-group.scss +175 -175
  190. package/packages/theme-chalk/src/button.scss +24 -24
  191. package/packages/theme-chalk/src/calendar.scss +113 -113
  192. package/packages/theme-chalk/src/card.scss +99 -99
  193. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  194. package/packages/theme-chalk/src/clients.scss +87 -87
  195. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  196. package/packages/theme-chalk/src/data-table.scss +293 -293
  197. package/packages/theme-chalk/src/date-picker.scss +7 -7
  198. package/packages/theme-chalk/src/dialog.scss +77 -77
  199. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  200. package/packages/theme-chalk/src/enterprise.scss +5 -5
  201. package/packages/theme-chalk/src/error-page.scss +18 -18
  202. package/packages/theme-chalk/src/flow-group.scss +110 -110
  203. package/packages/theme-chalk/src/flow-list.scss +36 -36
  204. package/packages/theme-chalk/src/flow.scss +335 -335
  205. package/packages/theme-chalk/src/form.scss +496 -496
  206. package/packages/theme-chalk/src/handle-user.scss +40 -40
  207. package/packages/theme-chalk/src/handler.scss +143 -143
  208. package/packages/theme-chalk/src/icon.scss +1789 -1789
  209. package/packages/theme-chalk/src/icons.scss +99 -99
  210. package/packages/theme-chalk/src/input.scss +9 -9
  211. package/packages/theme-chalk/src/label.scss +24 -24
  212. package/packages/theme-chalk/src/layout.scss +46 -46
  213. package/packages/theme-chalk/src/login.scss +969 -969
  214. package/packages/theme-chalk/src/main.scss +663 -663
  215. package/packages/theme-chalk/src/menu.scss +222 -222
  216. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  217. package/packages/theme-chalk/src/nav.scss +111 -111
  218. package/packages/theme-chalk/src/page.scss +3 -3
  219. package/packages/theme-chalk/src/pagination.scss +29 -29
  220. package/packages/theme-chalk/src/player.scss +9 -9
  221. package/packages/theme-chalk/src/qr-code.scss +17 -17
  222. package/packages/theme-chalk/src/radio-group.scss +9 -9
  223. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  224. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  225. package/packages/theme-chalk/src/select.scss +8 -8
  226. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  227. package/packages/theme-chalk/src/selector.scss +91 -91
  228. package/packages/theme-chalk/src/simplicity.scss +1265 -1265
  229. package/packages/theme-chalk/src/sizer.scss +36 -36
  230. package/packages/theme-chalk/src/steps.scss +88 -88
  231. package/packages/theme-chalk/src/switch.scss +3 -3
  232. package/packages/theme-chalk/src/table-form.scss +1 -1
  233. package/packages/theme-chalk/src/tabs.scss +87 -87
  234. package/packages/theme-chalk/src/tips.scss +7 -7
  235. package/packages/theme-chalk/src/toolbar.scss +179 -179
  236. package/packages/theme-chalk/src/tree-group.scss +72 -72
  237. package/packages/theme-chalk/src/tree.scss +165 -165
  238. package/packages/theme-chalk/src/upload.scss +168 -167
  239. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  240. package/packages/tips/index.js +5 -5
  241. package/packages/tips/src/main.vue +141 -141
  242. package/packages/toolbar/index.js +5 -5
  243. package/packages/toolbar/src/main.vue +430 -430
  244. package/packages/tree/index.js +5 -5
  245. package/packages/tree/src/main.vue +2 -2
  246. package/packages/tree-group/index.js +5 -5
  247. package/packages/upload/index.js +5 -5
  248. package/packages/upload/src/main.vue +1343 -1339
  249. package/packages/upload/src/picture.js +15 -15
  250. package/packages/wujie/index.js +5 -5
  251. package/packages/wujie/src/main.vue +145 -145
  252. package/packages/wxlogin/index.js +5 -5
  253. package/packages/wxlogin/src/main.vue +128 -128
  254. package/src/config/api.js +281 -281
  255. package/src/config/image.js +2 -2
  256. package/src/index.js +1 -1
  257. package/src/utils/bus.js +3 -3
  258. package/src/utils/date-util.js +312 -312
  259. package/src/utils/http.js +50 -50
  260. package/src/utils/rules.js +18 -18
  261. package/src/utils/store.js +21 -21
  262. package/src/utils/util.js +15 -12
  263. package/src/utils/webSocket.js +107 -107
package/lib/flow.js CHANGED
@@ -114,8 +114,8 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
114
114
  **/
115
115
 
116
116
  /* eslint-disable indent */
117
- var sm2 = __webpack_require__(10).sm2;
118
- var lodash = __webpack_require__(11);
117
+ var sm2 = __webpack_require__(11).sm2;
118
+ var lodash = __webpack_require__(10);
119
119
 
120
120
 
121
121
 
@@ -591,61 +591,64 @@ var ajaxStream = function ajaxStream(_ref2) {
591
591
  if (line === '') {
592
592
  return;
593
593
  }
594
- if (line.startsWith('data:')) {
595
- var _data = line.replace('data:', '').trim();
596
- if (_data) {
597
- try {
598
- // 假设数据是 JSON 格式
599
- var parsedData = JSON.parse(_data);
600
- info.time = parsedData.time;
601
- info.conversationId = parsedData.conversationId;
602
- var thinkRegex = /<think>([\s\S]*?)<\/think>([\s\S]*)?/;
603
- var match = parsedData.message.match(thinkRegex);
604
- if (match) {
605
- var thinkContent = match[1] ? match[1].trim() : ''; // <think> 标签内的数据
606
- var content = match[2] ? match[2].trim() : ''; // <think> 标签后的数据
607
- // 更新 AI 消息内容
608
- info.thinkContent += thinkContent;
609
- info.content += content;
594
+ // if (line.startsWith('data:')) {
595
+ var data = line.startsWith('data:') ? line.replace('data:', '').trim() : line.trim();
596
+ if (data) {
597
+ try {
598
+ // 假设数据是 JSON 格式
599
+ var parsedData = JSON.parse(data);
600
+ info.time = parsedData.time;
601
+ info.conversationId = parsedData.conversationId;
602
+ var thinkRegex = /<think>([\s\S]*?)<\/think>([\s\S]*)?/;
603
+ var match = parsedData.message.match(thinkRegex);
604
+ if (match) {
605
+ var thinkContent = match[1] ? match[1].trim() : ''; // <think> 标签内的数据
606
+ var content = match[2] ? match[2].trim() : ''; // <think> 标签后的数据
607
+ // 更新 AI 消息内容
608
+ info.thinkContent += thinkContent;
609
+ info.content += content;
610
+ } else {
611
+ var startRegex = /<think>([\s\S]*)/;
612
+ var endRegex = /([\s\S]*?)<\/think>([\s\S]*)?/;
613
+ var start = parsedData.message.match(startRegex);
614
+ var end = parsedData.message.match(endRegex);
615
+ if (start) {
616
+ hasThink = true;
617
+ var _thinkContent = start[1] ? start[1].trim() : ''; // <think> 标签内的数据
618
+ info.thinkContent += _thinkContent;
619
+ } else if (hasThink === false) {
620
+ info.content += parsedData.message;
621
+ chunks += parsedData.message;
610
622
  } else {
611
- var startRegex = /<think>([\s\S]*)/;
612
- var endRegex = /([\s\S]*?)<\/think>([\s\S]*)?/;
613
- var start = parsedData.message.match(startRegex);
614
- var end = parsedData.message.match(endRegex);
615
- if (start) {
616
- hasThink = true;
617
- var _thinkContent = start[1] ? start[1].trim() : ''; // <think> 标签内的数据
618
- info.thinkContent += _thinkContent;
619
- } else if (hasThink === false) {
623
+ if (end) {
624
+ finishThink = true;
625
+ var _thinkContent2 = end[1] ? end[1].trim() : ''; // <think> 标签后的数据
626
+ var _content = end[2] ? end[2].trim() : '';
627
+ // 更新 AI 消息内容
628
+ info.thinkContent += _thinkContent2;
629
+ info.content += _content;
630
+ chunks += _content;
631
+ } else if (finishThink) {
620
632
  info.content += parsedData.message;
621
633
  chunks += parsedData.message;
622
634
  } else {
623
- if (end) {
624
- finishThink = true;
625
- var _thinkContent2 = end[1] ? end[1].trim() : ''; // <think> 标签后的数据
626
- var _content = end[2] ? end[2].trim() : '';
627
- // 更新 AI 消息内容
628
- info.thinkContent += _thinkContent2;
629
- info.content += _content;
630
- chunks += _content;
631
- } else if (finishThink) {
632
- info.content += parsedData.message;
633
- chunks += parsedData.message;
634
- } else {
635
- info.thinkContent += parsedData.message;
636
- }
635
+ info.thinkContent += parsedData.message;
637
636
  }
638
637
  }
639
- primeval += parsedData.message;
640
- done = parsedData.done;
641
- } catch (parseError) {
642
- console.error('解析数据出错:', parseError);
643
638
  }
639
+ primeval += parsedData.message;
640
+ done = parsedData.done;
641
+ } catch (parseError) {
642
+ remainingData += line;
643
+ console.log('解析数据出错:', parseError);
644
644
  }
645
- } else {
646
- // 保存未处理完的部分数据
647
- remainingData += line + '\n';
648
645
  }
646
+ // }
647
+ // else {
648
+ // console.log('未处理的数据:', line);
649
+ // // 保存未处理完的部分数据
650
+ // remainingData += line.replace('data:', '\ndata:');
651
+ // }
649
652
  });
650
653
  info.primeval = primeval;
651
654
  info.chunk = chunks;
@@ -654,7 +657,7 @@ var ajaxStream = function ajaxStream(_ref2) {
654
657
  partialData = remainingData;
655
658
  progress && progress({ message: info, controller: controller, done: done });
656
659
  }
657
- })).then(function () {
660
+ })).then(function (results) {
658
661
  // 处理请求完成后的信息
659
662
  var originalText = info.content;
660
663
  var regex = /<think>([\s\S]*?)<\/think>([\s\S]*)/;
@@ -663,8 +666,8 @@ var ajaxStream = function ajaxStream(_ref2) {
663
666
  info.thinkContent = match ? match[1].trim() : '';
664
667
  info.content = match ? match[2].trim() : '';
665
668
  }
666
- success && success({ message: info, controller: controller });
667
- }).catch(function () {
669
+ success && success({ message: info, controller: controller, results: results });
670
+ }).catch(function (results) {
668
671
  // 处理请求完成后的信息
669
672
  var originalText = info.content || '';
670
673
  var regex = /<think>([\s\S]*?)<\/think>([\s\S]*)/;
@@ -673,7 +676,7 @@ var ajaxStream = function ajaxStream(_ref2) {
673
676
  info.thinkContent = match ? match[1].trim() : '';
674
677
  info.content = match ? match[2].trim() : '';
675
678
  }
676
- fail && fail({ status: 1, message: info, controller: controller });
679
+ fail && fail({ status: 1, message: info, controller: controller, results: results });
677
680
  });
678
681
  } catch (error) {
679
682
  console.error('聊天请求出错:', error);
@@ -770,7 +773,7 @@ var busEmit = function busEmit(that, _ref3) {
770
773
 
771
774
  var bus = win.$wujie ? win.$wujie.bus : that ? that.bus || that.$root.Bus : null;
772
775
  if (bus) {
773
- bus.$emit(method, args);
776
+ Array.isArray(args) ? bus.$emit.apply(bus, [method].concat(args)) : bus.$emit(method, args);
774
777
  } else {
775
778
  win.parent.postMessage({ method: method, query: args }, '*');
776
779
  }
@@ -4155,13 +4158,13 @@ module.exports = require("stompjs");
4155
4158
  /* 10 */
4156
4159
  /***/ (function(module, exports) {
4157
4160
 
4158
- module.exports = require("sm-crypto");
4161
+ module.exports = require("lodash");
4159
4162
 
4160
4163
  /***/ }),
4161
4164
  /* 11 */
4162
4165
  /***/ (function(module, exports) {
4163
4166
 
4164
- module.exports = require("lodash");
4167
+ module.exports = require("sm-crypto");
4165
4168
 
4166
4169
  /***/ }),
4167
4170
  /* 12 */,
@@ -7453,21 +7456,21 @@ var _components;
7453
7456
  return validSate;
7454
7457
  },
7455
7458
 
7456
- /**
7457
- * changeOpinion
7458
- * @desc:监听意见变化
7459
- * @author liufan
7460
- * @date 2022年10月28日
7459
+ /**
7460
+ * changeOpinion
7461
+ * @desc:监听意见变化
7462
+ * @author liufan
7463
+ * @date 2022年10月28日
7461
7464
  **/
7462
7465
  changeOpinion: function changeOpinion() {
7463
7466
  this.$emit('change', this.form.value);
7464
7467
  },
7465
7468
 
7466
- /**
7467
- * getCommonOpion
7468
- * @desc:获取意见
7469
- * @author liufan
7470
- * @date 2022年5月25日
7469
+ /**
7470
+ * getCommonOpion
7471
+ * @desc:获取意见
7472
+ * @author liufan
7473
+ * @date 2022年5月25日
7471
7474
  **/
7472
7475
  getCommonOpion: function getCommonOpion() {
7473
7476
  var _this = this;
@@ -7496,24 +7499,24 @@ var _components;
7496
7499
  });
7497
7500
  },
7498
7501
 
7499
- /**
7500
- * upDate
7501
- * @desc:修改常用语
7502
- * @author liufan
7503
- * @param {Object} val 修改值
7504
- * @date 2022年5月25日
7502
+ /**
7503
+ * upDate
7504
+ * @desc:修改常用语
7505
+ * @author liufan
7506
+ * @param {Object} val 修改值
7507
+ * @date 2022年5月25日
7505
7508
  **/
7506
7509
  upDate: function upDate(val) {
7507
7510
  this.FormData.id = val.id;
7508
7511
  this.addVisible = true;
7509
7512
  },
7510
7513
 
7511
- /**
7512
- * selectChange
7513
- * @desc:常用语选择
7514
- * @author liufan
7515
- * @param {String} val 选中值
7516
- * @date 2022年5月25日
7514
+ /**
7515
+ * selectChange
7516
+ * @desc:常用语选择
7517
+ * @author liufan
7518
+ * @param {String} val 选中值
7519
+ * @date 2022年5月25日
7517
7520
  **/
7518
7521
  selectChange: function selectChange(val) {
7519
7522
  var _this2 = this;
@@ -7532,12 +7535,12 @@ var _components;
7532
7535
  });
7533
7536
  },
7534
7537
 
7535
- /**
7536
- * del
7537
- * @desc:删除常用语
7538
- * @author liufan
7539
- * @param {Object} val 删除的数据
7540
- * @date 2022年5月25日
7538
+ /**
7539
+ * del
7540
+ * @desc:删除常用语
7541
+ * @author liufan
7542
+ * @param {Object} val 删除的数据
7543
+ * @date 2022年5月25日
7541
7544
  **/
7542
7545
  del: function del(val) {
7543
7546
  var _this3 = this;
@@ -7579,12 +7582,12 @@ var _components;
7579
7582
  }).catch(function (e) {});
7580
7583
  },
7581
7584
 
7582
- /**
7583
- * submit
7584
- * @desc:新增/编辑意见保存
7585
- * @author liufan
7586
- * @param {Object} val 保存数据
7587
- * @date 2022年5月25日
7585
+ /**
7586
+ * submit
7587
+ * @desc:新增/编辑意见保存
7588
+ * @author liufan
7589
+ * @param {Object} val 保存数据
7590
+ * @date 2022年5月25日
7588
7591
  **/
7589
7592
  submit: function submit(val) {
7590
7593
  var _this4 = this;
@@ -10471,11 +10474,11 @@ var processFormvue_type_script_lang_js_components;
10471
10474
  });
10472
10475
  },
10473
10476
 
10474
- /**
10475
- * isMultiple
10476
- * @desc:是否多选
10477
- * @author liufan
10478
- * @date 2022年9月13日
10477
+ /**
10478
+ * isMultiple
10479
+ * @desc:是否多选
10480
+ * @author liufan
10481
+ * @date 2022年9月13日
10479
10482
  **/
10480
10483
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
10481
10484
  var multiple = false;
@@ -12053,8 +12056,8 @@ var processReject_component = Object(componentNormalizer["a" /* default */])(
12053
12056
  )
12054
12057
 
12055
12058
  /* harmony default export */ var processReject = (processReject_component.exports);
12056
- // 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=1d99a67a&
12057
- var startTaskReadvue_type_template_id_1d99a67a_render = function () {
12059
+ // 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=611e00dd&
12060
+ var startTaskReadvue_type_template_id_611e00dd_render = function () {
12058
12061
  var _vm = this
12059
12062
  var _h = _vm.$createElement
12060
12063
  var _c = _vm._self._c || _h
@@ -12395,9 +12398,9 @@ var startTaskReadvue_type_template_id_1d99a67a_render = function () {
12395
12398
  },
12396
12399
  [
12397
12400
  _vm._v(
12398
- "\n " +
12401
+ "\n " +
12399
12402
  _vm._s(item.shortName) +
12400
- "\n "
12403
+ "\n "
12401
12404
  ),
12402
12405
  ]
12403
12406
  )
@@ -12419,7 +12422,7 @@ var startTaskReadvue_type_template_id_1d99a67a_render = function () {
12419
12422
  _vm.nextNode.noticeType.length != 0 &&
12420
12423
  _vm.configInfo.isCdjxjTaskHandle != "true",
12421
12424
  expression:
12422
- "\n nextNode.noticeType.length != 0 &&\n configInfo.isCdjxjTaskHandle != 'true'\n ",
12425
+ "\n nextNode.noticeType.length != 0 &&\n configInfo.isCdjxjTaskHandle != 'true'\n ",
12423
12426
  },
12424
12427
  ],
12425
12428
  attrs: { prop: "nextNode", label: "通知消息" },
@@ -12478,11 +12481,11 @@ var startTaskReadvue_type_template_id_1d99a67a_render = function () {
12478
12481
  1
12479
12482
  )
12480
12483
  }
12481
- var startTaskReadvue_type_template_id_1d99a67a_staticRenderFns = []
12482
- startTaskReadvue_type_template_id_1d99a67a_render._withStripped = true
12484
+ var startTaskReadvue_type_template_id_611e00dd_staticRenderFns = []
12485
+ startTaskReadvue_type_template_id_611e00dd_render._withStripped = true
12483
12486
 
12484
12487
 
12485
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=1d99a67a&
12488
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=611e00dd&
12486
12489
 
12487
12490
  // 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&
12488
12491
  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; };
@@ -12647,6 +12650,15 @@ var startTaskReadvue_type_script_lang_js_components;
12647
12650
  //
12648
12651
  //
12649
12652
  //
12653
+ //
12654
+ //
12655
+ //
12656
+ //
12657
+ //
12658
+ //
12659
+ //
12660
+ //
12661
+ //
12650
12662
 
12651
12663
 
12652
12664
 
@@ -12660,7 +12672,11 @@ var startTaskReadvue_type_script_lang_js_components;
12660
12672
  type: { type: String, default: '' },
12661
12673
  option: { type: String, default: '' },
12662
12674
  typeCode: { type: String, default: '' },
12663
- taskExamine: { type: Object, default: function _default() {} }
12675
+ taskExamine: { type: Object, default: function _default() {} },
12676
+ readParams: {
12677
+ type: [Object, undefined],
12678
+ default: undefined
12679
+ }
12664
12680
  },
12665
12681
  data: function data() {
12666
12682
  return {
@@ -12719,6 +12735,9 @@ var startTaskReadvue_type_script_lang_js_components;
12719
12735
  },
12720
12736
  mounted: function mounted() {
12721
12737
  this.newsNoice = this.newsInfo;
12738
+ if (this.readParams) {
12739
+ this.getMessage();
12740
+ }
12722
12741
  this.getFind();
12723
12742
  if (util["a" /* default */].getStorage('mainConfig')) {
12724
12743
  this.orgId = JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId;
@@ -12726,9 +12745,27 @@ var startTaskReadvue_type_script_lang_js_components;
12726
12745
  },
12727
12746
 
12728
12747
  methods: {
12729
- toTaskTransfer: function toTaskTransfer() {
12748
+ //获取通知信息
12749
+ getMessage: function getMessage() {
12730
12750
  var _this = this;
12731
12751
 
12752
+ var params = {
12753
+ appId: this.readParams.appId
12754
+ };
12755
+ util["a" /* default */].ajax({ url: api["N" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
12756
+ if (res.status === 'success') {
12757
+ _this.newsNoice = res.message;
12758
+ }
12759
+ }).catch(function (err) {
12760
+ _this.loading = false;
12761
+ if (err.message && err.message !== 'canceled') {
12762
+ _this.$message.error(err.message);
12763
+ }
12764
+ });
12765
+ },
12766
+ toTaskTransfer: function toTaskTransfer() {
12767
+ var _this2 = this;
12768
+
12732
12769
  var opinion = this.opinion,
12733
12770
  pendingId = this.pendingId,
12734
12771
  taskExamine = this.taskExamine;
@@ -12752,16 +12789,16 @@ var startTaskReadvue_type_script_lang_js_components;
12752
12789
  taskExamine = _res$data.taskExamine;
12753
12790
 
12754
12791
  if (status == 'success') {
12755
- _this.isMultipleTransfer(nodeInfoMap.nodeExtAttr.userSelectionType, choiceOrgId, choiceDeptId);
12756
- _this.nextNode.nodeName = taskExamine.nodeName;
12757
- _this.transferInfo = taskExamine;
12792
+ _this2.isMultipleTransfer(nodeInfoMap.nodeExtAttr.userSelectionType, choiceOrgId, choiceDeptId);
12793
+ _this2.nextNode.nodeName = taskExamine.nodeName;
12794
+ _this2.transferInfo = taskExamine;
12758
12795
  } else {
12759
- _this.$message.error(message || '系统错误,请联系管理员!');
12796
+ _this2.$message.error(message || '系统错误,请联系管理员!');
12760
12797
  }
12761
12798
  }).catch(function (err) {
12762
- _this.loading = false;
12799
+ _this2.loading = false;
12763
12800
  if (err.message && err.message !== 'canceled') {
12764
- _this.$message.error(err.message);
12801
+ _this2.$message.error(err.message);
12765
12802
  }
12766
12803
  });
12767
12804
  },
@@ -12817,7 +12854,7 @@ var startTaskReadvue_type_script_lang_js_components;
12817
12854
  }
12818
12855
  },
12819
12856
  handleSelectCheck: function handleSelectCheck(val, data) {
12820
- var _this2 = this;
12857
+ var _this3 = this;
12821
12858
 
12822
12859
  var userIds = data.userIds,
12823
12860
  userNames = data.userNames;
@@ -12826,10 +12863,10 @@ var startTaskReadvue_type_script_lang_js_components;
12826
12863
  var newUserIds = userIds.split(',');
12827
12864
  var newUserNames = userNames.split(',');
12828
12865
  newUserIds.map(function (item, index) {
12829
- _this2.nextNode.nextUser.push(item);
12830
- _this2.userOptions.push({ id: item, name: newUserNames[index] });
12866
+ _this3.nextNode.nextUser.push(item);
12867
+ _this3.userOptions.push({ id: item, name: newUserNames[index] });
12831
12868
 
12832
- _this2.selectUserList.push({
12869
+ _this3.selectUserList.push({
12833
12870
  showid: item,
12834
12871
  showname: newUserNames[index]
12835
12872
  });
@@ -12856,7 +12893,7 @@ var startTaskReadvue_type_script_lang_js_components;
12856
12893
  }
12857
12894
  },
12858
12895
  toStartTaskRead: function toStartTaskRead() {
12859
- var _this3 = this;
12896
+ var _this4 = this;
12860
12897
 
12861
12898
  var params = {
12862
12899
  url: api["Vb" /* toStartTaskRead */],
@@ -12868,18 +12905,18 @@ var startTaskReadvue_type_script_lang_js_components;
12868
12905
  data = res.data;
12869
12906
 
12870
12907
  if (status === 'success') {
12871
- _this3.configInfo = data;
12872
- _this3.isMultiple();
12908
+ _this4.configInfo = data;
12909
+ _this4.isMultiple();
12873
12910
  }
12874
12911
  }).catch(function (err) {
12875
- _this3.loading = false;
12912
+ _this4.loading = false;
12876
12913
  if (err.message && err.message !== 'canceled') {
12877
- _this3.$message.error(err.message);
12914
+ _this4.$message.error(err.message);
12878
12915
  }
12879
12916
  });
12880
12917
  },
12881
12918
  changeSelectUser: function changeSelectUser(val, type) {
12882
- var _this4 = this;
12919
+ var _this5 = this;
12883
12920
 
12884
12921
  var nextUser = val.nextUser,
12885
12922
  options = val.options,
@@ -12888,45 +12925,48 @@ var startTaskReadvue_type_script_lang_js_components;
12888
12925
  this.nextNode[type] = nextUser;
12889
12926
  this.mixList = mixList;
12890
12927
  options.map(function (item) {
12891
- _this4.newSelectUserList.push({
12928
+ _this5.newSelectUserList.push({
12892
12929
  showname: item.showname,
12893
12930
  showid: item.showid
12894
12931
  });
12895
12932
  });
12896
12933
  },
12897
12934
  getNodeType: function getNodeType() {
12898
- var _this5 = this;
12935
+ var _this6 = this;
12899
12936
 
12900
12937
  util["a" /* default */].ajax({
12901
12938
  url: api["x" /* findCodeValues */],
12902
- params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
12939
+ params: {
12940
+ ccCode: 'notification_type',
12941
+ userId: util["a" /* default */].getStorage('userId')
12942
+ }
12903
12943
  }).then(function (res) {
12904
12944
  var status = res.status,
12905
12945
  data = res.data;
12906
12946
 
12907
12947
  if (status === 'success') {
12908
- _this5.noticeList = data;
12948
+ _this6.noticeList = data;
12909
12949
  var arr = [];
12910
- _this5.noticeList.map(function (item) {
12911
- _this5.nextNode.noticeType.map(function (x) {
12950
+ _this6.noticeList.map(function (item) {
12951
+ _this6.nextNode.noticeType.map(function (x) {
12912
12952
  if (x == item.cciValue) {
12913
12953
  arr.push(x);
12914
12954
  }
12915
12955
  });
12916
12956
  });
12917
- _this5.nextNode.noticeType = arr;
12957
+ _this6.nextNode.noticeType = arr;
12918
12958
  }
12919
12959
  }).catch(function (err) {
12920
- _this5.loading = false;
12960
+ _this6.loading = false;
12921
12961
  if (err.message && err.message !== 'canceled') {
12922
- _this5.$message.error(err.message);
12962
+ _this6.$message.error(err.message);
12923
12963
  }
12924
12964
  });
12925
12965
  },
12926
12966
 
12927
12967
  // 转办提交
12928
12968
  subTaskTransfer: function subTaskTransfer() {
12929
- var _this6 = this;
12969
+ var _this7 = this;
12930
12970
 
12931
12971
  var _taskExamine = this.taskExamine,
12932
12972
  choiceDeptId = _taskExamine.choiceDeptId,
@@ -12961,28 +13001,28 @@ var startTaskReadvue_type_script_lang_js_components;
12961
13001
  status = res.status;
12962
13002
 
12963
13003
  if (status === 'success') {
12964
- _this6.$message.success('操作成功');
12965
- _this6.quit(true);
13004
+ _this7.$message.success('操作成功');
13005
+ _this7.quit(true);
12966
13006
  } else {
12967
- _this6.$message.error(message || '系统错误,请联系管理员!');
13007
+ _this7.$message.error(message || '系统错误,请联系管理员!');
12968
13008
  }
12969
- _this6.loading = false;
13009
+ _this7.loading = false;
12970
13010
  }).catch(function (err) {
12971
- _this6.loading = false;
13011
+ _this7.loading = false;
12972
13012
  if (err.message && err.message !== 'canceled') {
12973
- _this6.$message.error(err.message);
13013
+ _this7.$message.error(err.message);
12974
13014
  }
12975
13015
  });
12976
13016
  },
12977
13017
 
12978
13018
  // 提交表单
12979
13019
  submit: function submit(formName) {
12980
- var _this7 = this;
13020
+ var _this8 = this;
12981
13021
 
12982
13022
  this.$refs[formName].validate(function (valid) {
12983
13023
  if (valid) {
12984
- if (!_this7.option && _this7.isOpinionRequired === 1) {
12985
- _this7.$message.warning('请选择输入审批意见');
13024
+ if (!_this8.option && _this8.isOpinionRequired === 1) {
13025
+ _this8.$message.warning('请选择输入审批意见');
12986
13026
  return;
12987
13027
  }
12988
13028
  // let nextUser = [];
@@ -12990,12 +13030,12 @@ var startTaskReadvue_type_script_lang_js_components;
12990
13030
  // nextUser.push(item);
12991
13031
  // });
12992
13032
  var noticeType = '';
12993
- noticeType = _this7.nextNode.noticeType.join(',');
12994
- _this7.loading = true;
12995
- if (_this7.type === 'transfer') {
12996
- _this7.subTaskTransfer();
13033
+ noticeType = _this8.nextNode.noticeType.join(',');
13034
+ _this8.loading = true;
13035
+ if (_this8.type === 'transfer') {
13036
+ _this8.subTaskTransfer();
12997
13037
  } else {
12998
- var _taskExamine2 = _this7.taskExamine,
13038
+ var _taskExamine2 = _this8.taskExamine,
12999
13039
  appId = _taskExamine2.appId,
13000
13040
  businessId = _taskExamine2.businessId,
13001
13041
  bCode = _taskExamine2.bCode,
@@ -13005,7 +13045,7 @@ var startTaskReadvue_type_script_lang_js_components;
13005
13045
  businessName = _taskExamine2.businessName,
13006
13046
  processDefinitionId = _taskExamine2.processDefinitionId;
13007
13047
 
13008
- var params = startTaskReadvue_type_script_lang_js_extends({}, _this7.nextNode, {
13048
+ var params = startTaskReadvue_type_script_lang_js_extends({}, _this8.nextNode, {
13009
13049
  bCode: bCode,
13010
13050
  bName: bName,
13011
13051
  appId: appId,
@@ -13015,16 +13055,16 @@ var startTaskReadvue_type_script_lang_js_components;
13015
13055
  businessName: businessName,
13016
13056
  processDefinitionId: processDefinitionId,
13017
13057
  currentOrgProcessKey: processDefinitionId,
13018
- pendingId: _this7.pendingId,
13019
- opinion: _this7.option, // 审批意见
13058
+ pendingId: _this8.pendingId,
13059
+ opinion: _this8.option, // 审批意见
13020
13060
  userId: util["a" /* default */].getStorage('userId'),
13021
- nextReadUserId: _this7.mixList.join('|'),
13061
+ nextReadUserId: _this8.mixList.join('|'),
13022
13062
  noticeType: noticeType,
13023
- taskAction: _this7.type
13063
+ taskAction: _this8.type
13024
13064
  // nextNodeId: this.form.nextNodeId
13025
13065
  });
13026
13066
  delete params.nextUser;
13027
- var _configInfo = _this7.configInfo,
13067
+ var _configInfo = _this8.configInfo,
13028
13068
  fyDoresult = _configInfo.fyDoresult,
13029
13069
  fyeh = _configInfo.fyeh,
13030
13070
  download = _configInfo.download,
@@ -13034,9 +13074,12 @@ var startTaskReadvue_type_script_lang_js_components;
13034
13074
  fyeh != 'true' && delete params.isInHistory;
13035
13075
  !download && delete params.isDownload;
13036
13076
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
13077
+ if (_this8.readParams) {
13078
+ params = startTaskReadvue_type_script_lang_js_extends({}, params, _this8.readParams);
13079
+ }
13037
13080
  util["a" /* default */].ajax({
13038
13081
  url: api["Ib" /* taskReadHtml */],
13039
- params: { taskAction: _this7.type },
13082
+ params: { taskAction: _this8.type },
13040
13083
  headers: {
13041
13084
  Accept: 'application/json,text/plain'
13042
13085
  },
@@ -13046,17 +13089,17 @@ var startTaskReadvue_type_script_lang_js_components;
13046
13089
  var message = res.message,
13047
13090
  status = res.status;
13048
13091
 
13049
- _this7.loading = false;
13092
+ _this8.loading = false;
13050
13093
  if (status === 'success') {
13051
- _this7.$message.success('操作成功');
13052
- _this7.quit(true);
13094
+ _this8.$message.success('操作成功');
13095
+ _this8.quit(true);
13053
13096
  } else {
13054
- _this7.$message.error(message || '系统错误,请联系管理员!');
13097
+ _this8.$message.error(message || '系统错误,请联系管理员!');
13055
13098
  }
13056
13099
  }).catch(function (err) {
13057
- _this7.loading = false;
13100
+ _this8.loading = false;
13058
13101
  if (err.message && err.message !== 'canceled') {
13059
- _this7.$message.error(err.message);
13102
+ _this8.$message.error(err.message);
13060
13103
  }
13061
13104
  });
13062
13105
  }
@@ -13070,7 +13113,7 @@ var startTaskReadvue_type_script_lang_js_components;
13070
13113
  this.$emit('cancel');
13071
13114
  },
13072
13115
  getFind: function getFind() {
13073
- var _this8 = this;
13116
+ var _this9 = this;
13074
13117
 
13075
13118
  this.loading = true;
13076
13119
  util["a" /* default */].ajax({
@@ -13080,26 +13123,26 @@ var startTaskReadvue_type_script_lang_js_components;
13080
13123
  message = res.message,
13081
13124
  data = res.data;
13082
13125
 
13083
- _this8.loading = false;
13126
+ _this9.loading = false;
13084
13127
  if (status === 'success') {
13085
- _this8.nextNode.noticeType = message.split(',');
13128
+ _this9.nextNode.noticeType = message.split(',');
13086
13129
  if (data) {
13087
- _this8.notificationMessageReadOnly = data.notificationMessageReadOnly;
13088
- _this8.readOnlyNotificationType = data.readOnlyNotificationType;
13130
+ _this9.notificationMessageReadOnly = data.notificationMessageReadOnly;
13131
+ _this9.readOnlyNotificationType = data.readOnlyNotificationType;
13089
13132
  }
13090
13133
  } else {
13091
- _this8.$message.error(message || '系统错误,请联系管理员!');
13134
+ _this9.$message.error(message || '系统错误,请联系管理员!');
13092
13135
  }
13093
- _this8.getNodeType();
13094
- if (_this8.type === 'transfer') {
13095
- _this8.toTaskTransfer();
13096
- } else {
13097
- _this8.toStartTaskRead();
13136
+ _this9.getNodeType();
13137
+ if (_this9.type === 'transfer') {
13138
+ _this9.toTaskTransfer();
13139
+ } else if (!_this9.readParams) {
13140
+ _this9.toStartTaskRead();
13098
13141
  }
13099
13142
  }).catch(function (err) {
13100
- _this8.loading = false;
13143
+ _this9.loading = false;
13101
13144
  if (err.message && err.message !== 'canceled') {
13102
- _this8.$message.error(err.message);
13145
+ _this9.$message.error(err.message);
13103
13146
  }
13104
13147
  });
13105
13148
  }
@@ -13117,8 +13160,8 @@ var startTaskReadvue_type_script_lang_js_components;
13117
13160
 
13118
13161
  var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13119
13162
  src_startTaskReadvue_type_script_lang_js_,
13120
- startTaskReadvue_type_template_id_1d99a67a_render,
13121
- startTaskReadvue_type_template_id_1d99a67a_staticRenderFns,
13163
+ startTaskReadvue_type_template_id_611e00dd_render,
13164
+ startTaskReadvue_type_template_id_611e00dd_staticRenderFns,
13122
13165
  false,
13123
13166
  null,
13124
13167
  null,
@@ -13127,8 +13170,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13127
13170
  )
13128
13171
 
13129
13172
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
13130
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=506a888c&
13131
- var resetvue_type_template_id_506a888c_render = function () {
13173
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=6b258c7a&
13174
+ var resetvue_type_template_id_6b258c7a_render = function () {
13132
13175
  var _vm = this
13133
13176
  var _h = _vm.$createElement
13134
13177
  var _c = _vm._self._c || _h
@@ -13554,11 +13597,11 @@ var resetvue_type_template_id_506a888c_render = function () {
13554
13597
  1
13555
13598
  )
13556
13599
  }
13557
- var resetvue_type_template_id_506a888c_staticRenderFns = []
13558
- resetvue_type_template_id_506a888c_render._withStripped = true
13600
+ var resetvue_type_template_id_6b258c7a_staticRenderFns = []
13601
+ resetvue_type_template_id_6b258c7a_render._withStripped = true
13559
13602
 
13560
13603
 
13561
- // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=506a888c&
13604
+ // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=6b258c7a&
13562
13605
 
13563
13606
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=script&lang=js&
13564
13607
  var resetvue_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; };
@@ -13841,13 +13884,13 @@ var resetvue_type_script_lang_js_components;
13841
13884
  tabs: {
13842
13885
  employee: {
13843
13886
  param: {
13844
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId,
13887
+ filid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId,
13845
13888
  name: '本单位用户'
13846
13889
  }
13847
13890
  },
13848
13891
  department: {
13849
13892
  param: {
13850
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId
13893
+ filid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId
13851
13894
  }
13852
13895
  }
13853
13896
  },
@@ -13938,7 +13981,7 @@ var resetvue_type_script_lang_js_components;
13938
13981
  this.nextUserTabs = {
13939
13982
  department: {
13940
13983
  param: {
13941
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId
13984
+ filid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId
13942
13985
  }
13943
13986
  }
13944
13987
  };
@@ -13953,7 +13996,7 @@ var resetvue_type_script_lang_js_components;
13953
13996
  enterprise: { param: { filid: 'other' } },
13954
13997
  department: {
13955
13998
  param: {
13956
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId
13999
+ filid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId
13957
14000
  }
13958
14001
  }
13959
14002
  };
@@ -14282,11 +14325,11 @@ var resetvue_type_script_lang_js_components;
14282
14325
  });
14283
14326
  },
14284
14327
 
14285
- /**
14286
- * isMultiple
14287
- * @desc:是否多选
14288
- * @author liufan
14289
- * @date 2022年9月13日
14328
+ /**
14329
+ * isMultiple
14330
+ * @desc:是否多选
14331
+ * @author liufan
14332
+ * @date 2022年9月13日
14290
14333
  **/
14291
14334
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
14292
14335
  var multiple = false;
@@ -14419,8 +14462,8 @@ var resetvue_type_script_lang_js_components;
14419
14462
 
14420
14463
  var reset_component = Object(componentNormalizer["a" /* default */])(
14421
14464
  src_resetvue_type_script_lang_js_,
14422
- resetvue_type_template_id_506a888c_render,
14423
- resetvue_type_template_id_506a888c_staticRenderFns,
14465
+ resetvue_type_template_id_6b258c7a_render,
14466
+ resetvue_type_template_id_6b258c7a_staticRenderFns,
14424
14467
  false,
14425
14468
  null,
14426
14469
  null,
@@ -18650,11 +18693,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18650
18693
  });
18651
18694
  },
18652
18695
 
18653
- /**
18654
- * saveInfo
18655
- * @desc:暂存
18656
- * @author liufan
18657
- * @date 2022年9月9日
18696
+ /**
18697
+ * saveInfo
18698
+ * @desc:暂存
18699
+ * @author liufan
18700
+ * @date 2022年9月9日
18658
18701
  **/
18659
18702
  saveInfo: function saveInfo(type, btn) {
18660
18703
  var _this6 = this;
@@ -18716,11 +18759,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18716
18759
  });
18717
18760
  },
18718
18761
 
18719
- /**
18720
- * rejectBtn
18721
- * @desc:点击驳回
18722
- * @author liufan
18723
- * @date 2022年5月25日
18762
+ /**
18763
+ * rejectBtn
18764
+ * @desc:点击驳回
18765
+ * @author liufan
18766
+ * @date 2022年5月25日
18724
18767
  **/
18725
18768
  rejectBtn: function rejectBtn() {
18726
18769
  var _this8 = this;
@@ -18738,11 +18781,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18738
18781
  }
18739
18782
  },
18740
18783
 
18741
- /**
18742
- * taskReadBtn
18743
- * @desc:点击分阅
18744
- * @author liufan
18745
- * @date 2022年5月25日
18784
+ /**
18785
+ * taskReadBtn
18786
+ * @desc:点击分阅
18787
+ * @author liufan
18788
+ * @date 2022年5月25日
18746
18789
  **/
18747
18790
  taskReadBtn: function taskReadBtn() {
18748
18791
  var _this9 = this;
@@ -18761,11 +18804,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18761
18804
  }
18762
18805
  },
18763
18806
 
18764
- /**
18765
- * getFind
18766
- * @desc:获取通知方式
18767
- * @author liufan
18768
- * @date 2022年5月25日
18807
+ /**
18808
+ * getFind
18809
+ * @desc:获取通知方式
18810
+ * @author liufan
18811
+ * @date 2022年5月25日
18769
18812
  **/
18770
18813
  getFind: function getFind() {
18771
18814
  var _this10 = this;
@@ -18820,12 +18863,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18820
18863
  });
18821
18864
  },
18822
18865
 
18823
- /**
18824
- * endFlows
18825
- * @desc:直接办结
18826
- * @author liufan
18827
- * @param {Object} res 直接办结数据
18828
- * @date 2022年5月25日
18866
+ /**
18867
+ * endFlows
18868
+ * @desc:直接办结
18869
+ * @author liufan
18870
+ * @param {Object} res 直接办结数据
18871
+ * @date 2022年5月25日
18829
18872
  **/
18830
18873
  endFlows: function endFlows(res) {
18831
18874
  var _this12 = this;
@@ -18879,12 +18922,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18879
18922
  }).catch(function (e) {});
18880
18923
  },
18881
18924
 
18882
- /**
18883
- * goView
18884
- * @desc:更多流程按钮操作
18885
- * @author liufan
18886
- * @param {Object} res 当前点击操作按钮数据
18887
- * @date 2022年5月25日
18925
+ /**
18926
+ * goView
18927
+ * @desc:更多流程按钮操作
18928
+ * @author liufan
18929
+ * @param {Object} res 当前点击操作按钮数据
18930
+ * @date 2022年5月25日
18888
18931
  **/
18889
18932
  goView: function goView(res) {
18890
18933
  // 驳回并办结:rejectAndEndHtml
@@ -18969,11 +19012,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18969
19012
  // isCanStartSubFlow
18970
19013
  },
18971
19014
 
18972
- /**
18973
- * toTakeAdvice
18974
- * @desc:征求意见
18975
- * @author liufan
18976
- * @date 2022年9月29日
19015
+ /**
19016
+ * toTakeAdvice
19017
+ * @desc:征求意见
19018
+ * @author liufan
19019
+ * @date 2022年9月29日
18977
19020
  **/
18978
19021
  toTakeAdvice: function toTakeAdvice(res) {
18979
19022
  var _this14 = this;
@@ -19017,11 +19060,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19017
19060
  });
19018
19061
  },
19019
19062
 
19020
- /**
19021
- * toStartDraf
19022
- * @desc: 稿件递送、联合审核、复核
19023
- * @author liufan
19024
- * @date 2022年9月29日
19063
+ /**
19064
+ * toStartDraf
19065
+ * @desc: 稿件递送、联合审核、复核
19066
+ * @author liufan
19067
+ * @date 2022年9月29日
19025
19068
  **/
19026
19069
  toStartDraf: function toStartDraf(res) {
19027
19070
  var _this16 = this;
@@ -19035,11 +19078,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19035
19078
  }
19036
19079
  },
19037
19080
 
19038
- /**
19039
- * toSendMsg
19040
- * @desc:核稿通知
19041
- * @author liufan
19042
- * @date 2022年9月29日
19081
+ /**
19082
+ * toSendMsg
19083
+ * @desc:核稿通知
19084
+ * @author liufan
19085
+ * @date 2022年9月29日
19043
19086
  **/
19044
19087
  toSendMsg: function toSendMsg(res) {
19045
19088
  var _this17 = this;
@@ -19053,11 +19096,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19053
19096
  }
19054
19097
  },
19055
19098
 
19056
- /**
19057
- * toTaskReadAndEnd
19058
- * @desc:分阅并办结
19059
- * @author liufan
19060
- * @date 2022年9月29日
19099
+ /**
19100
+ * toTaskReadAndEnd
19101
+ * @desc:分阅并办结
19102
+ * @author liufan
19103
+ * @date 2022年9月29日
19061
19104
  **/
19062
19105
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
19063
19106
  var _this18 = this;
@@ -19075,11 +19118,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19075
19118
  }
19076
19119
  },
19077
19120
 
19078
- /**
19079
- * rejectAndEnd
19080
- * @desc:驳回并办结
19081
- * @author liufan
19082
- * @date 2022年9月29日
19121
+ /**
19122
+ * rejectAndEnd
19123
+ * @desc:驳回并办结
19124
+ * @author liufan
19125
+ * @date 2022年9月29日
19083
19126
  **/
19084
19127
  rejectAndEnd: function rejectAndEnd(res) {
19085
19128
  var _this19 = this;
@@ -19134,11 +19177,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19134
19177
  });
19135
19178
  },
19136
19179
 
19137
- /**
19138
- * toTransfer
19139
- * @desc:转办
19140
- * @author liufan
19141
- * @date 2022年9月29日
19180
+ /**
19181
+ * toTransfer
19182
+ * @desc:转办
19183
+ * @author liufan
19184
+ * @date 2022年9月29日
19142
19185
  **/
19143
19186
  toTransfer: function toTransfer(res) {
19144
19187
  var _this21 = this;
@@ -19154,11 +19197,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19154
19197
  }
19155
19198
  },
19156
19199
 
19157
- /**
19158
- * getNodeInfo
19159
- * @desc:获取节点信息
19160
- * @author liufan
19161
- * @date 2022年5月25日
19200
+ /**
19201
+ * getNodeInfo
19202
+ * @desc:获取节点信息
19203
+ * @author liufan
19204
+ * @date 2022年5月25日
19162
19205
  **/
19163
19206
  getNodeInfo: function getNodeInfo() {
19164
19207
  var _this22 = this;
@@ -19257,12 +19300,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19257
19300
  });
19258
19301
  },
19259
19302
 
19260
- /**
19261
- * selecNext
19262
- * @desc:下步节点变化时更新数据
19263
- * @author liufan
19264
- * @param {String} val 当前选中值
19265
- * @date 2022年5月25日
19303
+ /**
19304
+ * selecNext
19305
+ * @desc:下步节点变化时更新数据
19306
+ * @author liufan
19307
+ * @param {String} val 当前选中值
19308
+ * @date 2022年5月25日
19266
19309
  **/
19267
19310
  selecNext: function selecNext(val, type, isDef) {
19268
19311
  var _this23 = this;
@@ -19371,11 +19414,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19371
19414
  if (isDef !== true) this.getNodeInfo();
19372
19415
  },
19373
19416
 
19374
- /**
19375
- * isMultiple
19376
- * @desc:是否多选
19377
- * @author liufan
19378
- * @date 2022年9月13日
19417
+ /**
19418
+ * isMultiple
19419
+ * @desc:是否多选
19420
+ * @author liufan
19421
+ * @date 2022年9月13日
19379
19422
  **/
19380
19423
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
19381
19424
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -19407,11 +19450,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19407
19450
  }
19408
19451
  },
19409
19452
 
19410
- /**
19411
- * getHedInfo
19412
- * @desc:获取审核页面数据
19413
- * @author liufan
19414
- * @date 2022年5月25日
19453
+ /**
19454
+ * getHedInfo
19455
+ * @desc:获取审核页面数据
19456
+ * @author liufan
19457
+ * @date 2022年5月25日
19415
19458
  **/
19416
19459
  getHedInfo: function getHedInfo() {
19417
19460
  var _this24 = this;
@@ -19647,13 +19690,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19647
19690
  });
19648
19691
  },
19649
19692
 
19650
- /**
19651
- * closeProcess
19652
- * @desc:关闭弹窗
19653
- * @author liufan
19654
- * @param {boolean} val 当前是否办理流程
19655
- * @param {String} type 当前点击的弹窗类型
19656
- * @date 2022年5月25日
19693
+ /**
19694
+ * closeProcess
19695
+ * @desc:关闭弹窗
19696
+ * @author liufan
19697
+ * @param {boolean} val 当前是否办理流程
19698
+ * @param {String} type 当前点击的弹窗类型
19699
+ * @date 2022年5月25日
19657
19700
  **/
19658
19701
  closeProcess: function closeProcess(val, type, closeParent) {
19659
19702
  if (closeParent) {
@@ -19670,23 +19713,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19670
19713
  }
19671
19714
  },
19672
19715
 
19673
- /**
19674
- * selectChange
19675
- * @desc:常用语选择
19676
- * @author liufan
19677
- * @param {String} val 选中值
19678
- * @date 2022年5月25日
19716
+ /**
19717
+ * selectChange
19718
+ * @desc:常用语选择
19719
+ * @author liufan
19720
+ * @param {String} val 选中值
19721
+ * @date 2022年5月25日
19679
19722
  **/
19680
19723
  selectChange: function selectChange(val) {
19681
19724
  this.value = val;
19682
19725
  },
19683
19726
 
19684
- /**
19685
- * upDate
19686
- * @desc:修改常用语
19687
- * @author liufan
19688
- * @param {Object} val 修改值
19689
- * @date 2022年5月25日
19727
+ /**
19728
+ * upDate
19729
+ * @desc:修改常用语
19730
+ * @author liufan
19731
+ * @param {Object} val 修改值
19732
+ * @date 2022年5月25日
19690
19733
  **/
19691
19734
  upDate: function upDate(val) {
19692
19735
  this.FormData.id = val.id;
@@ -19694,11 +19737,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19694
19737
  },
19695
19738
 
19696
19739
 
19697
- /**
19698
- * getProcess
19699
- * @desc:获取选择流程
19700
- * @author liufan
19701
- * @date 2022年5月25日
19740
+ /**
19741
+ * getProcess
19742
+ * @desc:获取选择流程
19743
+ * @author liufan
19744
+ * @date 2022年5月25日
19702
19745
  **/
19703
19746
  getProcess: function getProcess() {
19704
19747
  var _this25 = this;
@@ -19752,11 +19795,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19752
19795
  });
19753
19796
  },
19754
19797
 
19755
- /**
19756
- * getPendedhistoryList
19757
- * @desc:获取流程列表
19758
- * @author liufan
19759
- * @date 2022年5月25日
19798
+ /**
19799
+ * getPendedhistoryList
19800
+ * @desc:获取流程列表
19801
+ * @author liufan
19802
+ * @date 2022年5月25日
19760
19803
  **/
19761
19804
  getPendedhistoryList: function getPendedhistoryList() {
19762
19805
  var _this26 = this;
@@ -19788,12 +19831,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19788
19831
  },
19789
19832
 
19790
19833
  // 提交流程
19791
- /**
19792
- * subProcess
19793
- * @desc:提交流程
19794
- * @author liufan
19795
- * @param {String} formName 当前form表单ref值
19796
- * @date 2022年5月25日
19834
+ /**
19835
+ * subProcess
19836
+ * @desc:提交流程
19837
+ * @author liufan
19838
+ * @param {String} formName 当前form表单ref值
19839
+ * @date 2022年5月25日
19797
19840
  **/
19798
19841
  subProcess: function subProcess(val) {
19799
19842
  var _this27 = this;
@@ -21863,11 +21906,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21863
21906
  });
21864
21907
  },
21865
21908
 
21866
- /**
21867
- * saveInfo
21868
- * @desc:暂存
21869
- * @author liufan
21870
- * @date 2022年9月9日
21909
+ /**
21910
+ * saveInfo
21911
+ * @desc:暂存
21912
+ * @author liufan
21913
+ * @date 2022年9月9日
21871
21914
  **/
21872
21915
  saveInfo: function saveInfo(type, btn) {
21873
21916
  var _this8 = this;
@@ -21929,11 +21972,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21929
21972
  });
21930
21973
  },
21931
21974
 
21932
- /**
21933
- * rejectBtn
21934
- * @desc:点击驳回
21935
- * @author liufan
21936
- * @date 2022年5月25日
21975
+ /**
21976
+ * rejectBtn
21977
+ * @desc:点击驳回
21978
+ * @author liufan
21979
+ * @date 2022年5月25日
21937
21980
  **/
21938
21981
  rejectBtn: function rejectBtn() {
21939
21982
  var _this10 = this;
@@ -21951,11 +21994,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21951
21994
  }
21952
21995
  },
21953
21996
 
21954
- /**
21955
- * taskReadBtn
21956
- * @desc:点击分阅
21957
- * @author liufan
21958
- * @date 2022年5月25日
21997
+ /**
21998
+ * taskReadBtn
21999
+ * @desc:点击分阅
22000
+ * @author liufan
22001
+ * @date 2022年5月25日
21959
22002
  **/
21960
22003
  taskReadBtn: function taskReadBtn() {
21961
22004
  var _this11 = this;
@@ -21974,11 +22017,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21974
22017
  }
21975
22018
  },
21976
22019
 
21977
- /**
21978
- * getFind
21979
- * @desc:获取通知方式
21980
- * @author liufan
21981
- * @date 2022年5月25日
22020
+ /**
22021
+ * getFind
22022
+ * @desc:获取通知方式
22023
+ * @author liufan
22024
+ * @date 2022年5月25日
21982
22025
  **/
21983
22026
  getFind: function getFind() {
21984
22027
  var _this12 = this;
@@ -22043,12 +22086,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22043
22086
  });
22044
22087
  },
22045
22088
 
22046
- /**
22047
- * endFlows
22048
- * @desc:直接办结
22049
- * @author liufan
22050
- * @param {Object} res 直接办结数据
22051
- * @date 2022年5月25日
22089
+ /**
22090
+ * endFlows
22091
+ * @desc:直接办结
22092
+ * @author liufan
22093
+ * @param {Object} res 直接办结数据
22094
+ * @date 2022年5月25日
22052
22095
  **/
22053
22096
  endFlows: function endFlows(res) {
22054
22097
  var _this14 = this;
@@ -22102,12 +22145,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22102
22145
  }).catch(function (e) {});
22103
22146
  },
22104
22147
 
22105
- /**
22106
- * goView
22107
- * @desc:更多流程按钮操作
22108
- * @author liufan
22109
- * @param {Object} res 当前点击操作按钮数据
22110
- * @date 2022年5月25日
22148
+ /**
22149
+ * goView
22150
+ * @desc:更多流程按钮操作
22151
+ * @author liufan
22152
+ * @param {Object} res 当前点击操作按钮数据
22153
+ * @date 2022年5月25日
22111
22154
  **/
22112
22155
  goView: function goView(res) {
22113
22156
  // 驳回并办结:rejectAndEndHtml
@@ -22192,11 +22235,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22192
22235
  // isCanStartSubFlow
22193
22236
  },
22194
22237
 
22195
- /**
22196
- * toTakeAdvice
22197
- * @desc:征求意见
22198
- * @author liufan
22199
- * @date 2022年9月29日
22238
+ /**
22239
+ * toTakeAdvice
22240
+ * @desc:征求意见
22241
+ * @author liufan
22242
+ * @date 2022年9月29日
22200
22243
  **/
22201
22244
  toTakeAdvice: function toTakeAdvice(res) {
22202
22245
  var _this16 = this;
@@ -22240,11 +22283,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22240
22283
  });
22241
22284
  },
22242
22285
 
22243
- /**
22244
- * toStartDraf
22245
- * @desc: 稿件递送、联合审核、复核
22246
- * @author liufan
22247
- * @date 2022年9月29日
22286
+ /**
22287
+ * toStartDraf
22288
+ * @desc: 稿件递送、联合审核、复核
22289
+ * @author liufan
22290
+ * @date 2022年9月29日
22248
22291
  **/
22249
22292
  toStartDraf: function toStartDraf(res) {
22250
22293
  var _this18 = this;
@@ -22258,11 +22301,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22258
22301
  }
22259
22302
  },
22260
22303
 
22261
- /**
22262
- * toSendMsg
22263
- * @desc:核稿通知
22264
- * @author liufan
22265
- * @date 2022年9月29日
22304
+ /**
22305
+ * toSendMsg
22306
+ * @desc:核稿通知
22307
+ * @author liufan
22308
+ * @date 2022年9月29日
22266
22309
  **/
22267
22310
  toSendMsg: function toSendMsg(res) {
22268
22311
  var _this19 = this;
@@ -22276,11 +22319,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22276
22319
  }
22277
22320
  },
22278
22321
 
22279
- /**
22280
- * toTaskReadAndEnd
22281
- * @desc:分阅并办结
22282
- * @author liufan
22283
- * @date 2022年9月29日
22322
+ /**
22323
+ * toTaskReadAndEnd
22324
+ * @desc:分阅并办结
22325
+ * @author liufan
22326
+ * @date 2022年9月29日
22284
22327
  **/
22285
22328
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
22286
22329
  var _this20 = this;
@@ -22298,11 +22341,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22298
22341
  }
22299
22342
  },
22300
22343
 
22301
- /**
22302
- * rejectAndEnd
22303
- * @desc:驳回并办结
22304
- * @author liufan
22305
- * @date 2022年9月29日
22344
+ /**
22345
+ * rejectAndEnd
22346
+ * @desc:驳回并办结
22347
+ * @author liufan
22348
+ * @date 2022年9月29日
22306
22349
  **/
22307
22350
  rejectAndEnd: function rejectAndEnd(res) {
22308
22351
  var _this21 = this;
@@ -22357,11 +22400,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22357
22400
  });
22358
22401
  },
22359
22402
 
22360
- /**
22361
- * toTransfer
22362
- * @desc:转办
22363
- * @author liufan
22364
- * @date 2022年9月29日
22403
+ /**
22404
+ * toTransfer
22405
+ * @desc:转办
22406
+ * @author liufan
22407
+ * @date 2022年9月29日
22365
22408
  **/
22366
22409
  toTransfer: function toTransfer(res) {
22367
22410
  var _this23 = this;
@@ -22377,11 +22420,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22377
22420
  }
22378
22421
  },
22379
22422
 
22380
- /**
22381
- * getNodeInfo
22382
- * @desc:获取节点信息
22383
- * @author liufan
22384
- * @date 2022年5月25日
22423
+ /**
22424
+ * getNodeInfo
22425
+ * @desc:获取节点信息
22426
+ * @author liufan
22427
+ * @date 2022年5月25日
22385
22428
  **/
22386
22429
  getNodeInfo: function getNodeInfo() {
22387
22430
  var _this24 = this;
@@ -22480,12 +22523,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22480
22523
  });
22481
22524
  },
22482
22525
 
22483
- /**
22484
- * selecNext
22485
- * @desc:下步节点变化时更新数据
22486
- * @author liufan
22487
- * @param {String} val 当前选中值
22488
- * @date 2022年5月25日
22526
+ /**
22527
+ * selecNext
22528
+ * @desc:下步节点变化时更新数据
22529
+ * @author liufan
22530
+ * @param {String} val 当前选中值
22531
+ * @date 2022年5月25日
22489
22532
  **/
22490
22533
  selecNext: function selecNext(val, type, isDef) {
22491
22534
  var _this25 = this;
@@ -22594,11 +22637,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22594
22637
  if (isDef !== true) this.getNodeInfo();
22595
22638
  },
22596
22639
 
22597
- /**
22598
- * isMultiple
22599
- * @desc:是否多选
22600
- * @author liufan
22601
- * @date 2022年9月13日
22640
+ /**
22641
+ * isMultiple
22642
+ * @desc:是否多选
22643
+ * @author liufan
22644
+ * @date 2022年9月13日
22602
22645
  **/
22603
22646
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
22604
22647
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -22630,11 +22673,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22630
22673
  }
22631
22674
  },
22632
22675
 
22633
- /**
22634
- * getHedInfo
22635
- * @desc:获取审核页面数据
22636
- * @author liufan
22637
- * @date 2022年5月25日
22676
+ /**
22677
+ * getHedInfo
22678
+ * @desc:获取审核页面数据
22679
+ * @author liufan
22680
+ * @date 2022年5月25日
22638
22681
  **/
22639
22682
  getHedInfo: function getHedInfo() {
22640
22683
  var _this26 = this;
@@ -22874,13 +22917,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22874
22917
  });
22875
22918
  },
22876
22919
 
22877
- /**
22878
- * closeProcess
22879
- * @desc:关闭弹窗
22880
- * @author liufan
22881
- * @param {boolean} val 当前是否办理流程
22882
- * @param {String} type 当前点击的弹窗类型
22883
- * @date 2022年5月25日
22920
+ /**
22921
+ * closeProcess
22922
+ * @desc:关闭弹窗
22923
+ * @author liufan
22924
+ * @param {boolean} val 当前是否办理流程
22925
+ * @param {String} type 当前点击的弹窗类型
22926
+ * @date 2022年5月25日
22884
22927
  **/
22885
22928
  closeProcess: function closeProcess(val, type, closeParent) {
22886
22929
  if (closeParent) {
@@ -22897,23 +22940,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22897
22940
  }
22898
22941
  },
22899
22942
 
22900
- /**
22901
- * selectChange
22902
- * @desc:常用语选择
22903
- * @author liufan
22904
- * @param {String} val 选中值
22905
- * @date 2022年5月25日
22943
+ /**
22944
+ * selectChange
22945
+ * @desc:常用语选择
22946
+ * @author liufan
22947
+ * @param {String} val 选中值
22948
+ * @date 2022年5月25日
22906
22949
  **/
22907
22950
  selectChange: function selectChange(val) {
22908
22951
  this.value = val;
22909
22952
  },
22910
22953
 
22911
- /**
22912
- * upDate
22913
- * @desc:修改常用语
22914
- * @author liufan
22915
- * @param {Object} val 修改值
22916
- * @date 2022年5月25日
22954
+ /**
22955
+ * upDate
22956
+ * @desc:修改常用语
22957
+ * @author liufan
22958
+ * @param {Object} val 修改值
22959
+ * @date 2022年5月25日
22917
22960
  **/
22918
22961
  upDate: function upDate(val) {
22919
22962
  this.FormData.id = val.id;
@@ -22921,11 +22964,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22921
22964
  },
22922
22965
 
22923
22966
 
22924
- /**
22925
- * getProcess
22926
- * @desc:获取选择流程
22927
- * @author liufan
22928
- * @date 2022年5月25日
22967
+ /**
22968
+ * getProcess
22969
+ * @desc:获取选择流程
22970
+ * @author liufan
22971
+ * @date 2022年5月25日
22929
22972
  **/
22930
22973
  getProcess: function getProcess(val) {
22931
22974
  var _this27 = this;
@@ -22977,11 +23020,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22977
23020
  });
22978
23021
  },
22979
23022
 
22980
- /**
22981
- * getPendedhistoryList
22982
- * @desc:获取流程列表
22983
- * @author liufan
22984
- * @date 2022年5月25日
23023
+ /**
23024
+ * getPendedhistoryList
23025
+ * @desc:获取流程列表
23026
+ * @author liufan
23027
+ * @date 2022年5月25日
22985
23028
  **/
22986
23029
  getPendedhistoryList: function getPendedhistoryList() {
22987
23030
  var _this28 = this;
@@ -23048,12 +23091,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23048
23091
  },
23049
23092
 
23050
23093
  // 提交流程
23051
- /**
23052
- * subProcess
23053
- * @desc:提交流程
23054
- * @author liufan
23055
- * @param {String} formName 当前form表单ref值
23056
- * @date 2022年5月25日
23094
+ /**
23095
+ * subProcess
23096
+ * @desc:提交流程
23097
+ * @author liufan
23098
+ * @param {String} formName 当前form表单ref值
23099
+ * @date 2022年5月25日
23057
23100
  **/
23058
23101
  subProcess: function subProcess(val, type) {
23059
23102
  var _this30 = this;