eoss-ui 0.6.43 → 0.6.45

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 (285) hide show
  1. package/lib/button.js +2 -2
  2. package/lib/cascader.js +2 -2
  3. package/lib/date-picker.js +2 -2
  4. package/lib/enable-drag.js +839 -0
  5. package/lib/enterprise.js +2 -2
  6. package/lib/eoss-ui.common.js +1459 -828
  7. package/lib/error-page.js +2 -2
  8. package/lib/flow-group.js +2 -2
  9. package/lib/flow-list.js +83 -83
  10. package/lib/flow.js +292 -292
  11. package/lib/form.js +3 -2
  12. package/lib/handle-user.js +2 -2
  13. package/lib/handler.js +5 -6
  14. package/lib/icon.js +9 -9
  15. package/lib/icons.js +2 -2
  16. package/lib/index.js +1 -1
  17. package/lib/input-number.js +2 -2
  18. package/lib/input.js +2 -2
  19. package/lib/label.js +2 -2
  20. package/lib/main.js +409 -314
  21. package/lib/menu.js +2 -2
  22. package/lib/nav.js +29 -104
  23. package/lib/notify.js +2 -2
  24. package/lib/page.js +2 -2
  25. package/lib/pagination.js +2 -2
  26. package/lib/player.js +2 -2
  27. package/lib/qr-code.js +15 -15
  28. package/lib/radio-group.js +2 -2
  29. package/lib/retrial-auth.js +2 -2
  30. package/lib/select-ganged.js +2 -2
  31. package/lib/select.js +2 -2
  32. package/lib/selector.js +9 -9
  33. package/lib/sizer.js +2 -2
  34. package/lib/steps.js +2 -2
  35. package/lib/switch.js +9 -9
  36. package/lib/table-form.js +2 -2
  37. package/lib/tabs-panel.js +2 -2
  38. package/lib/tabs.js +2 -2
  39. package/lib/theme-chalk/enable-drag.css +1 -0
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/theme-chalk/login.css +1 -1
  42. package/lib/theme-chalk/main.css +1 -1
  43. package/lib/theme-chalk/nav.css +1 -1
  44. package/lib/theme-chalk/simplicity.css +1 -1
  45. package/lib/tips.js +2 -2
  46. package/lib/toolbar.js +2 -2
  47. package/lib/tree-group.js +2 -2
  48. package/lib/tree.js +2 -2
  49. package/lib/wujie.js +2 -2
  50. package/lib/wxlogin.js +145 -145
  51. package/package.json +159 -159
  52. package/packages/.DS_Store +0 -0
  53. package/packages/button/index.js +5 -5
  54. package/packages/button/src/main.vue +418 -418
  55. package/packages/button-group/index.js +5 -5
  56. package/packages/button-group/src/main.vue +298 -298
  57. package/packages/calendar/index.js +5 -5
  58. package/packages/card/index.js +5 -5
  59. package/packages/card/src/main.vue +156 -156
  60. package/packages/cascader/index.js +5 -5
  61. package/packages/cascader/src/main.vue +168 -168
  62. package/packages/checkbox-group/index.js +5 -5
  63. package/packages/checkbox-group/src/main.vue +333 -333
  64. package/packages/clients/index.js +5 -5
  65. package/packages/clients/src/main.vue +144 -144
  66. package/packages/data-table/.DS_Store +0 -0
  67. package/packages/data-table/index.js +5 -5
  68. package/packages/data-table/src/children.vue +39 -39
  69. package/packages/data-table/src/column.vue +989 -989
  70. package/packages/data-table/src/main.vue +1822 -1822
  71. package/packages/data-table/src/sizer.vue +195 -195
  72. package/packages/data-table-form/.DS_Store +0 -0
  73. package/packages/data-table-form/index.js +5 -5
  74. package/packages/data-table-form/src/checkbox.vue +101 -101
  75. package/packages/data-table-form/src/colgroup.vue +17 -17
  76. package/packages/data-table-form/src/main.vue +181 -181
  77. package/packages/data-table-form/src/radio.vue +65 -65
  78. package/packages/data-table-form/src/table.vue +233 -233
  79. package/packages/data-table-form/src/tbody.vue +336 -336
  80. package/packages/data-table-form/src/thead.vue +68 -68
  81. package/packages/date-picker/index.js +5 -5
  82. package/packages/date-picker/src/main.vue +236 -236
  83. package/packages/dialog/index.js +5 -5
  84. package/packages/enable-drag/index.js +5 -0
  85. package/packages/enable-drag/src/main.vue +362 -0
  86. package/packages/enterprise/index.js +5 -5
  87. package/packages/enterprise/src/main.vue +66 -66
  88. package/packages/error-page/.DS_Store +0 -0
  89. package/packages/error-page/index.js +5 -5
  90. package/packages/error-page/src/main.vue +44 -44
  91. package/packages/flow/.DS_Store +0 -0
  92. package/packages/flow/index.js +5 -5
  93. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  94. package/packages/flow/src/component/CustomPreset.vue +322 -322
  95. package/packages/flow/src/component/FileList.vue +99 -99
  96. package/packages/flow/src/component/Preset.vue +255 -255
  97. package/packages/flow/src/component/SendMsg.vue +229 -229
  98. package/packages/flow/src/component/TimeLimit.vue +190 -190
  99. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  100. package/packages/flow/src/form.vue +121 -121
  101. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  102. package/packages/flow/src/main.vue +2952 -2952
  103. package/packages/flow/src/processForm.vue +1018 -1018
  104. package/packages/flow/src/processReject.vue +293 -293
  105. package/packages/flow/src/reset.vue +899 -899
  106. package/packages/flow/src/startTaskRead.vue +596 -596
  107. package/packages/flow/src/table.vue +58 -58
  108. package/packages/flow-group/index.js +5 -5
  109. package/packages/flow-group/src/main.vue +688 -688
  110. package/packages/flow-list/index.js +5 -5
  111. package/packages/flow-list/src/main.vue +1183 -1183
  112. package/packages/form/.DS_Store +0 -0
  113. package/packages/form/index.js +5 -5
  114. package/packages/form/src/main.vue +3584 -3584
  115. package/packages/form/src/table.vue +1420 -1420
  116. package/packages/handle-user/index.js +5 -5
  117. package/packages/handle-user/src/main.vue +138 -138
  118. package/packages/handler/index.js +5 -5
  119. package/packages/handler/src/main.vue +474 -474
  120. package/packages/icon/index.js +5 -5
  121. package/packages/icon/src/main.vue +101 -101
  122. package/packages/icons/index.js +5 -5
  123. package/packages/icons/src/main.vue +81 -81
  124. package/packages/input/index.js +5 -5
  125. package/packages/input/src/main.vue +356 -356
  126. package/packages/input-number/index.js +5 -5
  127. package/packages/input-number/src/main.vue +106 -106
  128. package/packages/label/index.js +5 -5
  129. package/packages/label/src/main.vue +457 -457
  130. package/packages/layout/index.js +5 -5
  131. package/packages/layout/src/item.vue +152 -152
  132. package/packages/layout/src/main.vue +31 -31
  133. package/packages/login/.DS_Store +0 -0
  134. package/packages/login/index.js +5 -5
  135. package/packages/login/src/main.vue +1935 -1935
  136. package/packages/login/src/resetPassword.vue +562 -562
  137. package/packages/main/.DS_Store +0 -0
  138. package/packages/main/index.js +5 -5
  139. package/packages/main/src/.DS_Store +0 -0
  140. package/packages/main/src/default/index.vue +166 -171
  141. package/packages/main/src/default/message.vue +249 -249
  142. package/packages/main/src/default/notice.vue +157 -157
  143. package/packages/main/src/default/userinfo.vue +505 -505
  144. package/packages/main/src/public/online.vue +89 -89
  145. package/packages/main/src/public/search.vue +461 -461
  146. package/packages/main/src/public/settings.vue +221 -221
  147. package/packages/main/src/simplicity/apps.vue +388 -388
  148. package/packages/main/src/simplicity/avatar.vue +82 -82
  149. package/packages/main/src/simplicity/handler.vue +259 -259
  150. package/packages/main/src/simplicity/index.vue +2044 -2047
  151. package/packages/main/src/simplicity/lists.vue +84 -84
  152. package/packages/main/src/simplicity/menu-list.vue +128 -128
  153. package/packages/main/src/simplicity/message.vue +259 -259
  154. package/packages/main/src/simplicity/notice.vue +190 -190
  155. package/packages/main/src/simplicity/router-page.vue +45 -45
  156. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  157. package/packages/main/src/simplicity/user.vue +257 -257
  158. package/packages/main/src/simplicity/userinfo.vue +312 -312
  159. package/packages/menu/index.js +5 -5
  160. package/packages/menu/src/main.vue +536 -536
  161. package/packages/nav/index.js +5 -5
  162. package/packages/nav/src/main.vue +351 -402
  163. package/packages/notify/index.js +5 -5
  164. package/packages/notify/src/main.vue +538 -538
  165. package/packages/page/index.js +5 -5
  166. package/packages/page/src/main.vue +167 -167
  167. package/packages/pagination/index.js +5 -5
  168. package/packages/pagination/src/main.vue +96 -96
  169. package/packages/player/index.js +5 -5
  170. package/packages/player/src/main.vue +194 -194
  171. package/packages/qr-code/index.js +5 -5
  172. package/packages/qr-code/src/main.vue +170 -170
  173. package/packages/radio-group/index.js +6 -6
  174. package/packages/radio-group/src/main.vue +319 -319
  175. package/packages/retrial-auth/index.js +5 -5
  176. package/packages/retrial-auth/src/main.vue +280 -280
  177. package/packages/select/index.js +5 -5
  178. package/packages/select/src/main.vue +775 -775
  179. package/packages/select-ganged/index.js +5 -5
  180. package/packages/select-ganged/src/main.vue +724 -724
  181. package/packages/selector/.DS_Store +0 -0
  182. package/packages/selector/index.js +5 -5
  183. package/packages/selector/src/main.vue +689 -689
  184. package/packages/selector-panel/.DS_Store +0 -0
  185. package/packages/selector-panel/index.js +5 -5
  186. package/packages/selector-panel/src/main.vue +1027 -1027
  187. package/packages/selector-panel/src/selection.vue +177 -177
  188. package/packages/selector-panel/src/tree.vue +129 -129
  189. package/packages/sizer/.DS_Store +0 -0
  190. package/packages/sizer/index.js +5 -5
  191. package/packages/sizer/src/main.vue +254 -254
  192. package/packages/steps/index.js +5 -5
  193. package/packages/steps/src/main.vue +181 -181
  194. package/packages/switch/index.js +5 -5
  195. package/packages/switch/src/main.vue +154 -154
  196. package/packages/table-form/index.js +5 -5
  197. package/packages/tabs/.DS_Store +0 -0
  198. package/packages/tabs/index.js +5 -5
  199. package/packages/tabs/src/main.vue +788 -788
  200. package/packages/tabs-panel/index.js +5 -5
  201. package/packages/tabs-panel/src/main.vue +29 -29
  202. package/packages/theme-chalk/lib/enable-drag.css +1 -0
  203. package/packages/theme-chalk/lib/index.css +1 -1
  204. package/packages/theme-chalk/lib/login.css +1 -1
  205. package/packages/theme-chalk/lib/main.css +1 -1
  206. package/packages/theme-chalk/lib/nav.css +1 -1
  207. package/packages/theme-chalk/lib/simplicity.css +1 -1
  208. package/packages/theme-chalk/src/.DS_Store +0 -0
  209. package/packages/theme-chalk/src/base.scss +260 -260
  210. package/packages/theme-chalk/src/button-group.scss +175 -175
  211. package/packages/theme-chalk/src/button.scss +24 -24
  212. package/packages/theme-chalk/src/calendar.scss +113 -113
  213. package/packages/theme-chalk/src/card.scss +99 -99
  214. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  215. package/packages/theme-chalk/src/clients.scss +87 -87
  216. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  217. package/packages/theme-chalk/src/data-table.scss +293 -293
  218. package/packages/theme-chalk/src/date-picker.scss +7 -7
  219. package/packages/theme-chalk/src/dialog.scss +77 -77
  220. package/packages/theme-chalk/src/enable-drag.scss +181 -0
  221. package/packages/theme-chalk/src/enterprise.scss +5 -5
  222. package/packages/theme-chalk/src/error-page.scss +18 -18
  223. package/packages/theme-chalk/src/flow-group.scss +110 -110
  224. package/packages/theme-chalk/src/flow-list.scss +36 -36
  225. package/packages/theme-chalk/src/flow.scss +318 -318
  226. package/packages/theme-chalk/src/form.scss +496 -496
  227. package/packages/theme-chalk/src/handle-user.scss +40 -40
  228. package/packages/theme-chalk/src/handler.scss +143 -143
  229. package/packages/theme-chalk/src/icon.scss +1789 -1789
  230. package/packages/theme-chalk/src/icons.scss +99 -99
  231. package/packages/theme-chalk/src/index.scss +1 -0
  232. package/packages/theme-chalk/src/input.scss +9 -9
  233. package/packages/theme-chalk/src/label.scss +24 -24
  234. package/packages/theme-chalk/src/layout.scss +46 -46
  235. package/packages/theme-chalk/src/login.scss +969 -947
  236. package/packages/theme-chalk/src/main.scss +656 -639
  237. package/packages/theme-chalk/src/menu.scss +222 -222
  238. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  239. package/packages/theme-chalk/src/nav.scss +111 -125
  240. package/packages/theme-chalk/src/page.scss +3 -3
  241. package/packages/theme-chalk/src/pagination.scss +29 -29
  242. package/packages/theme-chalk/src/player.scss +9 -9
  243. package/packages/theme-chalk/src/qr-code.scss +17 -17
  244. package/packages/theme-chalk/src/radio-group.scss +9 -9
  245. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  246. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  247. package/packages/theme-chalk/src/select.scss +8 -8
  248. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  249. package/packages/theme-chalk/src/selector.scss +91 -91
  250. package/packages/theme-chalk/src/simplicity.scss +1265 -1262
  251. package/packages/theme-chalk/src/sizer.scss +36 -36
  252. package/packages/theme-chalk/src/steps.scss +88 -88
  253. package/packages/theme-chalk/src/switch.scss +3 -3
  254. package/packages/theme-chalk/src/table-form.scss +1 -1
  255. package/packages/theme-chalk/src/tabs.scss +87 -87
  256. package/packages/theme-chalk/src/tips.scss +7 -7
  257. package/packages/theme-chalk/src/toolbar.scss +179 -179
  258. package/packages/theme-chalk/src/tree-group.scss +72 -72
  259. package/packages/theme-chalk/src/tree.scss +165 -165
  260. package/packages/theme-chalk/src/upload.scss +167 -167
  261. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  262. package/packages/tips/index.js +5 -5
  263. package/packages/tips/src/main.vue +141 -141
  264. package/packages/toolbar/index.js +5 -5
  265. package/packages/toolbar/src/main.vue +430 -430
  266. package/packages/tree/index.js +5 -5
  267. package/packages/tree-group/index.js +5 -5
  268. package/packages/upload/.DS_Store +0 -0
  269. package/packages/upload/index.js +5 -5
  270. package/packages/upload/src/main.vue +1334 -1334
  271. package/packages/upload/src/picture.js +15 -15
  272. package/packages/wujie/index.js +5 -5
  273. package/packages/wujie/src/main.vue +145 -145
  274. package/packages/wxlogin/index.js +5 -5
  275. package/packages/wxlogin/src/main.vue +128 -128
  276. package/src/.DS_Store +0 -0
  277. package/src/config/api.js +248 -248
  278. package/src/config/image.js +2 -2
  279. package/src/index.js +160 -157
  280. package/src/utils/bus.js +3 -3
  281. package/src/utils/date-util.js +312 -312
  282. package/src/utils/http.js +50 -50
  283. package/src/utils/rules.js +18 -18
  284. package/src/utils/store.js +21 -21
  285. package/src/utils/webSocket.js +107 -107
package/lib/flow.js CHANGED
@@ -4347,7 +4347,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4347
4347
  // ESM COMPAT FLAG
4348
4348
  __webpack_require__.r(__webpack_exports__);
4349
4349
 
4350
- // 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=5cd9622b&
4350
+ // 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=aca8921c&
4351
4351
  var render = function () {
4352
4352
  var _vm = this
4353
4353
  var _h = _vm.$createElement
@@ -6468,7 +6468,7 @@ var staticRenderFns = []
6468
6468
  render._withStripped = true
6469
6469
 
6470
6470
 
6471
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5cd9622b&
6471
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=aca8921c&
6472
6472
 
6473
6473
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
6474
6474
  var regenerator_ = __webpack_require__(14);
@@ -7281,21 +7281,21 @@ var _components;
7281
7281
  return validSate;
7282
7282
  },
7283
7283
 
7284
- /**
7285
- * changeOpinion
7286
- * @desc:监听意见变化
7287
- * @author liufan
7288
- * @date 2022年10月28日
7284
+ /**
7285
+ * changeOpinion
7286
+ * @desc:监听意见变化
7287
+ * @author liufan
7288
+ * @date 2022年10月28日
7289
7289
  **/
7290
7290
  changeOpinion: function changeOpinion() {
7291
7291
  this.$emit('change', this.form.value);
7292
7292
  },
7293
7293
 
7294
- /**
7295
- * getCommonOpion
7296
- * @desc:获取意见
7297
- * @author liufan
7298
- * @date 2022年5月25日
7294
+ /**
7295
+ * getCommonOpion
7296
+ * @desc:获取意见
7297
+ * @author liufan
7298
+ * @date 2022年5月25日
7299
7299
  **/
7300
7300
  getCommonOpion: function getCommonOpion() {
7301
7301
  var _this = this;
@@ -7324,24 +7324,24 @@ var _components;
7324
7324
  });
7325
7325
  },
7326
7326
 
7327
- /**
7328
- * upDate
7329
- * @desc:修改常用语
7330
- * @author liufan
7331
- * @param {Object} val 修改值
7332
- * @date 2022年5月25日
7327
+ /**
7328
+ * upDate
7329
+ * @desc:修改常用语
7330
+ * @author liufan
7331
+ * @param {Object} val 修改值
7332
+ * @date 2022年5月25日
7333
7333
  **/
7334
7334
  upDate: function upDate(val) {
7335
7335
  this.FormData.id = val.id;
7336
7336
  this.addVisible = true;
7337
7337
  },
7338
7338
 
7339
- /**
7340
- * selectChange
7341
- * @desc:常用语选择
7342
- * @author liufan
7343
- * @param {String} val 选中值
7344
- * @date 2022年5月25日
7339
+ /**
7340
+ * selectChange
7341
+ * @desc:常用语选择
7342
+ * @author liufan
7343
+ * @param {String} val 选中值
7344
+ * @date 2022年5月25日
7345
7345
  **/
7346
7346
  selectChange: function selectChange(val) {
7347
7347
  var _this2 = this;
@@ -7360,12 +7360,12 @@ var _components;
7360
7360
  });
7361
7361
  },
7362
7362
 
7363
- /**
7364
- * del
7365
- * @desc:删除常用语
7366
- * @author liufan
7367
- * @param {Object} val 删除的数据
7368
- * @date 2022年5月25日
7363
+ /**
7364
+ * del
7365
+ * @desc:删除常用语
7366
+ * @author liufan
7367
+ * @param {Object} val 删除的数据
7368
+ * @date 2022年5月25日
7369
7369
  **/
7370
7370
  del: function del(val) {
7371
7371
  var _this3 = this;
@@ -7407,12 +7407,12 @@ var _components;
7407
7407
  }).catch(function (e) {});
7408
7408
  },
7409
7409
 
7410
- /**
7411
- * submit
7412
- * @desc:新增/编辑意见保存
7413
- * @author liufan
7414
- * @param {Object} val 保存数据
7415
- * @date 2022年5月25日
7410
+ /**
7411
+ * submit
7412
+ * @desc:新增/编辑意见保存
7413
+ * @author liufan
7414
+ * @param {Object} val 保存数据
7415
+ * @date 2022年5月25日
7416
7416
  **/
7417
7417
  submit: function submit(val) {
7418
7418
  var _this4 = this;
@@ -7477,8 +7477,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
7477
7477
  )
7478
7478
 
7479
7479
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
7480
- // 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=3659fae7&
7481
- var processFormvue_type_template_id_3659fae7_render = function () {
7480
+ // 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=0829b0a1&
7481
+ var processFormvue_type_template_id_0829b0a1_render = function () {
7482
7482
  var _vm = this
7483
7483
  var _h = _vm.$createElement
7484
7484
  var _c = _vm._self._c || _h
@@ -8008,11 +8008,11 @@ var processFormvue_type_template_id_3659fae7_render = function () {
8008
8008
  1
8009
8009
  )
8010
8010
  }
8011
- var processFormvue_type_template_id_3659fae7_staticRenderFns = []
8012
- processFormvue_type_template_id_3659fae7_render._withStripped = true
8011
+ var processFormvue_type_template_id_0829b0a1_staticRenderFns = []
8012
+ processFormvue_type_template_id_0829b0a1_render._withStripped = true
8013
8013
 
8014
8014
 
8015
- // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=3659fae7&
8015
+ // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=0829b0a1&
8016
8016
 
8017
8017
  // 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=615d0e78&
8018
8018
  var selectUservue_type_template_id_615d0e78_render = function () {
@@ -9937,7 +9937,7 @@ var processFormvue_type_script_lang_js_components;
9937
9937
  this.nextUserTabs = {
9938
9938
  department: {
9939
9939
  param: {
9940
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId
9940
+ filid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId
9941
9941
  }
9942
9942
  }
9943
9943
  };
@@ -9952,7 +9952,7 @@ var processFormvue_type_script_lang_js_components;
9952
9952
  enterprise: { param: { filid: 'other' } },
9953
9953
  department: {
9954
9954
  param: {
9955
- filid: JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId
9955
+ filid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId
9956
9956
  }
9957
9957
  }
9958
9958
  };
@@ -10279,11 +10279,11 @@ var processFormvue_type_script_lang_js_components;
10279
10279
  });
10280
10280
  },
10281
10281
 
10282
- /**
10283
- * isMultiple
10284
- * @desc:是否多选
10285
- * @author liufan
10286
- * @date 2022年9月13日
10282
+ /**
10283
+ * isMultiple
10284
+ * @desc:是否多选
10285
+ * @author liufan
10286
+ * @date 2022年9月13日
10287
10287
  **/
10288
10288
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
10289
10289
  var multiple = false;
@@ -10436,8 +10436,8 @@ var processFormvue_type_script_lang_js_components;
10436
10436
 
10437
10437
  var processForm_component = Object(componentNormalizer["a" /* default */])(
10438
10438
  src_processFormvue_type_script_lang_js_,
10439
- processFormvue_type_template_id_3659fae7_render,
10440
- processFormvue_type_template_id_3659fae7_staticRenderFns,
10439
+ processFormvue_type_template_id_0829b0a1_render,
10440
+ processFormvue_type_template_id_0829b0a1_staticRenderFns,
10441
10441
  false,
10442
10442
  null,
10443
10443
  null,
@@ -14088,11 +14088,11 @@ var resetvue_type_script_lang_js_components;
14088
14088
  });
14089
14089
  },
14090
14090
 
14091
- /**
14092
- * isMultiple
14093
- * @desc:是否多选
14094
- * @author liufan
14095
- * @date 2022年9月13日
14091
+ /**
14092
+ * isMultiple
14093
+ * @desc:是否多选
14094
+ * @author liufan
14095
+ * @date 2022年9月13日
14096
14096
  **/
14097
14097
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
14098
14098
  var multiple = false;
@@ -18454,11 +18454,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18454
18454
  });
18455
18455
  },
18456
18456
 
18457
- /**
18458
- * saveInfo
18459
- * @desc:暂存
18460
- * @author liufan
18461
- * @date 2022年9月9日
18457
+ /**
18458
+ * saveInfo
18459
+ * @desc:暂存
18460
+ * @author liufan
18461
+ * @date 2022年9月9日
18462
18462
  **/
18463
18463
  saveInfo: function saveInfo(type, btn) {
18464
18464
  var _this6 = this;
@@ -18520,11 +18520,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18520
18520
  });
18521
18521
  },
18522
18522
 
18523
- /**
18524
- * rejectBtn
18525
- * @desc:点击驳回
18526
- * @author liufan
18527
- * @date 2022年5月25日
18523
+ /**
18524
+ * rejectBtn
18525
+ * @desc:点击驳回
18526
+ * @author liufan
18527
+ * @date 2022年5月25日
18528
18528
  **/
18529
18529
  rejectBtn: function rejectBtn() {
18530
18530
  var _this8 = this;
@@ -18542,11 +18542,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18542
18542
  }
18543
18543
  },
18544
18544
 
18545
- /**
18546
- * taskReadBtn
18547
- * @desc:点击分阅
18548
- * @author liufan
18549
- * @date 2022年5月25日
18545
+ /**
18546
+ * taskReadBtn
18547
+ * @desc:点击分阅
18548
+ * @author liufan
18549
+ * @date 2022年5月25日
18550
18550
  **/
18551
18551
  taskReadBtn: function taskReadBtn() {
18552
18552
  var _this9 = this;
@@ -18565,11 +18565,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18565
18565
  }
18566
18566
  },
18567
18567
 
18568
- /**
18569
- * getFind
18570
- * @desc:获取通知方式
18571
- * @author liufan
18572
- * @date 2022年5月25日
18568
+ /**
18569
+ * getFind
18570
+ * @desc:获取通知方式
18571
+ * @author liufan
18572
+ * @date 2022年5月25日
18573
18573
  **/
18574
18574
  getFind: function getFind() {
18575
18575
  var _this10 = this;
@@ -18624,12 +18624,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18624
18624
  });
18625
18625
  },
18626
18626
 
18627
- /**
18628
- * endFlows
18629
- * @desc:直接办结
18630
- * @author liufan
18631
- * @param {Object} res 直接办结数据
18632
- * @date 2022年5月25日
18627
+ /**
18628
+ * endFlows
18629
+ * @desc:直接办结
18630
+ * @author liufan
18631
+ * @param {Object} res 直接办结数据
18632
+ * @date 2022年5月25日
18633
18633
  **/
18634
18634
  endFlows: function endFlows(res) {
18635
18635
  var _this12 = this;
@@ -18683,12 +18683,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18683
18683
  }).catch(function (e) {});
18684
18684
  },
18685
18685
 
18686
- /**
18687
- * goView
18688
- * @desc:更多流程按钮操作
18689
- * @author liufan
18690
- * @param {Object} res 当前点击操作按钮数据
18691
- * @date 2022年5月25日
18686
+ /**
18687
+ * goView
18688
+ * @desc:更多流程按钮操作
18689
+ * @author liufan
18690
+ * @param {Object} res 当前点击操作按钮数据
18691
+ * @date 2022年5月25日
18692
18692
  **/
18693
18693
  goView: function goView(res) {
18694
18694
  // 驳回并办结:rejectAndEndHtml
@@ -18773,11 +18773,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18773
18773
  // isCanStartSubFlow
18774
18774
  },
18775
18775
 
18776
- /**
18777
- * toTakeAdvice
18778
- * @desc:征求意见
18779
- * @author liufan
18780
- * @date 2022年9月29日
18776
+ /**
18777
+ * toTakeAdvice
18778
+ * @desc:征求意见
18779
+ * @author liufan
18780
+ * @date 2022年9月29日
18781
18781
  **/
18782
18782
  toTakeAdvice: function toTakeAdvice(res) {
18783
18783
  var _this14 = this;
@@ -18821,11 +18821,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18821
18821
  });
18822
18822
  },
18823
18823
 
18824
- /**
18825
- * toStartDraf
18826
- * @desc: 稿件递送、联合审核、复核
18827
- * @author liufan
18828
- * @date 2022年9月29日
18824
+ /**
18825
+ * toStartDraf
18826
+ * @desc: 稿件递送、联合审核、复核
18827
+ * @author liufan
18828
+ * @date 2022年9月29日
18829
18829
  **/
18830
18830
  toStartDraf: function toStartDraf(res) {
18831
18831
  var _this16 = this;
@@ -18839,11 +18839,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18839
18839
  }
18840
18840
  },
18841
18841
 
18842
- /**
18843
- * toSendMsg
18844
- * @desc:核稿通知
18845
- * @author liufan
18846
- * @date 2022年9月29日
18842
+ /**
18843
+ * toSendMsg
18844
+ * @desc:核稿通知
18845
+ * @author liufan
18846
+ * @date 2022年9月29日
18847
18847
  **/
18848
18848
  toSendMsg: function toSendMsg(res) {
18849
18849
  var _this17 = this;
@@ -18857,11 +18857,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18857
18857
  }
18858
18858
  },
18859
18859
 
18860
- /**
18861
- * toTaskReadAndEnd
18862
- * @desc:分阅并办结
18863
- * @author liufan
18864
- * @date 2022年9月29日
18860
+ /**
18861
+ * toTaskReadAndEnd
18862
+ * @desc:分阅并办结
18863
+ * @author liufan
18864
+ * @date 2022年9月29日
18865
18865
  **/
18866
18866
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
18867
18867
  var _this18 = this;
@@ -18879,11 +18879,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18879
18879
  }
18880
18880
  },
18881
18881
 
18882
- /**
18883
- * rejectAndEnd
18884
- * @desc:驳回并办结
18885
- * @author liufan
18886
- * @date 2022年9月29日
18882
+ /**
18883
+ * rejectAndEnd
18884
+ * @desc:驳回并办结
18885
+ * @author liufan
18886
+ * @date 2022年9月29日
18887
18887
  **/
18888
18888
  rejectAndEnd: function rejectAndEnd(res) {
18889
18889
  var _this19 = this;
@@ -18938,11 +18938,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18938
18938
  });
18939
18939
  },
18940
18940
 
18941
- /**
18942
- * toTransfer
18943
- * @desc:转办
18944
- * @author liufan
18945
- * @date 2022年9月29日
18941
+ /**
18942
+ * toTransfer
18943
+ * @desc:转办
18944
+ * @author liufan
18945
+ * @date 2022年9月29日
18946
18946
  **/
18947
18947
  toTransfer: function toTransfer(res) {
18948
18948
  var _this21 = this;
@@ -18958,11 +18958,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18958
18958
  }
18959
18959
  },
18960
18960
 
18961
- /**
18962
- * getNodeInfo
18963
- * @desc:获取节点信息
18964
- * @author liufan
18965
- * @date 2022年5月25日
18961
+ /**
18962
+ * getNodeInfo
18963
+ * @desc:获取节点信息
18964
+ * @author liufan
18965
+ * @date 2022年5月25日
18966
18966
  **/
18967
18967
  getNodeInfo: function getNodeInfo() {
18968
18968
  var _this22 = this;
@@ -19061,12 +19061,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19061
19061
  });
19062
19062
  },
19063
19063
 
19064
- /**
19065
- * selecNext
19066
- * @desc:下步节点变化时更新数据
19067
- * @author liufan
19068
- * @param {String} val 当前选中值
19069
- * @date 2022年5月25日
19064
+ /**
19065
+ * selecNext
19066
+ * @desc:下步节点变化时更新数据
19067
+ * @author liufan
19068
+ * @param {String} val 当前选中值
19069
+ * @date 2022年5月25日
19070
19070
  **/
19071
19071
  selecNext: function selecNext(val, type, isDef) {
19072
19072
  var _this23 = this;
@@ -19175,11 +19175,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19175
19175
  if (isDef !== true) this.getNodeInfo();
19176
19176
  },
19177
19177
 
19178
- /**
19179
- * isMultiple
19180
- * @desc:是否多选
19181
- * @author liufan
19182
- * @date 2022年9月13日
19178
+ /**
19179
+ * isMultiple
19180
+ * @desc:是否多选
19181
+ * @author liufan
19182
+ * @date 2022年9月13日
19183
19183
  **/
19184
19184
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
19185
19185
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -19211,11 +19211,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19211
19211
  }
19212
19212
  },
19213
19213
 
19214
- /**
19215
- * getHedInfo
19216
- * @desc:获取审核页面数据
19217
- * @author liufan
19218
- * @date 2022年5月25日
19214
+ /**
19215
+ * getHedInfo
19216
+ * @desc:获取审核页面数据
19217
+ * @author liufan
19218
+ * @date 2022年5月25日
19219
19219
  **/
19220
19220
  getHedInfo: function getHedInfo() {
19221
19221
  var _this24 = this;
@@ -19451,13 +19451,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19451
19451
  });
19452
19452
  },
19453
19453
 
19454
- /**
19455
- * closeProcess
19456
- * @desc:关闭弹窗
19457
- * @author liufan
19458
- * @param {boolean} val 当前是否办理流程
19459
- * @param {String} type 当前点击的弹窗类型
19460
- * @date 2022年5月25日
19454
+ /**
19455
+ * closeProcess
19456
+ * @desc:关闭弹窗
19457
+ * @author liufan
19458
+ * @param {boolean} val 当前是否办理流程
19459
+ * @param {String} type 当前点击的弹窗类型
19460
+ * @date 2022年5月25日
19461
19461
  **/
19462
19462
  closeProcess: function closeProcess(val, type, closeParent) {
19463
19463
  if (closeParent) {
@@ -19474,23 +19474,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19474
19474
  }
19475
19475
  },
19476
19476
 
19477
- /**
19478
- * selectChange
19479
- * @desc:常用语选择
19480
- * @author liufan
19481
- * @param {String} val 选中值
19482
- * @date 2022年5月25日
19477
+ /**
19478
+ * selectChange
19479
+ * @desc:常用语选择
19480
+ * @author liufan
19481
+ * @param {String} val 选中值
19482
+ * @date 2022年5月25日
19483
19483
  **/
19484
19484
  selectChange: function selectChange(val) {
19485
19485
  this.value = val;
19486
19486
  },
19487
19487
 
19488
- /**
19489
- * upDate
19490
- * @desc:修改常用语
19491
- * @author liufan
19492
- * @param {Object} val 修改值
19493
- * @date 2022年5月25日
19488
+ /**
19489
+ * upDate
19490
+ * @desc:修改常用语
19491
+ * @author liufan
19492
+ * @param {Object} val 修改值
19493
+ * @date 2022年5月25日
19494
19494
  **/
19495
19495
  upDate: function upDate(val) {
19496
19496
  this.FormData.id = val.id;
@@ -19498,11 +19498,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19498
19498
  },
19499
19499
 
19500
19500
 
19501
- /**
19502
- * getProcess
19503
- * @desc:获取选择流程
19504
- * @author liufan
19505
- * @date 2022年5月25日
19501
+ /**
19502
+ * getProcess
19503
+ * @desc:获取选择流程
19504
+ * @author liufan
19505
+ * @date 2022年5月25日
19506
19506
  **/
19507
19507
  getProcess: function getProcess() {
19508
19508
  var _this25 = this;
@@ -19556,11 +19556,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19556
19556
  });
19557
19557
  },
19558
19558
 
19559
- /**
19560
- * getPendedhistoryList
19561
- * @desc:获取流程列表
19562
- * @author liufan
19563
- * @date 2022年5月25日
19559
+ /**
19560
+ * getPendedhistoryList
19561
+ * @desc:获取流程列表
19562
+ * @author liufan
19563
+ * @date 2022年5月25日
19564
19564
  **/
19565
19565
  getPendedhistoryList: function getPendedhistoryList() {
19566
19566
  var _this26 = this;
@@ -19592,12 +19592,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19592
19592
  },
19593
19593
 
19594
19594
  // 提交流程
19595
- /**
19596
- * subProcess
19597
- * @desc:提交流程
19598
- * @author liufan
19599
- * @param {String} formName 当前form表单ref值
19600
- * @date 2022年5月25日
19595
+ /**
19596
+ * subProcess
19597
+ * @desc:提交流程
19598
+ * @author liufan
19599
+ * @param {String} formName 当前form表单ref值
19600
+ * @date 2022年5月25日
19601
19601
  **/
19602
19602
  subProcess: function subProcess(val) {
19603
19603
  var _this27 = this;
@@ -20706,7 +20706,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20706
20706
  }
20707
20707
  },
20708
20708
  beforeSubmit: Function,
20709
- title: { type: String, default: '事务表单办理' },
20709
+ title: { type: String, default: '流程办理' },
20710
20710
  closeParent: Boolean,
20711
20711
  param: {
20712
20712
  type: Object,
@@ -21229,11 +21229,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21229
21229
  });
21230
21230
  },
21231
21231
 
21232
- /**
21233
- * saveInfo
21234
- * @desc:暂存
21235
- * @author liufan
21236
- * @date 2022年9月9日
21232
+ /**
21233
+ * saveInfo
21234
+ * @desc:暂存
21235
+ * @author liufan
21236
+ * @date 2022年9月9日
21237
21237
  **/
21238
21238
  saveInfo: function saveInfo(type, btn) {
21239
21239
  var _this7 = this;
@@ -21295,11 +21295,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21295
21295
  });
21296
21296
  },
21297
21297
 
21298
- /**
21299
- * rejectBtn
21300
- * @desc:点击驳回
21301
- * @author liufan
21302
- * @date 2022年5月25日
21298
+ /**
21299
+ * rejectBtn
21300
+ * @desc:点击驳回
21301
+ * @author liufan
21302
+ * @date 2022年5月25日
21303
21303
  **/
21304
21304
  rejectBtn: function rejectBtn() {
21305
21305
  var _this9 = this;
@@ -21317,11 +21317,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21317
21317
  }
21318
21318
  },
21319
21319
 
21320
- /**
21321
- * taskReadBtn
21322
- * @desc:点击分阅
21323
- * @author liufan
21324
- * @date 2022年5月25日
21320
+ /**
21321
+ * taskReadBtn
21322
+ * @desc:点击分阅
21323
+ * @author liufan
21324
+ * @date 2022年5月25日
21325
21325
  **/
21326
21326
  taskReadBtn: function taskReadBtn() {
21327
21327
  var _this10 = this;
@@ -21340,11 +21340,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21340
21340
  }
21341
21341
  },
21342
21342
 
21343
- /**
21344
- * getFind
21345
- * @desc:获取通知方式
21346
- * @author liufan
21347
- * @date 2022年5月25日
21343
+ /**
21344
+ * getFind
21345
+ * @desc:获取通知方式
21346
+ * @author liufan
21347
+ * @date 2022年5月25日
21348
21348
  **/
21349
21349
  getFind: function getFind() {
21350
21350
  var _this11 = this;
@@ -21409,12 +21409,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21409
21409
  });
21410
21410
  },
21411
21411
 
21412
- /**
21413
- * endFlows
21414
- * @desc:直接办结
21415
- * @author liufan
21416
- * @param {Object} res 直接办结数据
21417
- * @date 2022年5月25日
21412
+ /**
21413
+ * endFlows
21414
+ * @desc:直接办结
21415
+ * @author liufan
21416
+ * @param {Object} res 直接办结数据
21417
+ * @date 2022年5月25日
21418
21418
  **/
21419
21419
  endFlows: function endFlows(res) {
21420
21420
  var _this13 = this;
@@ -21468,12 +21468,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21468
21468
  }).catch(function (e) {});
21469
21469
  },
21470
21470
 
21471
- /**
21472
- * goView
21473
- * @desc:更多流程按钮操作
21474
- * @author liufan
21475
- * @param {Object} res 当前点击操作按钮数据
21476
- * @date 2022年5月25日
21471
+ /**
21472
+ * goView
21473
+ * @desc:更多流程按钮操作
21474
+ * @author liufan
21475
+ * @param {Object} res 当前点击操作按钮数据
21476
+ * @date 2022年5月25日
21477
21477
  **/
21478
21478
  goView: function goView(res) {
21479
21479
  // 驳回并办结:rejectAndEndHtml
@@ -21558,11 +21558,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21558
21558
  // isCanStartSubFlow
21559
21559
  },
21560
21560
 
21561
- /**
21562
- * toTakeAdvice
21563
- * @desc:征求意见
21564
- * @author liufan
21565
- * @date 2022年9月29日
21561
+ /**
21562
+ * toTakeAdvice
21563
+ * @desc:征求意见
21564
+ * @author liufan
21565
+ * @date 2022年9月29日
21566
21566
  **/
21567
21567
  toTakeAdvice: function toTakeAdvice(res) {
21568
21568
  var _this15 = this;
@@ -21606,11 +21606,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21606
21606
  });
21607
21607
  },
21608
21608
 
21609
- /**
21610
- * toStartDraf
21611
- * @desc: 稿件递送、联合审核、复核
21612
- * @author liufan
21613
- * @date 2022年9月29日
21609
+ /**
21610
+ * toStartDraf
21611
+ * @desc: 稿件递送、联合审核、复核
21612
+ * @author liufan
21613
+ * @date 2022年9月29日
21614
21614
  **/
21615
21615
  toStartDraf: function toStartDraf(res) {
21616
21616
  var _this17 = this;
@@ -21624,11 +21624,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21624
21624
  }
21625
21625
  },
21626
21626
 
21627
- /**
21628
- * toSendMsg
21629
- * @desc:核稿通知
21630
- * @author liufan
21631
- * @date 2022年9月29日
21627
+ /**
21628
+ * toSendMsg
21629
+ * @desc:核稿通知
21630
+ * @author liufan
21631
+ * @date 2022年9月29日
21632
21632
  **/
21633
21633
  toSendMsg: function toSendMsg(res) {
21634
21634
  var _this18 = this;
@@ -21642,11 +21642,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21642
21642
  }
21643
21643
  },
21644
21644
 
21645
- /**
21646
- * toTaskReadAndEnd
21647
- * @desc:分阅并办结
21648
- * @author liufan
21649
- * @date 2022年9月29日
21645
+ /**
21646
+ * toTaskReadAndEnd
21647
+ * @desc:分阅并办结
21648
+ * @author liufan
21649
+ * @date 2022年9月29日
21650
21650
  **/
21651
21651
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
21652
21652
  var _this19 = this;
@@ -21664,11 +21664,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21664
21664
  }
21665
21665
  },
21666
21666
 
21667
- /**
21668
- * rejectAndEnd
21669
- * @desc:驳回并办结
21670
- * @author liufan
21671
- * @date 2022年9月29日
21667
+ /**
21668
+ * rejectAndEnd
21669
+ * @desc:驳回并办结
21670
+ * @author liufan
21671
+ * @date 2022年9月29日
21672
21672
  **/
21673
21673
  rejectAndEnd: function rejectAndEnd(res) {
21674
21674
  var _this20 = this;
@@ -21723,11 +21723,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21723
21723
  });
21724
21724
  },
21725
21725
 
21726
- /**
21727
- * toTransfer
21728
- * @desc:转办
21729
- * @author liufan
21730
- * @date 2022年9月29日
21726
+ /**
21727
+ * toTransfer
21728
+ * @desc:转办
21729
+ * @author liufan
21730
+ * @date 2022年9月29日
21731
21731
  **/
21732
21732
  toTransfer: function toTransfer(res) {
21733
21733
  var _this22 = this;
@@ -21743,11 +21743,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21743
21743
  }
21744
21744
  },
21745
21745
 
21746
- /**
21747
- * getNodeInfo
21748
- * @desc:获取节点信息
21749
- * @author liufan
21750
- * @date 2022年5月25日
21746
+ /**
21747
+ * getNodeInfo
21748
+ * @desc:获取节点信息
21749
+ * @author liufan
21750
+ * @date 2022年5月25日
21751
21751
  **/
21752
21752
  getNodeInfo: function getNodeInfo() {
21753
21753
  var _this23 = this;
@@ -21846,12 +21846,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21846
21846
  });
21847
21847
  },
21848
21848
 
21849
- /**
21850
- * selecNext
21851
- * @desc:下步节点变化时更新数据
21852
- * @author liufan
21853
- * @param {String} val 当前选中值
21854
- * @date 2022年5月25日
21849
+ /**
21850
+ * selecNext
21851
+ * @desc:下步节点变化时更新数据
21852
+ * @author liufan
21853
+ * @param {String} val 当前选中值
21854
+ * @date 2022年5月25日
21855
21855
  **/
21856
21856
  selecNext: function selecNext(val, type, isDef) {
21857
21857
  var _this24 = this;
@@ -21960,11 +21960,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21960
21960
  if (isDef !== true) this.getNodeInfo();
21961
21961
  },
21962
21962
 
21963
- /**
21964
- * isMultiple
21965
- * @desc:是否多选
21966
- * @author liufan
21967
- * @date 2022年9月13日
21963
+ /**
21964
+ * isMultiple
21965
+ * @desc:是否多选
21966
+ * @author liufan
21967
+ * @date 2022年9月13日
21968
21968
  **/
21969
21969
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
21970
21970
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -21996,11 +21996,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21996
21996
  }
21997
21997
  },
21998
21998
 
21999
- /**
22000
- * getHedInfo
22001
- * @desc:获取审核页面数据
22002
- * @author liufan
22003
- * @date 2022年5月25日
21999
+ /**
22000
+ * getHedInfo
22001
+ * @desc:获取审核页面数据
22002
+ * @author liufan
22003
+ * @date 2022年5月25日
22004
22004
  **/
22005
22005
  getHedInfo: function getHedInfo() {
22006
22006
  var _this25 = this;
@@ -22237,13 +22237,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22237
22237
  });
22238
22238
  },
22239
22239
 
22240
- /**
22241
- * closeProcess
22242
- * @desc:关闭弹窗
22243
- * @author liufan
22244
- * @param {boolean} val 当前是否办理流程
22245
- * @param {String} type 当前点击的弹窗类型
22246
- * @date 2022年5月25日
22240
+ /**
22241
+ * closeProcess
22242
+ * @desc:关闭弹窗
22243
+ * @author liufan
22244
+ * @param {boolean} val 当前是否办理流程
22245
+ * @param {String} type 当前点击的弹窗类型
22246
+ * @date 2022年5月25日
22247
22247
  **/
22248
22248
  closeProcess: function closeProcess(val, type, closeParent) {
22249
22249
  if (closeParent) {
@@ -22260,23 +22260,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22260
22260
  }
22261
22261
  },
22262
22262
 
22263
- /**
22264
- * selectChange
22265
- * @desc:常用语选择
22266
- * @author liufan
22267
- * @param {String} val 选中值
22268
- * @date 2022年5月25日
22263
+ /**
22264
+ * selectChange
22265
+ * @desc:常用语选择
22266
+ * @author liufan
22267
+ * @param {String} val 选中值
22268
+ * @date 2022年5月25日
22269
22269
  **/
22270
22270
  selectChange: function selectChange(val) {
22271
22271
  this.value = val;
22272
22272
  },
22273
22273
 
22274
- /**
22275
- * upDate
22276
- * @desc:修改常用语
22277
- * @author liufan
22278
- * @param {Object} val 修改值
22279
- * @date 2022年5月25日
22274
+ /**
22275
+ * upDate
22276
+ * @desc:修改常用语
22277
+ * @author liufan
22278
+ * @param {Object} val 修改值
22279
+ * @date 2022年5月25日
22280
22280
  **/
22281
22281
  upDate: function upDate(val) {
22282
22282
  this.FormData.id = val.id;
@@ -22284,11 +22284,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22284
22284
  },
22285
22285
 
22286
22286
 
22287
- /**
22288
- * getProcess
22289
- * @desc:获取选择流程
22290
- * @author liufan
22291
- * @date 2022年5月25日
22287
+ /**
22288
+ * getProcess
22289
+ * @desc:获取选择流程
22290
+ * @author liufan
22291
+ * @date 2022年5月25日
22292
22292
  **/
22293
22293
  getProcess: function getProcess() {
22294
22294
  var _this26 = this;
@@ -22340,11 +22340,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22340
22340
  });
22341
22341
  },
22342
22342
 
22343
- /**
22344
- * getPendedhistoryList
22345
- * @desc:获取流程列表
22346
- * @author liufan
22347
- * @date 2022年5月25日
22343
+ /**
22344
+ * getPendedhistoryList
22345
+ * @desc:获取流程列表
22346
+ * @author liufan
22347
+ * @date 2022年5月25日
22348
22348
  **/
22349
22349
  getPendedhistoryList: function getPendedhistoryList() {
22350
22350
  var _this27 = this;
@@ -22376,12 +22376,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22376
22376
  },
22377
22377
 
22378
22378
  // 提交流程
22379
- /**
22380
- * subProcess
22381
- * @desc:提交流程
22382
- * @author liufan
22383
- * @param {String} formName 当前form表单ref值
22384
- * @date 2022年5月25日
22379
+ /**
22380
+ * subProcess
22381
+ * @desc:提交流程
22382
+ * @author liufan
22383
+ * @param {String} formName 当前form表单ref值
22384
+ * @date 2022年5月25日
22385
22385
  **/
22386
22386
  subProcess: function subProcess(val, type) {
22387
22387
  var _this28 = this;