eoss-ui 0.4.20 → 0.4.22

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 (71) hide show
  1. package/lib/button-group.js +34 -34
  2. package/lib/button.js +37 -37
  3. package/lib/cascader.js +2 -2
  4. package/lib/checkbox-group.js +34 -34
  5. package/lib/config/api.js +1 -1
  6. package/lib/data-table-form.js +34 -34
  7. package/lib/data-table.js +48 -40
  8. package/lib/date-picker.js +36 -36
  9. package/lib/dialog.js +37 -37
  10. package/lib/eoss-ui.common.js +2236 -377
  11. package/lib/flow-group.js +34 -34
  12. package/lib/flow-list.js +35 -35
  13. package/lib/flow.js +118 -107
  14. package/lib/form.js +1083 -167
  15. package/lib/handle-user.js +34 -34
  16. package/lib/handler.js +34 -34
  17. package/lib/icon.js +436 -0
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +36 -36
  20. package/lib/input.js +36 -36
  21. package/lib/label.js +2 -2
  22. package/lib/login.js +40 -36
  23. package/lib/main.js +583 -129
  24. package/lib/mainComp.js +54 -53
  25. package/lib/menu.js +2 -2
  26. package/lib/nav.js +36 -36
  27. package/lib/notify.js +36 -36
  28. package/lib/page.js +36 -36
  29. package/lib/pagination.js +2 -2
  30. package/lib/player.js +38 -38
  31. package/lib/qr-code.js +43 -43
  32. package/lib/radio-group.js +36 -36
  33. package/lib/select-ganged.js +36 -36
  34. package/lib/select.js +46 -46
  35. package/lib/selector-panel.js +34 -34
  36. package/lib/selector.js +36 -36
  37. package/lib/sizer.js +36 -36
  38. package/lib/steps.js +36 -36
  39. package/lib/switch.js +36 -36
  40. package/lib/table-form.js +295 -48
  41. package/lib/tabs-panel.js +2 -2
  42. package/lib/tabs.js +43 -39
  43. package/lib/theme-chalk/es-icon.css +1 -0
  44. package/lib/tips.js +36 -36
  45. package/lib/toolbar.js +2 -2
  46. package/lib/tree-group.js +36 -36
  47. package/lib/tree.js +36 -36
  48. package/lib/upload.js +48 -47
  49. package/lib/wujie.js +36 -36
  50. package/lib/wxlogin.js +36 -36
  51. package/package.json +1 -1
  52. package/packages/button/src/main.vue +7 -7
  53. package/packages/data-table/src/main.vue +9 -1
  54. package/packages/flow/src/component/taskUnionExamine.vue +3 -3
  55. package/packages/flow/src/main.vue +47 -13
  56. package/packages/flow/src/startTaskRead.vue +3 -1
  57. package/packages/form/src/main.vue +214 -0
  58. package/packages/form/src/table.vue +150 -97
  59. package/packages/icon/index.js +5 -0
  60. package/packages/icon/src/main.vue +83 -0
  61. package/packages/login/src/main.vue +4 -0
  62. package/packages/main/src/async-component/index.vue +85 -0
  63. package/packages/main/src/main.vue +178 -9
  64. package/packages/mainComp/src/main.vue +1 -1
  65. package/packages/select/src/main.vue +5 -4
  66. package/packages/tabs/src/main.vue +1 -0
  67. package/packages/theme-chalk/lib/es-icon.css +1 -0
  68. package/packages/theme-chalk/src/es-icon.scss +99 -0
  69. package/packages/upload/src/main.vue +6 -7
  70. package/src/config/api.js +1 -1
  71. package/src/index.js +4 -1
@@ -91,13 +91,13 @@ module.exports =
91
91
 
92
92
  "use strict";
93
93
  /* harmony import */ var _config_api__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1);
94
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5);
94
+ /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6);
95
95
  /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_1__);
96
96
  /* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(3);
97
97
  /* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_2__);
98
- /* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(9);
98
+ /* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(10);
99
99
  /* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(json_bigint__WEBPACK_IMPORTED_MODULE_3__);
100
- /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(7);
100
+ /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(8);
101
101
  /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(eoss_element__WEBPACK_IMPORTED_MODULE_4__);
102
102
  var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
103
103
 
@@ -2257,7 +2257,7 @@ var watermark = function watermark(option) {
2257
2257
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doWechatQrLogin; });
2258
2258
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return mainConfig; });
2259
2259
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return initUserSet; });
2260
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return updateUserInfo; });
2260
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return updateUserInfo; });
2261
2261
  /* unused harmony export getUserImgUrl */
2262
2262
  /* unused harmony export getDoorIndex */
2263
2263
  /* unused harmony export refreshOnlineUsers */
@@ -2266,17 +2266,17 @@ var watermark = function watermark(option) {
2266
2266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return getComplexApplications; });
2267
2267
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getComplexApplicationsNew; });
2268
2268
  /* unused harmony export getUserCustomInfo */
2269
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return updateUserCustomInfo; });
2269
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return updateUserCustomInfo; });
2270
2270
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return sysMsgPage; });
2271
2271
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return ignoreSysMsg; });
2272
2272
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return ignoreAllSysMsg; });
2273
2273
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return getAdjunctProperties; });
2274
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return uploads; });
2275
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return uploadOnlyOne; });
2274
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return uploads; });
2275
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return uploadOnlyOne; });
2276
2276
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return getAdjunctFileInfos; });
2277
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return uploadSort; });
2277
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return uploadSort; });
2278
2278
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return downloadByAdjunctId; });
2279
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return uploadDownloads; });
2279
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return uploadDownloads; });
2280
2280
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return previewAdjunct; });
2281
2281
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return previewAdjunct2; });
2282
2282
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return previewAdjunctOffice; });
@@ -2293,13 +2293,13 @@ var watermark = function watermark(option) {
2293
2293
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return gethelpdoc; });
2294
2294
  /* unused harmony export getCurrentuser */
2295
2295
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return mainDetail; });
2296
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return toStartFlow; });
2297
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return tempSave; });
2296
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return toStartFlow; });
2297
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return tempSave; });
2298
2298
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return commonOpion; });
2299
2299
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
2300
2300
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return editCommonOpion; });
2301
2301
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return saveCommonOpinion; });
2302
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return updateCommonOpinion; });
2302
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return updateCommonOpinion; });
2303
2303
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return deleteCommonOpion; });
2304
2304
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getProcessDefList; });
2305
2305
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getNodeInfo; });
@@ -2307,46 +2307,46 @@ var watermark = function watermark(option) {
2307
2307
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return findSysCodes; });
2308
2308
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getNotificationMsg; });
2309
2309
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getHandleInfoHtml; });
2310
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return taskHandleHtml; });
2310
+ /* unused harmony export taskHandleHtml */
2311
2311
  /* unused harmony export getView */
2312
2312
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return register; });
2313
2313
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return pendedhistoryList; });
2314
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return toTaskRejectHtml; });
2315
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return taskRejectHtml; });
2316
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return toStartTaskRead; });
2317
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return toStartTaskReadIndex; });
2318
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return taskReadHtml; });
2314
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return toTaskRejectHtml; });
2315
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return taskRejectHtml; });
2316
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return toStartTaskRead; });
2317
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return toStartTaskReadIndex; });
2318
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return taskReadHtml; });
2319
2319
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return rejectAndEnd; });
2320
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return toSendMsg; });
2320
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return toSendMsg; });
2321
2321
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return sendMsg; });
2322
2322
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return endFlowHtml; });
2323
2323
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return handleInfo; });
2324
2324
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return loginUserInfo; });
2325
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return wss; });
2326
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return topic; });
2325
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return wss; });
2326
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return topic; });
2327
2327
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getPresetCustomInfo; });
2328
2328
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getPresetNodeInfo; });
2329
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toTaskTransferIndex; });
2330
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return taskTransfer; });
2331
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return toPresetInfoListIndex; });
2329
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toTaskTransferIndex; });
2330
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return taskTransfer; });
2331
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return toPresetInfoListIndex; });
2332
2332
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deletePresetInfo; });
2333
2333
  /* unused harmony export historyListJson */
2334
2334
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return pendedhistoryListJson; });
2335
2335
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return pressListJson; });
2336
2336
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteFlow; });
2337
2337
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return isCanStartSubFlow; });
2338
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toTaskUnionExamine; });
2339
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskUnionExamine; });
2340
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toTaskTakeAdvice; });
2341
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return taskTakeAdvice; });
2342
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toTaskStartDraft; });
2343
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return taskStartDraft; });
2344
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return toTaskReview; });
2345
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return taskReview; });
2346
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toTaskUnionSeal; });
2347
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskUnionSeal; });
2348
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTwoOfficesDispatch; });
2349
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return twoOfficesDispatch; });
2338
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toTaskUnionExamine; });
2339
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return taskUnionExamine; });
2340
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toTaskTakeAdvice; });
2341
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return taskTakeAdvice; });
2342
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return toTaskStartDraft; });
2343
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return taskStartDraft; });
2344
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return toTaskReview; });
2345
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return taskReview; });
2346
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toTaskUnionSeal; });
2347
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskUnionSeal; });
2348
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toTwoOfficesDispatch; });
2349
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return twoOfficesDispatch; });
2350
2350
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return sendList; });
2351
2351
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return sendInfo; });
2352
2352
  /* unused harmony export sendSave */
@@ -2545,7 +2545,7 @@ var taskUnionSeal = '/bpm/task/taskHandle/taskUnionSeal.dhtml';
2545
2545
  // 报送两办
2546
2546
  var toTwoOfficesDispatch = '/bpm/bpmBackend/toTwoOfficesDispatch';
2547
2547
  // 报送两办提交
2548
- var twoOfficesDispatch = 'task/taskHandle/twoOfficesDispatch.dhtml';
2548
+ var twoOfficesDispatch = '/bpm/task/taskHandle/twoOfficesDispatch.dhtml';
2549
2549
 
2550
2550
  // notifySend 消息发送
2551
2551
  var sendList = '/notify2/notifySendRecord/listJson';
@@ -2575,55 +2575,55 @@ module.exports = require("qs");
2575
2575
  /* 4 */
2576
2576
  /***/ (function(module, exports) {
2577
2577
 
2578
- module.exports = require("sockjs-client");
2578
+ module.exports = require("runtime-import");
2579
2579
 
2580
2580
  /***/ }),
2581
2581
  /* 5 */
2582
2582
  /***/ (function(module, exports) {
2583
2583
 
2584
- module.exports = require("axios");
2584
+ module.exports = require("sockjs-client");
2585
2585
 
2586
2586
  /***/ }),
2587
2587
  /* 6 */
2588
2588
  /***/ (function(module, exports) {
2589
2589
 
2590
- module.exports = require("stompjs");
2590
+ module.exports = require("axios");
2591
2591
 
2592
2592
  /***/ }),
2593
2593
  /* 7 */
2594
2594
  /***/ (function(module, exports) {
2595
2595
 
2596
- module.exports = require("eoss-element");
2596
+ module.exports = require("stompjs");
2597
2597
 
2598
2598
  /***/ }),
2599
2599
  /* 8 */
2600
2600
  /***/ (function(module, exports) {
2601
2601
 
2602
- module.exports = require("video.js");
2602
+ module.exports = require("eoss-element");
2603
2603
 
2604
2604
  /***/ }),
2605
2605
  /* 9 */
2606
2606
  /***/ (function(module, exports) {
2607
2607
 
2608
- module.exports = require("json-bigint");
2608
+ module.exports = require("video.js");
2609
2609
 
2610
2610
  /***/ }),
2611
2611
  /* 10 */
2612
2612
  /***/ (function(module, exports) {
2613
2613
 
2614
- module.exports = require("vue");
2614
+ module.exports = require("json-bigint");
2615
2615
 
2616
2616
  /***/ }),
2617
2617
  /* 11 */
2618
2618
  /***/ (function(module, exports) {
2619
2619
 
2620
- module.exports = require("wujie-vue2");
2620
+ module.exports = require("vue");
2621
2621
 
2622
2622
  /***/ }),
2623
2623
  /* 12 */
2624
2624
  /***/ (function(module, exports) {
2625
2625
 
2626
- module.exports = require("runtime-import");
2626
+ module.exports = require("wujie-vue2");
2627
2627
 
2628
2628
  /***/ }),
2629
2629
  /* 13 */
@@ -2868,7 +2868,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
2868
2868
  var times = setInterval(function () {
2869
2869
  if (windows.closed) {
2870
2870
  clearInterval(times);
2871
- _this.esSelect && _this.esSelect.reload(param);
2871
+ _this.esSelect && _this.esSelect.reload(null, param, true);
2872
2872
  _this.esTable && _this.esTable.reload(param);
2873
2873
  }
2874
2874
  }, 1000);
@@ -4460,8 +4460,8 @@ clients_src_main.install = function (Vue) {
4460
4460
  };
4461
4461
 
4462
4462
  /* harmony default export */ var clients = (clients_src_main);
4463
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=31eae2e0&
4464
- var mainvue_type_template_id_31eae2e0_render = function () {
4463
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=02ca227b&
4464
+ var mainvue_type_template_id_02ca227b_render = function () {
4465
4465
  var _vm = this
4466
4466
  var _h = _vm.$createElement
4467
4467
  var _c = _vm._self._c || _h
@@ -4794,11 +4794,11 @@ var mainvue_type_template_id_31eae2e0_render = function () {
4794
4794
  1
4795
4795
  )
4796
4796
  }
4797
- var mainvue_type_template_id_31eae2e0_staticRenderFns = []
4798
- mainvue_type_template_id_31eae2e0_render._withStripped = true
4797
+ var mainvue_type_template_id_02ca227b_staticRenderFns = []
4798
+ mainvue_type_template_id_02ca227b_render._withStripped = true
4799
4799
 
4800
4800
 
4801
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=31eae2e0&
4801
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=02ca227b&
4802
4802
 
4803
4803
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=template&id=796433ee&
4804
4804
  var childrenvue_type_template_id_796433ee_render = function () {
@@ -7018,7 +7018,7 @@ var sizer_component = normalizeComponent(
7018
7018
 
7019
7019
  /* harmony default export */ var sizer = (sizer_component.exports);
7020
7020
  // EXTERNAL MODULE: external "vue"
7021
- var external_vue_ = __webpack_require__(10);
7021
+ var external_vue_ = __webpack_require__(11);
7022
7022
  var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
7023
7023
 
7024
7024
  // CONCATENATED MODULE: ./src/utils/bus.js
@@ -7432,7 +7432,8 @@ var mainvue_type_script_lang_js_components;
7432
7432
  immediate: {
7433
7433
  type: Boolean,
7434
7434
  default: true
7435
- }
7435
+ },
7436
+ zoom: false
7436
7437
  },
7437
7438
  data: function data() {
7438
7439
  return {
@@ -7526,6 +7527,13 @@ var mainvue_type_script_lang_js_components;
7526
7527
  }
7527
7528
  },
7528
7529
  watch: {
7530
+ zoom: {
7531
+ handler: function handler(val) {
7532
+ if (this.tableHeight != 'auto' && this.display) {
7533
+ this.resetHeight();
7534
+ }
7535
+ }
7536
+ },
7529
7537
  checked: function checked(newVal) {
7530
7538
  this.checkSelect(newVal);
7531
7539
  },
@@ -8215,8 +8223,8 @@ var mainvue_type_script_lang_js_components;
8215
8223
 
8216
8224
  var data_table_src_main_component = normalizeComponent(
8217
8225
  packages_data_table_src_mainvue_type_script_lang_js_,
8218
- mainvue_type_template_id_31eae2e0_render,
8219
- mainvue_type_template_id_31eae2e0_staticRenderFns,
8226
+ mainvue_type_template_id_02ca227b_render,
8227
+ mainvue_type_template_id_02ca227b_staticRenderFns,
8220
8228
  false,
8221
8229
  null,
8222
8230
  null,
@@ -10806,7 +10814,7 @@ mainvue_type_template_id_45639bca_render._withStripped = true
10806
10814
  // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=45639bca&
10807
10815
 
10808
10816
  // EXTERNAL MODULE: external "wujie-vue2"
10809
- var external_wujie_vue2_ = __webpack_require__(11);
10817
+ var external_wujie_vue2_ = __webpack_require__(12);
10810
10818
  var external_wujie_vue2_default = /*#__PURE__*/__webpack_require__.n(external_wujie_vue2_);
10811
10819
 
10812
10820
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=script&lang=js&
@@ -11625,8 +11633,8 @@ error_page_src_main.install = function (Vue) {
11625
11633
  };
11626
11634
 
11627
11635
  /* harmony default export */ var error_page = (error_page_src_main);
11628
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=0d9a470b&
11629
- var mainvue_type_template_id_0d9a470b_render = function () {
11636
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=38ee15e0&
11637
+ var mainvue_type_template_id_38ee15e0_render = function () {
11630
11638
  var _vm = this
11631
11639
  var _h = _vm.$createElement
11632
11640
  var _c = _vm._self._c || _h
@@ -12988,6 +12996,59 @@ var mainvue_type_template_id_0d9a470b_render = function () {
12988
12996
  )
12989
12997
  ),
12990
12998
  ]
12999
+ : item.type === "icon"
13000
+ ? _c(
13001
+ "es-icon",
13002
+ _vm._b(
13003
+ {
13004
+ attrs: {
13005
+ plain:
13006
+ item.plain ||
13007
+ item.name ===
13008
+ undefined,
13009
+ readonly:
13010
+ _vm.readonly
13011
+ ? _vm.readonly
13012
+ : item.readonly,
13013
+ },
13014
+ on: {
13015
+ change: function (
13016
+ val
13017
+ ) {
13018
+ _vm.handleChange(
13019
+ item,
13020
+ val
13021
+ )
13022
+ },
13023
+ },
13024
+ model: {
13025
+ value:
13026
+ _vm.models[
13027
+ item.name
13028
+ ],
13029
+ callback: function (
13030
+ $$v
13031
+ ) {
13032
+ _vm.$set(
13033
+ _vm.models,
13034
+ item.name,
13035
+ $$v
13036
+ )
13037
+ },
13038
+ expression:
13039
+ "models[item.name]",
13040
+ },
13041
+ },
13042
+ "es-icon",
13043
+ _vm.handleExclAttribute(
13044
+ {
13045
+ data: item,
13046
+ attrs: ["value"],
13047
+ }
13048
+ ),
13049
+ false
13050
+ )
13051
+ )
12991
13052
  : _c(
12992
13053
  "es-input",
12993
13054
  _vm._b(
@@ -13483,6 +13544,69 @@ var mainvue_type_template_id_0d9a470b_render = function () {
13483
13544
  )
13484
13545
  : _vm._e(),
13485
13546
  ]
13547
+ : inline.type ===
13548
+ "icon"
13549
+ ? _c(
13550
+ "es-icon",
13551
+ _vm._b(
13552
+ {
13553
+ attrs:
13554
+ {
13555
+ plain:
13556
+ inline.plain ||
13557
+ inline.name ===
13558
+ undefined,
13559
+ readonly:
13560
+ _vm.readonly
13561
+ ? _vm.readonly
13562
+ : inline.readonly,
13563
+ },
13564
+ on: {
13565
+ change:
13566
+ function (
13567
+ val
13568
+ ) {
13569
+ _vm.handleChange(
13570
+ inline,
13571
+ val
13572
+ )
13573
+ },
13574
+ },
13575
+ model:
13576
+ {
13577
+ value:
13578
+ _vm
13579
+ .models[
13580
+ inline
13581
+ .name
13582
+ ],
13583
+ callback:
13584
+ function (
13585
+ $$v
13586
+ ) {
13587
+ _vm.$set(
13588
+ _vm.models,
13589
+ inline.name,
13590
+ $$v
13591
+ )
13592
+ },
13593
+ expression:
13594
+ "models[inline.name]",
13595
+ },
13596
+ },
13597
+ "es-icon",
13598
+ _vm.handleExclAttribute(
13599
+ {
13600
+ data: inline,
13601
+ attrs:
13602
+ [
13603
+ "value",
13604
+ ],
13605
+ }
13606
+ ),
13607
+ false
13608
+ )
13609
+ )
13486
13610
  : _c(
13487
13611
  "es-input",
13488
13612
  _vm._b(
@@ -14029,6 +14153,76 @@ var mainvue_type_template_id_0d9a470b_render = function () {
14029
14153
  )
14030
14154
  : _vm._e(),
14031
14155
  ]
14156
+ : item.inline
14157
+ .type ===
14158
+ "icon"
14159
+ ? _c(
14160
+ "es-icon",
14161
+ _vm._b(
14162
+ {
14163
+ attrs: {
14164
+ plain:
14165
+ item
14166
+ .inline
14167
+ .plain ||
14168
+ item
14169
+ .inline
14170
+ .name ===
14171
+ undefined,
14172
+ readonly:
14173
+ _vm.readonly
14174
+ ? _vm.readonly
14175
+ : item
14176
+ .inline
14177
+ .readonly,
14178
+ },
14179
+ on: {
14180
+ change:
14181
+ function (
14182
+ val
14183
+ ) {
14184
+ _vm.handleChange(
14185
+ item.inline,
14186
+ val
14187
+ )
14188
+ },
14189
+ },
14190
+ model: {
14191
+ value:
14192
+ _vm
14193
+ .models[
14194
+ item
14195
+ .inline
14196
+ .name
14197
+ ],
14198
+ callback:
14199
+ function (
14200
+ $$v
14201
+ ) {
14202
+ _vm.$set(
14203
+ _vm.models,
14204
+ item
14205
+ .inline
14206
+ .name,
14207
+ $$v
14208
+ )
14209
+ },
14210
+ expression:
14211
+ "models[item.inline.name]",
14212
+ },
14213
+ },
14214
+ "es-icon",
14215
+ _vm.handleExclAttribute(
14216
+ {
14217
+ data: item.inline,
14218
+ attrs: [
14219
+ "value",
14220
+ ],
14221
+ }
14222
+ ),
14223
+ false
14224
+ )
14225
+ )
14032
14226
  : _c(
14033
14227
  "es-input",
14034
14228
  _vm._b(
@@ -14977,6 +15171,52 @@ var mainvue_type_template_id_0d9a470b_render = function () {
14977
15171
  )
14978
15172
  ),
14979
15173
  ]
15174
+ : item.type === "icon"
15175
+ ? _c(
15176
+ "es-icon",
15177
+ _vm._b(
15178
+ {
15179
+ attrs: {
15180
+ plain:
15181
+ item.plain ||
15182
+ item.name ===
15183
+ undefined,
15184
+ readonly: _vm.readonly
15185
+ ? _vm.readonly
15186
+ : item.readonly,
15187
+ },
15188
+ on: {
15189
+ change: function (val) {
15190
+ _vm.handleChange(
15191
+ item,
15192
+ val
15193
+ )
15194
+ },
15195
+ },
15196
+ model: {
15197
+ value:
15198
+ _vm.models[item.name],
15199
+ callback: function (
15200
+ $$v
15201
+ ) {
15202
+ _vm.$set(
15203
+ _vm.models,
15204
+ item.name,
15205
+ $$v
15206
+ )
15207
+ },
15208
+ expression:
15209
+ "models[item.name]",
15210
+ },
15211
+ },
15212
+ "es-icon",
15213
+ _vm.handleExclAttribute({
15214
+ data: item,
15215
+ attrs: ["value"],
15216
+ }),
15217
+ false
15218
+ )
15219
+ )
14980
15220
  : _c(
14981
15221
  "es-input",
14982
15222
  _vm._b(
@@ -15452,6 +15692,67 @@ var mainvue_type_template_id_0d9a470b_render = function () {
15452
15692
  )
15453
15693
  : _vm._e(),
15454
15694
  ]
15695
+ : inline.type ===
15696
+ "icon"
15697
+ ? _c(
15698
+ "es-icon",
15699
+ _vm._b(
15700
+ {
15701
+ attrs: {
15702
+ plain:
15703
+ inline.plain ||
15704
+ inline.name ===
15705
+ undefined,
15706
+ readonly:
15707
+ _vm.readonly
15708
+ ? _vm.readonly
15709
+ : inline.readonly,
15710
+ },
15711
+ on: {
15712
+ change:
15713
+ function (
15714
+ val
15715
+ ) {
15716
+ _vm.handleChange(
15717
+ inline,
15718
+ val
15719
+ )
15720
+ },
15721
+ },
15722
+ model: {
15723
+ value:
15724
+ _vm
15725
+ .models[
15726
+ inline
15727
+ .name
15728
+ ],
15729
+ callback:
15730
+ function (
15731
+ $$v
15732
+ ) {
15733
+ _vm.$set(
15734
+ _vm.models,
15735
+ inline.name,
15736
+ $$v
15737
+ )
15738
+ },
15739
+ expression:
15740
+ "models[inline.name]",
15741
+ },
15742
+ },
15743
+ "es-icon",
15744
+ _vm.handleExclAttribute(
15745
+ {
15746
+ data: inline,
15747
+ attrs:
15748
+ [
15749
+ "value",
15750
+ ],
15751
+ }
15752
+ ),
15753
+ false
15754
+ )
15755
+ )
15455
15756
  : _c(
15456
15757
  "es-input",
15457
15758
  _vm._b(
@@ -15933,6 +16234,75 @@ var mainvue_type_template_id_0d9a470b_render = function () {
15933
16234
  false
15934
16235
  )
15935
16236
  )
16237
+ : item.inline.type ===
16238
+ "icon"
16239
+ ? _c(
16240
+ "es-icon",
16241
+ _vm._b(
16242
+ {
16243
+ attrs: {
16244
+ plain:
16245
+ item
16246
+ .inline
16247
+ .plain ||
16248
+ item
16249
+ .inline
16250
+ .name ===
16251
+ undefined,
16252
+ readonly:
16253
+ _vm.readonly
16254
+ ? _vm.readonly
16255
+ : item
16256
+ .inline
16257
+ .readonly,
16258
+ },
16259
+ on: {
16260
+ change:
16261
+ function (
16262
+ val
16263
+ ) {
16264
+ _vm.handleChange(
16265
+ item.inline,
16266
+ val
16267
+ )
16268
+ },
16269
+ },
16270
+ model: {
16271
+ value:
16272
+ _vm
16273
+ .models[
16274
+ item
16275
+ .inline
16276
+ .name
16277
+ ],
16278
+ callback:
16279
+ function (
16280
+ $$v
16281
+ ) {
16282
+ _vm.$set(
16283
+ _vm.models,
16284
+ item
16285
+ .inline
16286
+ .name,
16287
+ $$v
16288
+ )
16289
+ },
16290
+ expression:
16291
+ "models[item.inline.name]",
16292
+ },
16293
+ },
16294
+ "es-icon",
16295
+ _vm.handleExclAttribute(
16296
+ {
16297
+ data: item.inline,
16298
+ attrs: [
16299
+ "value",
16300
+ ],
16301
+ }
16302
+ ),
16303
+ false
16304
+ )
16305
+ )
15936
16306
  : _c(
15937
16307
  "es-input",
15938
16308
  _vm._b(
@@ -17200,6 +17570,52 @@ var mainvue_type_template_id_0d9a470b_render = function () {
17200
17570
  )
17201
17571
  ),
17202
17572
  ]
17573
+ : item.type === "icon"
17574
+ ? _c(
17575
+ "es-icon",
17576
+ _vm._b(
17577
+ {
17578
+ attrs: {
17579
+ plain:
17580
+ item.plain ||
17581
+ item.name ===
17582
+ undefined,
17583
+ readonly: _vm.readonly
17584
+ ? _vm.readonly
17585
+ : item.readonly,
17586
+ },
17587
+ on: {
17588
+ change: function (val) {
17589
+ _vm.handleChange(
17590
+ item,
17591
+ val
17592
+ )
17593
+ },
17594
+ },
17595
+ model: {
17596
+ value:
17597
+ _vm.models[item.name],
17598
+ callback: function (
17599
+ $$v
17600
+ ) {
17601
+ _vm.$set(
17602
+ _vm.models,
17603
+ item.name,
17604
+ $$v
17605
+ )
17606
+ },
17607
+ expression:
17608
+ "models[item.name]",
17609
+ },
17610
+ },
17611
+ "es-icon",
17612
+ _vm.handleExclAttribute({
17613
+ data: item,
17614
+ attrs: ["value"],
17615
+ }),
17616
+ false
17617
+ )
17618
+ )
17203
17619
  : _c(
17204
17620
  "es-input",
17205
17621
  _vm._b(
@@ -17671,6 +18087,67 @@ var mainvue_type_template_id_0d9a470b_render = function () {
17671
18087
  )
17672
18088
  : _vm._e(),
17673
18089
  ]
18090
+ : inline.type ===
18091
+ "icon"
18092
+ ? _c(
18093
+ "es-icon",
18094
+ _vm._b(
18095
+ {
18096
+ attrs: {
18097
+ plain:
18098
+ inline.plain ||
18099
+ inline.name ===
18100
+ undefined,
18101
+ readonly:
18102
+ _vm.readonly
18103
+ ? _vm.readonly
18104
+ : inline.readonly,
18105
+ },
18106
+ on: {
18107
+ change:
18108
+ function (
18109
+ val
18110
+ ) {
18111
+ _vm.handleChange(
18112
+ inline,
18113
+ val
18114
+ )
18115
+ },
18116
+ },
18117
+ model: {
18118
+ value:
18119
+ _vm
18120
+ .models[
18121
+ inline
18122
+ .name
18123
+ ],
18124
+ callback:
18125
+ function (
18126
+ $$v
18127
+ ) {
18128
+ _vm.$set(
18129
+ _vm.models,
18130
+ inline.name,
18131
+ $$v
18132
+ )
18133
+ },
18134
+ expression:
18135
+ "models[inline.name]",
18136
+ },
18137
+ },
18138
+ "es-icon",
18139
+ _vm.handleExclAttribute(
18140
+ {
18141
+ data: inline,
18142
+ attrs:
18143
+ [
18144
+ "value",
18145
+ ],
18146
+ }
18147
+ ),
18148
+ false
18149
+ )
18150
+ )
17674
18151
  : _c(
17675
18152
  "es-input",
17676
18153
  _vm._b(
@@ -18152,6 +18629,75 @@ var mainvue_type_template_id_0d9a470b_render = function () {
18152
18629
  false
18153
18630
  )
18154
18631
  )
18632
+ : item.inline.type ===
18633
+ "icon"
18634
+ ? _c(
18635
+ "es-icon",
18636
+ _vm._b(
18637
+ {
18638
+ attrs: {
18639
+ plain:
18640
+ item
18641
+ .inline
18642
+ .plain ||
18643
+ item
18644
+ .inline
18645
+ .name ===
18646
+ undefined,
18647
+ readonly:
18648
+ _vm.readonly
18649
+ ? _vm.readonly
18650
+ : item
18651
+ .inline
18652
+ .readonly,
18653
+ },
18654
+ on: {
18655
+ change:
18656
+ function (
18657
+ val
18658
+ ) {
18659
+ _vm.handleChange(
18660
+ item.inline,
18661
+ val
18662
+ )
18663
+ },
18664
+ },
18665
+ model: {
18666
+ value:
18667
+ _vm
18668
+ .models[
18669
+ item
18670
+ .inline
18671
+ .name
18672
+ ],
18673
+ callback:
18674
+ function (
18675
+ $$v
18676
+ ) {
18677
+ _vm.$set(
18678
+ _vm.models,
18679
+ item
18680
+ .inline
18681
+ .name,
18682
+ $$v
18683
+ )
18684
+ },
18685
+ expression:
18686
+ "models[item.inline.name]",
18687
+ },
18688
+ },
18689
+ "es-icon",
18690
+ _vm.handleExclAttribute(
18691
+ {
18692
+ data: item.inline,
18693
+ attrs: [
18694
+ "value",
18695
+ ],
18696
+ }
18697
+ ),
18698
+ false
18699
+ )
18700
+ )
18155
18701
  : _c(
18156
18702
  "es-input",
18157
18703
  _vm._b(
@@ -19036,6 +19582,49 @@ var mainvue_type_template_id_0d9a470b_render = function () {
19036
19582
  )
19037
19583
  ),
19038
19584
  ]
19585
+ : item.type === "icon"
19586
+ ? _c(
19587
+ "es-icon",
19588
+ _vm._b(
19589
+ {
19590
+ attrs: {
19591
+ plain:
19592
+ item.plain ||
19593
+ item.name === undefined,
19594
+ readonly: _vm.readonly
19595
+ ? _vm.readonly
19596
+ : item.readonly,
19597
+ },
19598
+ on: {
19599
+ change: function (val) {
19600
+ _vm.handleChange(
19601
+ item,
19602
+ val
19603
+ )
19604
+ },
19605
+ },
19606
+ model: {
19607
+ value:
19608
+ _vm.models[item.name],
19609
+ callback: function ($$v) {
19610
+ _vm.$set(
19611
+ _vm.models,
19612
+ item.name,
19613
+ $$v
19614
+ )
19615
+ },
19616
+ expression:
19617
+ "models[item.name]",
19618
+ },
19619
+ },
19620
+ "es-icon",
19621
+ _vm.handleExclAttribute({
19622
+ data: item,
19623
+ attrs: ["value"],
19624
+ }),
19625
+ false
19626
+ )
19627
+ )
19039
19628
  : _c(
19040
19629
  "es-input",
19041
19630
  _vm._b(
@@ -19494,6 +20083,66 @@ var mainvue_type_template_id_0d9a470b_render = function () {
19494
20083
  )
19495
20084
  : _vm._e(),
19496
20085
  ]
20086
+ : inline.type ===
20087
+ "icon"
20088
+ ? _c(
20089
+ "es-icon",
20090
+ _vm._b(
20091
+ {
20092
+ attrs: {
20093
+ plain:
20094
+ inline.plain ||
20095
+ inline.name ===
20096
+ undefined,
20097
+ readonly:
20098
+ _vm.readonly
20099
+ ? _vm.readonly
20100
+ : inline.readonly,
20101
+ },
20102
+ on: {
20103
+ change:
20104
+ function (
20105
+ val
20106
+ ) {
20107
+ _vm.handleChange(
20108
+ inline,
20109
+ val
20110
+ )
20111
+ },
20112
+ },
20113
+ model: {
20114
+ value:
20115
+ _vm
20116
+ .models[
20117
+ inline
20118
+ .name
20119
+ ],
20120
+ callback:
20121
+ function (
20122
+ $$v
20123
+ ) {
20124
+ _vm.$set(
20125
+ _vm.models,
20126
+ inline.name,
20127
+ $$v
20128
+ )
20129
+ },
20130
+ expression:
20131
+ "models[inline.name]",
20132
+ },
20133
+ },
20134
+ "es-icon",
20135
+ _vm.handleExclAttribute(
20136
+ {
20137
+ data: inline,
20138
+ attrs: [
20139
+ "value",
20140
+ ],
20141
+ }
20142
+ ),
20143
+ false
20144
+ )
20145
+ )
19497
20146
  : _c(
19498
20147
  "es-input",
19499
20148
  _vm._b(
@@ -19956,6 +20605,71 @@ var mainvue_type_template_id_0d9a470b_render = function () {
19956
20605
  false
19957
20606
  )
19958
20607
  )
20608
+ : item.inline.type ===
20609
+ "icon"
20610
+ ? _c(
20611
+ "es-icon",
20612
+ _vm._b(
20613
+ {
20614
+ attrs: {
20615
+ plain:
20616
+ item.inline
20617
+ .plain ||
20618
+ item.inline
20619
+ .name ===
20620
+ undefined,
20621
+ readonly:
20622
+ _vm.readonly
20623
+ ? _vm.readonly
20624
+ : item
20625
+ .inline
20626
+ .readonly,
20627
+ },
20628
+ on: {
20629
+ change:
20630
+ function (
20631
+ val
20632
+ ) {
20633
+ _vm.handleChange(
20634
+ item.inline,
20635
+ val
20636
+ )
20637
+ },
20638
+ },
20639
+ model: {
20640
+ value:
20641
+ _vm.models[
20642
+ item.inline
20643
+ .name
20644
+ ],
20645
+ callback:
20646
+ function (
20647
+ $$v
20648
+ ) {
20649
+ _vm.$set(
20650
+ _vm.models,
20651
+ item
20652
+ .inline
20653
+ .name,
20654
+ $$v
20655
+ )
20656
+ },
20657
+ expression:
20658
+ "models[item.inline.name]",
20659
+ },
20660
+ },
20661
+ "es-icon",
20662
+ _vm.handleExclAttribute(
20663
+ {
20664
+ data: item.inline,
20665
+ attrs: [
20666
+ "value",
20667
+ ],
20668
+ }
20669
+ ),
20670
+ false
20671
+ )
20672
+ )
19959
20673
  : _c(
19960
20674
  "es-input",
19961
20675
  _vm._b(
@@ -20170,11 +20884,11 @@ var mainvue_type_template_id_0d9a470b_render = function () {
20170
20884
  2
20171
20885
  )
20172
20886
  }
20173
- var mainvue_type_template_id_0d9a470b_staticRenderFns = []
20174
- mainvue_type_template_id_0d9a470b_render._withStripped = true
20887
+ var mainvue_type_template_id_38ee15e0_staticRenderFns = []
20888
+ mainvue_type_template_id_38ee15e0_render._withStripped = true
20175
20889
 
20176
20890
 
20177
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=0d9a470b&
20891
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=38ee15e0&
20178
20892
 
20179
20893
  // CONCATENATED MODULE: ./src/utils/rules.js
20180
20894
  // 手机号
@@ -23503,6 +24217,215 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
23503
24217
  //
23504
24218
  //
23505
24219
  //
24220
+ //
24221
+ //
24222
+ //
24223
+ //
24224
+ //
24225
+ //
24226
+ //
24227
+ //
24228
+ //
24229
+ //
24230
+ //
24231
+ //
24232
+ //
24233
+ //
24234
+ //
24235
+ //
24236
+ //
24237
+ //
24238
+ //
24239
+ //
24240
+ //
24241
+ //
24242
+ //
24243
+ //
24244
+ //
24245
+ //
24246
+ //
24247
+ //
24248
+ //
24249
+ //
24250
+ //
24251
+ //
24252
+ //
24253
+ //
24254
+ //
24255
+ //
24256
+ //
24257
+ //
24258
+ //
24259
+ //
24260
+ //
24261
+ //
24262
+ //
24263
+ //
24264
+ //
24265
+ //
24266
+ //
24267
+ //
24268
+ //
24269
+ //
24270
+ //
24271
+ //
24272
+ //
24273
+ //
24274
+ //
24275
+ //
24276
+ //
24277
+ //
24278
+ //
24279
+ //
24280
+ //
24281
+ //
24282
+ //
24283
+ //
24284
+ //
24285
+ //
24286
+ //
24287
+ //
24288
+ //
24289
+ //
24290
+ //
24291
+ //
24292
+ //
24293
+ //
24294
+ //
24295
+ //
24296
+ //
24297
+ //
24298
+ //
24299
+ //
24300
+ //
24301
+ //
24302
+ //
24303
+ //
24304
+ //
24305
+ //
24306
+ //
24307
+ //
24308
+ //
24309
+ //
24310
+ //
24311
+ //
24312
+ //
24313
+ //
24314
+ //
24315
+ //
24316
+ //
24317
+ //
24318
+ //
24319
+ //
24320
+ //
24321
+ //
24322
+ //
24323
+ //
24324
+ //
24325
+ //
24326
+ //
24327
+ //
24328
+ //
24329
+ //
24330
+ //
24331
+ //
24332
+ //
24333
+ //
24334
+ //
24335
+ //
24336
+ //
24337
+ //
24338
+ //
24339
+ //
24340
+ //
24341
+ //
24342
+ //
24343
+ //
24344
+ //
24345
+ //
24346
+ //
24347
+ //
24348
+ //
24349
+ //
24350
+ //
24351
+ //
24352
+ //
24353
+ //
24354
+ //
24355
+ //
24356
+ //
24357
+ //
24358
+ //
24359
+ //
24360
+ //
24361
+ //
24362
+ //
24363
+ //
24364
+ //
24365
+ //
24366
+ //
24367
+ //
24368
+ //
24369
+ //
24370
+ //
24371
+ //
24372
+ //
24373
+ //
24374
+ //
24375
+ //
24376
+ //
24377
+ //
24378
+ //
24379
+ //
24380
+ //
24381
+ //
24382
+ //
24383
+ //
24384
+ //
24385
+ //
24386
+ //
24387
+ //
24388
+ //
24389
+ //
24390
+ //
24391
+ //
24392
+ //
24393
+ //
24394
+ //
24395
+ //
24396
+ //
24397
+ //
24398
+ //
24399
+ //
24400
+ //
24401
+ //
24402
+ //
24403
+ //
24404
+ //
24405
+ //
24406
+ //
24407
+ //
24408
+ //
24409
+ //
24410
+ //
24411
+ //
24412
+ //
24413
+ //
24414
+ //
24415
+ //
24416
+ //
24417
+ //
24418
+ //
24419
+ //
24420
+ //
24421
+ //
24422
+ //
24423
+ //
24424
+ //
24425
+ //
24426
+ //
24427
+ //
24428
+ //
23506
24429
 
23507
24430
 
23508
24431
 
@@ -23690,6 +24613,7 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
23690
24613
  if (this.model[typeof this.autoId === 'string' ? this.autoId : 'id']) {
23691
24614
  this.$emit('update:businessId', this.model[typeof this.autoId === 'string' ? this.autoId : 'id']);
23692
24615
  } else {
24616
+ this.$set(this.model, typeof this.autoId === 'string' ? this.autoId : 'id', this.uuid);
23693
24617
  this.$emit('update:businessId', this.uuid);
23694
24618
  this.$emit('getId', this.uuid);
23695
24619
  }
@@ -24677,8 +25601,8 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
24677
25601
 
24678
25602
  var form_src_main_component = normalizeComponent(
24679
25603
  packages_form_src_mainvue_type_script_lang_js_,
24680
- mainvue_type_template_id_0d9a470b_render,
24681
- mainvue_type_template_id_0d9a470b_staticRenderFns,
25604
+ mainvue_type_template_id_38ee15e0_render,
25605
+ mainvue_type_template_id_38ee15e0_staticRenderFns,
24682
25606
  false,
24683
25607
  null,
24684
25608
  null,
@@ -24695,8 +25619,8 @@ form_src_main.install = function (Vue) {
24695
25619
  };
24696
25620
 
24697
25621
  /* harmony default export */ var packages_form = (form_src_main);
24698
- // 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=1cd64e1e&
24699
- var mainvue_type_template_id_1cd64e1e_render = function () {
25622
+ // 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=36af21df&
25623
+ var mainvue_type_template_id_36af21df_render = function () {
24700
25624
  var _vm = this
24701
25625
  var _h = _vm.$createElement
24702
25626
  var _c = _vm._self._c || _h
@@ -26015,11 +26939,11 @@ var mainvue_type_template_id_1cd64e1e_render = function () {
26015
26939
  1
26016
26940
  )
26017
26941
  }
26018
- var mainvue_type_template_id_1cd64e1e_staticRenderFns = []
26019
- mainvue_type_template_id_1cd64e1e_render._withStripped = true
26942
+ var mainvue_type_template_id_36af21df_staticRenderFns = []
26943
+ mainvue_type_template_id_36af21df_render._withStripped = true
26020
26944
 
26021
26945
 
26022
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=1cd64e1e&
26946
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=36af21df&
26023
26947
 
26024
26948
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=7caa8c4c&
26025
26949
  var CommonOpinionsvue_type_template_id_7caa8c4c_render = function () {
@@ -26880,7 +27804,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
26880
27804
  }
26881
27805
  this.loading = utils_util["a" /* default */].loading(this.$loading, '提交中...');
26882
27806
  utils_util["a" /* default */].ajax({
26883
- url: data.id ? api["Lb" /* updateCommonOpinion */] : api["fb" /* saveCommonOpinion */],
27807
+ url: data.id ? api["Kb" /* updateCommonOpinion */] : api["fb" /* saveCommonOpinion */],
26884
27808
  data: info,
26885
27809
  header: { 'Content-Type': 'multipart/form-data' },
26886
27810
  method: 'post'
@@ -29563,7 +30487,7 @@ var processFormvue_type_script_lang_js_components;
29563
30487
  businessId: this.businessId
29564
30488
  };
29565
30489
  // 获取节点
29566
- utils_util["a" /* default */].ajax({ url: api["yb" /* toStartFlow */], params: params }).then(function (res) {
30490
+ utils_util["a" /* default */].ajax({ url: api["xb" /* toStartFlow */], params: params }).then(function (res) {
29567
30491
  //pc接口返回数据处理
29568
30492
  var status = res.status,
29569
30493
  message = res.message,
@@ -30218,7 +31142,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
30218
31142
 
30219
31143
  this.loading = true;
30220
31144
  utils_util["a" /* default */].ajax({
30221
- url: api["xb" /* toSendMsg */],
31145
+ url: api["wb" /* toSendMsg */],
30222
31146
  params: { pendingId: this.$attrs.pendingId }
30223
31147
  }).then(function (res) {
30224
31148
  var status = res.status,
@@ -31033,7 +31957,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
31033
31957
  userId: utils_util["a" /* default */].getStorage('userId'),
31034
31958
  nextNodeId: _this2.nextNode.nextNodeId
31035
31959
  };
31036
- utils_util["a" /* default */].ajax({ url: api["ob" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
31960
+ utils_util["a" /* default */].ajax({ url: api["nb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
31037
31961
  var status = res.status,
31038
31962
  message = res.message;
31039
31963
 
@@ -31088,7 +32012,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
31088
32012
  isSinglePage: false,
31089
32013
  opinion: this.option
31090
32014
  };
31091
- utils_util["a" /* default */].ajax({ url: api["Bb" /* toTaskRejectHtml */], params: params }).then(function (res) {
32015
+ utils_util["a" /* default */].ajax({ url: api["Ab" /* toTaskRejectHtml */], params: params }).then(function (res) {
31092
32016
  var status = res.status,
31093
32017
  message = res.message,
31094
32018
  _res$data = res.data,
@@ -31151,8 +32075,8 @@ var processReject_component = normalizeComponent(
31151
32075
  )
31152
32076
 
31153
32077
  /* harmony default export */ var processReject = (processReject_component.exports);
31154
- // 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=78b2ca32&
31155
- var startTaskReadvue_type_template_id_78b2ca32_render = function () {
32078
+ // 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=01cc2ac3&
32079
+ var startTaskReadvue_type_template_id_01cc2ac3_render = function () {
31156
32080
  var _vm = this
31157
32081
  var _h = _vm.$createElement
31158
32082
  var _c = _vm._self._c || _h
@@ -31527,11 +32451,11 @@ var startTaskReadvue_type_template_id_78b2ca32_render = function () {
31527
32451
  1
31528
32452
  )
31529
32453
  }
31530
- var startTaskReadvue_type_template_id_78b2ca32_staticRenderFns = []
31531
- startTaskReadvue_type_template_id_78b2ca32_render._withStripped = true
32454
+ var startTaskReadvue_type_template_id_01cc2ac3_staticRenderFns = []
32455
+ startTaskReadvue_type_template_id_01cc2ac3_render._withStripped = true
31532
32456
 
31533
32457
 
31534
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=78b2ca32&
32458
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=01cc2ac3&
31535
32459
 
31536
32460
  // 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&
31537
32461
  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; };
@@ -31760,7 +32684,7 @@ var startTaskReadvue_type_script_lang_js_components;
31760
32684
  taskExamine = this.taskExamine;
31761
32685
 
31762
32686
  var params = {
31763
- url: api["Fb" /* toTaskTransferIndex */],
32687
+ url: api["Eb" /* toTaskTransferIndex */],
31764
32688
  params: {
31765
32689
  opinion: opinion,
31766
32690
  pendingId: pendingId,
@@ -31885,7 +32809,7 @@ var startTaskReadvue_type_script_lang_js_components;
31885
32809
  var _this3 = this;
31886
32810
 
31887
32811
  var params = {
31888
- url: api["zb" /* toStartTaskRead */],
32812
+ url: api["yb" /* toStartTaskRead */],
31889
32813
  params: { pendingId: this.pendingId, taskAction: this.type }
31890
32814
  };
31891
32815
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -31955,7 +32879,7 @@ var startTaskReadvue_type_script_lang_js_components;
31955
32879
  multiple = this.multiple;
31956
32880
 
31957
32881
  var params = {
31958
- url: api["sb" /* taskTransfer */],
32882
+ url: api["rb" /* taskTransfer */],
31959
32883
  data: {
31960
32884
  choiceDeptId: choiceDeptId,
31961
32885
  choiceOrgId: choiceOrgId,
@@ -32027,7 +32951,8 @@ var startTaskReadvue_type_script_lang_js_components;
32027
32951
  opinion: _this7.option, // 审批意见
32028
32952
  userId: utils_util["a" /* default */].getStorage('userId'),
32029
32953
  nextReadUserId: _this7.mixList.join('|'),
32030
- noticeType: noticeType
32954
+ noticeType: noticeType,
32955
+ taskAction: _this7.type
32031
32956
  // nextNodeId: this.form.nextNodeId
32032
32957
  });
32033
32958
  delete params.nextUser;
@@ -32041,8 +32966,9 @@ var startTaskReadvue_type_script_lang_js_components;
32041
32966
  fyeh != 'true' && delete params.isInHistory;
32042
32967
  !download && delete params.isDownload;
32043
32968
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
32969
+ console.log(params, 'aaa');
32044
32970
  utils_util["a" /* default */].ajax({
32045
- url: api["nb" /* taskReadHtml */],
32971
+ url: api["mb" /* taskReadHtml */],
32046
32972
  params: { taskAction: _this7.type },
32047
32973
  headers: { Accept: 'application/json,text/plain' },
32048
32974
  method: 'post',
@@ -32117,8 +33043,8 @@ var startTaskReadvue_type_script_lang_js_components;
32117
33043
 
32118
33044
  var startTaskRead_component = normalizeComponent(
32119
33045
  src_startTaskReadvue_type_script_lang_js_,
32120
- startTaskReadvue_type_template_id_78b2ca32_render,
32121
- startTaskReadvue_type_template_id_78b2ca32_staticRenderFns,
33046
+ startTaskReadvue_type_template_id_01cc2ac3_render,
33047
+ startTaskReadvue_type_template_id_01cc2ac3_staticRenderFns,
32122
33048
  false,
32123
33049
  null,
32124
33050
  null,
@@ -32127,8 +33053,8 @@ var startTaskRead_component = normalizeComponent(
32127
33053
  )
32128
33054
 
32129
33055
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
32130
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=141fdde2&
32131
- var taskUnionExaminevue_type_template_id_141fdde2_render = function () {
33056
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=5c89b454&
33057
+ var taskUnionExaminevue_type_template_id_5c89b454_render = function () {
32132
33058
  var _vm = this
32133
33059
  var _h = _vm.$createElement
32134
33060
  var _c = _vm._self._c || _h
@@ -32343,11 +33269,11 @@ var taskUnionExaminevue_type_template_id_141fdde2_render = function () {
32343
33269
  1
32344
33270
  )
32345
33271
  }
32346
- var taskUnionExaminevue_type_template_id_141fdde2_staticRenderFns = []
32347
- taskUnionExaminevue_type_template_id_141fdde2_render._withStripped = true
33272
+ var taskUnionExaminevue_type_template_id_5c89b454_staticRenderFns = []
33273
+ taskUnionExaminevue_type_template_id_5c89b454_render._withStripped = true
32348
33274
 
32349
33275
 
32350
- // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=141fdde2&
33276
+ // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=5c89b454&
32351
33277
 
32352
33278
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=script&lang=js&
32353
33279
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -32534,9 +33460,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
32534
33460
  pendingId = this.pendingId;
32535
33461
 
32536
33462
  var params = {
32537
- url: api["pb" /* taskReview */],
33463
+ url: api["ob" /* taskReview */],
32538
33464
  data: {
32539
- nextUserId: nextOtherOrgObj,
33465
+ nextUserId: nextOtherOrgObj.join(','),
32540
33466
  notificationType: noticeType.join(','),
32541
33467
  notificationMsg: noticeInfo,
32542
33468
  opinion: opinion,
@@ -32570,7 +33496,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
32570
33496
  var _this2 = this;
32571
33497
 
32572
33498
  var params = {
32573
- url: api["Cb" /* toTaskReview */],
33499
+ url: api["Bb" /* toTaskReview */],
32574
33500
  params: { pendingId: this.pendingId }
32575
33501
  };
32576
33502
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -32605,7 +33531,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
32605
33531
  var _this3 = this;
32606
33532
 
32607
33533
  var params = {
32608
- url: this.type == 'takeAdvice' ? api["Eb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Db" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Hb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Ib" /* toTwoOfficesDispatch */] : api["Gb" /* toTaskUnionExamine */],
33534
+ url: this.type == 'takeAdvice' ? api["Db" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Cb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Gb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Hb" /* toTwoOfficesDispatch */] : api["Fb" /* toTaskUnionExamine */],
32609
33535
  params: { pendingId: this.pendingId },
32610
33536
  headers: { Accept: 'application/json,text/plain' }
32611
33537
  };
@@ -32699,12 +33625,12 @@ var taskUnionExaminevue_type_script_lang_js_components;
32699
33625
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
32700
33626
  // return this.$message.warning('暂未开放,敬请期待!');
32701
33627
  var param = {
32702
- url: this.type === 'startDraf' ? api["qb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["ub" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Kb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["rb" /* taskTakeAdvice */] : api["tb" /* taskUnionExamine */],
33628
+ url: this.type === 'startDraf' ? api["pb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["tb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Jb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["qb" /* taskTakeAdvice */] : api["sb" /* taskUnionExamine */],
32703
33629
  data: {
32704
33630
  opinion: opinion,
32705
33631
  pendingId: pendingId,
32706
- nextOtherOrgObj: nextOtherOrgObj,
32707
- nextCurrentOrgObj: nextCurrentOrgObj,
33632
+ nextOtherOrgObj: nextOtherOrgObj.join(','),
33633
+ nextCurrentOrgObj: nextCurrentOrgObj.join(','),
32708
33634
  notificationMsg: noticeInfo,
32709
33635
  notificationType: noticeType.join(','),
32710
33636
  choiceDeptId: choiceDeptId,
@@ -32827,8 +33753,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
32827
33753
 
32828
33754
  var taskUnionExamine_component = normalizeComponent(
32829
33755
  component_taskUnionExaminevue_type_script_lang_js_,
32830
- taskUnionExaminevue_type_template_id_141fdde2_render,
32831
- taskUnionExaminevue_type_template_id_141fdde2_staticRenderFns,
33756
+ taskUnionExaminevue_type_template_id_5c89b454_render,
33757
+ taskUnionExaminevue_type_template_id_5c89b454_staticRenderFns,
32832
33758
  false,
32833
33759
  null,
32834
33760
  null,
@@ -33433,6 +34359,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
33433
34359
  flowType: '',
33434
34360
  flowDisabled: false,
33435
34361
  activeNames: '',
34362
+ isEndUserTask: true,
33436
34363
  selectUserList: [],
33437
34364
  flowMultiple: true,
33438
34365
  isCustomUser: 0,
@@ -33707,7 +34634,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
33707
34634
  opinion: _this2.value
33708
34635
  };
33709
34636
  utils_util["a" /* default */].ajax({
33710
- url: api["nb" /* taskReadHtml */],
34637
+ url: api["mb" /* taskReadHtml */],
33711
34638
  params: { taskAction: 'complete' },
33712
34639
  headers: { Accept: 'application/json,text/plain' },
33713
34640
  method: 'post',
@@ -33737,7 +34664,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
33737
34664
 
33738
34665
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
33739
34666
  utils_util["a" /* default */].ajax({
33740
- url: api["Ab" /* toStartTaskReadIndex */],
34667
+ url: api["zb" /* toStartTaskReadIndex */],
33741
34668
  params: { pendingId: this.pendingId }
33742
34669
  }).then(function (res) {
33743
34670
  var status = res.status,
@@ -33869,7 +34796,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
33869
34796
  pendingId: this.pendingId
33870
34797
  };
33871
34798
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
33872
- utils_util["a" /* default */].ajax({ url: api["vb" /* tempSave */], params: params }).then(function (res) {
34799
+ utils_util["a" /* default */].ajax({ url: api["ub" /* tempSave */], params: params }).then(function (res) {
33873
34800
  var status = res.status,
33874
34801
  message = res.message;
33875
34802
 
@@ -34234,18 +35161,22 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34234
35161
  _this12.multiple ? _this12.nextNode.nextUserId = [] : _this12.nextNode.nextUserId = '';
34235
35162
  if (_this12.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
34236
35163
  data.nextUserList.map(function (item) {
34237
- _this12.nextNode.nextUserId.push(item.userId);
34238
- _this12.selectUserList.push({
34239
- showname: item.username,
34240
- showid: item.userId
34241
- });
35164
+ if (item.userId && item.username) {
35165
+ _this12.nextNode.nextUserId.push(item.userId);
35166
+ _this12.selectUserList.push({
35167
+ showname: item.username,
35168
+ showid: item.userId
35169
+ });
35170
+ }
34242
35171
  });
34243
35172
  }
34244
35173
  data.nextUserList.map(function (item) {
34245
- _this12.options.push({
34246
- showname: item.username,
34247
- showid: item.userId
34248
- });
35174
+ if (item.userId && item.username) {
35175
+ _this12.options.push({
35176
+ showname: item.username,
35177
+ showid: item.userId
35178
+ });
35179
+ }
34249
35180
  });
34250
35181
  if (data.nodeExtAttr.presetEdit != 0) {
34251
35182
  _this12.radioList = _this12.options;
@@ -34392,6 +35323,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34392
35323
  var status = res.status,
34393
35324
  message = res.message,
34394
35325
  _res$data2 = res.data,
35326
+ isEndUserTask = _res$data2.isEndUserTask,
34395
35327
  nextNodeList = _res$data2.nextNodeList,
34396
35328
  taskOperations = _res$data2.taskOperations,
34397
35329
  isCustomPreset = _res$data2.isCustomPreset,
@@ -34457,6 +35389,13 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34457
35389
  // this.nextNode.nextNodeId = item.taskNodeList[0].nodeId;
34458
35390
  // }
34459
35391
  }
35392
+ if (taskOperations.length == 1) {
35393
+ _this14.nodeInfos = [];
35394
+ _this14.nextNode.nextOperate = taskOperations[0].key;
35395
+ if (taskOperations[0].taskNodeList != null) {
35396
+ _this14.nodeInfos = taskOperations[0].taskNodeList;
35397
+ }
35398
+ }
34460
35399
  });
34461
35400
  }
34462
35401
  _this14.operationList = taskOperations;
@@ -34466,7 +35405,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34466
35405
  _this14.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
34467
35406
  _this14.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
34468
35407
  _this14.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
34469
- _this14.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
35408
+ // this.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
34470
35409
  _this14.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
34471
35410
  if (nodeInfoMap.nodeExtAttr.defaultNextNode) {
34472
35411
  var defaultNode = _this14.nodeInfos.filter(function (item) {
@@ -34480,10 +35419,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34480
35419
  } else if (_this14.nodeInfos.length > 0) {
34481
35420
  _this14.nextNode.nextNodeId = _this14.nodeInfos[0].nodeId;
34482
35421
  }
34483
- _this14.choiceOrgId = choiceOrgId;
34484
- _this14.choiceDeptId = choiceDeptId;
34485
- _this14.pOrgId = pOrgId;
34486
35422
  }
35423
+ _this14.choiceOrgId = choiceOrgId;
35424
+ _this14.choiceDeptId = choiceDeptId;
35425
+ _this14.pOrgId = pOrgId;
35426
+ _this14.isEndUserTask = isEndUserTask;
34487
35427
  if (JSON.stringify(taskExamine) != '{}' && taskExamine) {
34488
35428
  _this14.nodeInfo.nextNode = taskExamine.processDefinitionId;
34489
35429
  _this14.NodeName = taskExamine.nodeName;
@@ -34722,13 +35662,13 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34722
35662
 
34723
35663
  this.$refs['nextNode'].validate(function () {
34724
35664
  var _ref2 = flow_src_mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
34725
- var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params;
35665
+ var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo;
34726
35666
  return regenerator_default.a.wrap(function _callee$(_context) {
34727
35667
  while (1) {
34728
35668
  switch (_context.prev = _context.next) {
34729
35669
  case 0:
34730
35670
  if (!valid) {
34731
- _context.next = 44;
35671
+ _context.next = 56;
34732
35672
  break;
34733
35673
  }
34734
35674
 
@@ -34870,32 +35810,27 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34870
35810
  // if(this.isSubmitButtonShowAgreeAndDisagree == 1){
34871
35811
  // this.value = this.value
34872
35812
  // }
35813
+ // console.log(params,'params')
35814
+ // return
34873
35815
  _this18.loading = utils_util["a" /* default */].loading(_this18.$loading, '提交中...');
34874
- utils_util["a" /* default */].ajax({ url: api["mb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
34875
- var status = res.status,
34876
- message = res.message;
34877
-
34878
- _this18.loading.close();
34879
- if (status === 'success') {
34880
- _this18.$message.success('提交成功');
34881
- _this18.$emit('success');
34882
- } else {
34883
- _this18.$message.error(message || '系统错误,请联系管理员!');
34884
- _this18.$emit('error');
34885
- }
34886
- }).catch(function (err) {
34887
- _this18.loading.close();
34888
- if (err.message && err.message !== 'canceled') {
34889
- _this18.$message.error(err.message);
34890
- }
34891
- });
34892
- _context.next = 45;
34893
- break;
35816
+ isEndUserTask = _this18.isEndUserTask, choiceOrgId = _this18.choiceOrgId, choiceDeptId = _this18.choiceDeptId, pOrgId = _this18.pOrgId, taskExamineInfo = _this18.taskExamineInfo;
35817
+
35818
+ params.isEndUserTask = isEndUserTask;
35819
+ params.choiceOrgId = choiceOrgId;
35820
+ params.choiceDeptId = choiceDeptId;
35821
+ params.pOrgId = pOrgId;
35822
+ params.processType = taskExamineInfo.processType;
35823
+ params.businessId = taskExamineInfo.businessId;
35824
+ params.appId = taskExamineInfo.appId;
35825
+ params.processDefinitionId = taskExamineInfo.processDefinitionId;
35826
+ params.isSubFlow = taskExamineInfo.isSubFlow;
35827
+ params.nodeId = taskExamineInfo.nodeId;
35828
+ return _context.abrupt('return');
34894
35829
 
34895
- case 44:
35830
+ case 56:
34896
35831
  return _context.abrupt('return', false);
34897
35832
 
34898
- case 45:
35833
+ case 57:
34899
35834
  case 'end':
34900
35835
  return _context.stop();
34901
35836
  }
@@ -34922,8 +35857,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
34922
35857
 
34923
35858
  var flow_src_main_component = normalizeComponent(
34924
35859
  packages_flow_src_mainvue_type_script_lang_js_,
34925
- mainvue_type_template_id_1cd64e1e_render,
34926
- mainvue_type_template_id_1cd64e1e_staticRenderFns,
35860
+ mainvue_type_template_id_36af21df_render,
35861
+ mainvue_type_template_id_36af21df_staticRenderFns,
34927
35862
  false,
34928
35863
  null,
34929
35864
  null,
@@ -38006,7 +38941,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
38006
38941
  var _this6 = this;
38007
38942
 
38008
38943
  var param = {
38009
- url: api["wb" /* toPresetInfoListIndex */],
38944
+ url: api["vb" /* toPresetInfoListIndex */],
38010
38945
  params: { apprecordid: this.businessId }
38011
38946
  };
38012
38947
  utils_util["a" /* default */].ajax(param).then(function (res) {
@@ -38793,6 +39728,234 @@ handler_src_main.install = function (Vue) {
38793
39728
  };
38794
39729
 
38795
39730
  /* harmony default export */ var packages_handler = (handler_src_main);
39731
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/icon/src/main.vue?vue&type=template&id=7d868ea8&
39732
+ var mainvue_type_template_id_7d868ea8_render = function () {
39733
+ var _vm = this
39734
+ var _h = _vm.$createElement
39735
+ var _c = _vm._self._c || _h
39736
+ return _c(
39737
+ "div",
39738
+ { staticClass: "es-icon", class: { "es-icon-readonly": _vm.readonly } },
39739
+ [
39740
+ !_vm.readonly
39741
+ ? _c(
39742
+ "el-input",
39743
+ _vm._g(
39744
+ _vm._b(
39745
+ {
39746
+ attrs: { placeholder: _vm.placeholder, readonly: "" },
39747
+ model: {
39748
+ value: _vm.model,
39749
+ callback: function ($$v) {
39750
+ _vm.model = $$v
39751
+ },
39752
+ expression: "model",
39753
+ },
39754
+ },
39755
+ "el-input",
39756
+ _vm.$attrs,
39757
+ false
39758
+ ),
39759
+ _vm.$listeners
39760
+ ),
39761
+ [
39762
+ _vm.model
39763
+ ? _c("i", {
39764
+ staticClass: "es-iconfont",
39765
+ class: _vm.model,
39766
+ attrs: { slot: "prepend" },
39767
+ slot: "prepend",
39768
+ })
39769
+ : _vm._e(),
39770
+ _c(
39771
+ "el-button",
39772
+ {
39773
+ attrs: { slot: "suffix", type: "primary", size: "small" },
39774
+ on: { click: _vm.handleClick },
39775
+ slot: "suffix",
39776
+ },
39777
+ [_vm._v("选择")]
39778
+ ),
39779
+ ],
39780
+ 1
39781
+ )
39782
+ : _c("i", {
39783
+ staticClass: "es-iconfont",
39784
+ class: _vm.model,
39785
+ attrs: { slot: "prepend" },
39786
+ slot: "prepend",
39787
+ }),
39788
+ _c(
39789
+ "es-dialog",
39790
+ {
39791
+ attrs: { title: "选择图标", visible: _vm.visible },
39792
+ on: {
39793
+ "update:visible": function ($event) {
39794
+ _vm.visible = $event
39795
+ },
39796
+ },
39797
+ },
39798
+ [
39799
+ _c(
39800
+ "el-scrollbar",
39801
+ { ref: "scrollbar", staticClass: "es-scrollbar" },
39802
+ [
39803
+ _c(
39804
+ "ul",
39805
+ { staticClass: "es-icon-list" },
39806
+ _vm._l(_vm.$icon, function (name) {
39807
+ return _c(
39808
+ "li",
39809
+ {
39810
+ key: name,
39811
+ on: {
39812
+ click: function ($event) {
39813
+ $event.stopPropagation()
39814
+ _vm.handleSelect(name)
39815
+ },
39816
+ },
39817
+ },
39818
+ [
39819
+ _c("span", [
39820
+ _c("i", { class: "es-icon-" + name }),
39821
+ _c("span", { staticClass: "icon-name" }, [
39822
+ _vm._v(_vm._s("es-icon-" + name)),
39823
+ ]),
39824
+ ]),
39825
+ ]
39826
+ )
39827
+ }),
39828
+ 0
39829
+ ),
39830
+ ]
39831
+ ),
39832
+ ],
39833
+ 1
39834
+ ),
39835
+ ],
39836
+ 1
39837
+ )
39838
+ }
39839
+ var mainvue_type_template_id_7d868ea8_staticRenderFns = []
39840
+ mainvue_type_template_id_7d868ea8_render._withStripped = true
39841
+
39842
+
39843
+ // CONCATENATED MODULE: ./packages/icon/src/main.vue?vue&type=template&id=7d868ea8&
39844
+
39845
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/icon/src/main.vue?vue&type=script&lang=js&
39846
+ //
39847
+ //
39848
+ //
39849
+ //
39850
+ //
39851
+ //
39852
+ //
39853
+ //
39854
+ //
39855
+ //
39856
+ //
39857
+ //
39858
+ //
39859
+ //
39860
+ //
39861
+ //
39862
+ //
39863
+ //
39864
+ //
39865
+ //
39866
+ //
39867
+ //
39868
+ //
39869
+ //
39870
+ //
39871
+ //
39872
+ //
39873
+ //
39874
+ //
39875
+ //
39876
+ //
39877
+ //
39878
+ //
39879
+ //
39880
+
39881
+ //import util from 'eoss-ui/src/utils/util';
39882
+ /* harmony default export */ var icon_src_mainvue_type_script_lang_js_ = ({
39883
+ name: 'EsIcon',
39884
+ inheritAttrs: false,
39885
+ props: {
39886
+ value: String,
39887
+ placeholder: {
39888
+ type: String,
39889
+ default: '请选择图标'
39890
+ },
39891
+ readonly: Boolean
39892
+ },
39893
+ computed: {
39894
+ model: {
39895
+ get: function get() {
39896
+ return this.value ? this.value : this.icon;
39897
+ },
39898
+ set: function set(val) {
39899
+ return val;
39900
+ }
39901
+ }
39902
+ },
39903
+ watch: {
39904
+ model: function model(val) {
39905
+ this.$emit('change', val);
39906
+ }
39907
+ },
39908
+ data: function data() {
39909
+ return {
39910
+ icon: null,
39911
+ visible: false
39912
+ };
39913
+ },
39914
+ created: function created() {
39915
+ //this.loadsub(this.param);
39916
+ },
39917
+
39918
+ methods: {
39919
+ handleClick: function handleClick() {
39920
+ this.visible = true;
39921
+ },
39922
+ handleSelect: function handleSelect(name) {
39923
+ this.$emit('input', 'es-icon-' + name);
39924
+ this.icon = 'es-icon-' + name;
39925
+ this.visible = false;
39926
+ }
39927
+ }
39928
+ });
39929
+ // CONCATENATED MODULE: ./packages/icon/src/main.vue?vue&type=script&lang=js&
39930
+ /* harmony default export */ var packages_icon_src_mainvue_type_script_lang_js_ = (icon_src_mainvue_type_script_lang_js_);
39931
+ // CONCATENATED MODULE: ./packages/icon/src/main.vue
39932
+
39933
+
39934
+
39935
+
39936
+
39937
+ /* normalize component */
39938
+
39939
+ var icon_src_main_component = normalizeComponent(
39940
+ packages_icon_src_mainvue_type_script_lang_js_,
39941
+ mainvue_type_template_id_7d868ea8_render,
39942
+ mainvue_type_template_id_7d868ea8_staticRenderFns,
39943
+ false,
39944
+ null,
39945
+ null,
39946
+ null
39947
+
39948
+ )
39949
+
39950
+ /* harmony default export */ var icon_src_main = (icon_src_main_component.exports);
39951
+ // CONCATENATED MODULE: ./packages/icon/index.js
39952
+
39953
+
39954
+ icon_src_main.install = function (Vue) {
39955
+ return Vue.component(icon_src_main.name, icon_src_main);
39956
+ };
39957
+
39958
+ /* harmony default export */ var icon = (icon_src_main);
38796
39959
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/input/src/main.vue?vue&type=script&lang=js&
38797
39960
  var input_src_mainvue_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; };
38798
39961
 
@@ -39394,8 +40557,8 @@ label_src_main.install = function (Vue) {
39394
40557
  };
39395
40558
 
39396
40559
  /* harmony default export */ var packages_label = (label_src_main);
39397
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=51ac81ed&
39398
- var mainvue_type_template_id_51ac81ed_render = function () {
40560
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=94b9d2bc&
40561
+ var mainvue_type_template_id_94b9d2bc_render = function () {
39399
40562
  var _vm = this
39400
40563
  var _h = _vm.$createElement
39401
40564
  var _c = _vm._self._c || _h
@@ -40188,11 +41351,11 @@ var mainvue_type_template_id_51ac81ed_render = function () {
40188
41351
  )
40189
41352
  : _vm._e()
40190
41353
  }
40191
- var mainvue_type_template_id_51ac81ed_staticRenderFns = []
40192
- mainvue_type_template_id_51ac81ed_render._withStripped = true
41354
+ var mainvue_type_template_id_94b9d2bc_staticRenderFns = []
41355
+ mainvue_type_template_id_94b9d2bc_render._withStripped = true
40193
41356
 
40194
41357
 
40195
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=51ac81ed&
41358
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=94b9d2bc&
40196
41359
 
40197
41360
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=669156c6&
40198
41361
  var resetPasswordvue_type_template_id_669156c6_render = function () {
@@ -41443,6 +42606,10 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
41443
42606
  if (res.subsystemExtend.loginBoxAlign && this.useResults) {
41444
42607
  this.align = res.subsystemExtend.loginBoxAlign;
41445
42608
  }
42609
+ if (res.subsystemExtend.themeColor) {
42610
+ utils_util["a" /* default */].updateTheme(res.subsystemExtend.themeColor);
42611
+ localStorage.setItem('theme', res.subsystemExtend.themeColor);
42612
+ }
41446
42613
  }
41447
42614
  this.passModifyModel = res.passModifyModel;
41448
42615
  this.wechatAppid = res.wechatAppid;
@@ -41786,8 +42953,8 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
41786
42953
 
41787
42954
  var login_src_main_component = normalizeComponent(
41788
42955
  packages_login_src_mainvue_type_script_lang_js_,
41789
- mainvue_type_template_id_51ac81ed_render,
41790
- mainvue_type_template_id_51ac81ed_staticRenderFns,
42956
+ mainvue_type_template_id_94b9d2bc_render,
42957
+ mainvue_type_template_id_94b9d2bc_staticRenderFns,
41791
42958
  false,
41792
42959
  null,
41793
42960
  null,
@@ -41804,8 +42971,8 @@ login_src_main.install = function (Vue) {
41804
42971
  };
41805
42972
 
41806
42973
  /* harmony default export */ var login = (login_src_main);
41807
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=24f96d2e&
41808
- var mainvue_type_template_id_24f96d2e_render = function () {
42974
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=928abdb6&
42975
+ var mainvue_type_template_id_928abdb6_render = function () {
41809
42976
  var _vm = this
41810
42977
  var _h = _vm.$createElement
41811
42978
  var _c = _vm._self._c || _h
@@ -41828,7 +42995,22 @@ var mainvue_type_template_id_24f96d2e_render = function () {
41828
42995
  },
41829
42996
  },
41830
42997
  [
41831
- _vm.modal !== "topside" && _vm.logoUrl
42998
+ _vm.themeJSON.logo.comp
42999
+ ? _c(
43000
+ "AsyncComponent",
43001
+ _vm._b(
43002
+ {
43003
+ key: _vm.themeJSON.logo.comp,
43004
+ style: !_vm.themeJSON.topNav.comp ? "width:100%" : "",
43005
+ attrs: { componentRenderUrl: _vm.themeJSON.logo.comp },
43006
+ },
43007
+ "AsyncComponent",
43008
+ _vm.themeJSON.logo.data,
43009
+ false
43010
+ )
43011
+ )
43012
+ : _vm._e(),
43013
+ _vm.modal !== "topside" && _vm.logoUrl && _vm.showDefault
41832
43014
  ? _c("img", {
41833
43015
  staticClass: "es-main-logo",
41834
43016
  attrs: { src: _vm.logoUrl },
@@ -41859,24 +43041,56 @@ var mainvue_type_template_id_24f96d2e_render = function () {
41859
43041
  ],
41860
43042
  1
41861
43043
  ),
41862
- _c("es-handler", {
41863
- attrs: {
41864
- userModel: _vm.userModel,
41865
- hide: _vm.hide,
41866
- subSystem: _vm.subsystem,
41867
- online: _vm.online,
41868
- application: _vm.application,
41869
- storage: _vm.storage,
41870
- notice: _vm.notice,
41871
- data: _vm.handleData,
41872
- },
41873
- on: {
41874
- select: function (res) {
41875
- _vm.handleSelect(res, "sys")
41876
- },
41877
- click: _vm.handleClick,
41878
- },
41879
- }),
43044
+ _vm.themeJSON.topNav.comp
43045
+ ? _c(
43046
+ "AsyncComponent",
43047
+ _vm._b(
43048
+ {
43049
+ key: _vm.themeJSON.topNav.comp,
43050
+ style: !_vm.themeJSON.logo.comp ? "width:100%" : "",
43051
+ attrs: {
43052
+ hide: _vm.hide,
43053
+ subSystem: _vm.subsystem,
43054
+ online: _vm.online,
43055
+ application: _vm.application,
43056
+ storage: _vm.storage,
43057
+ notice: _vm.notice,
43058
+ data: _vm.handleData,
43059
+ componentRenderUrl: _vm.themeJSON.topNav.comp,
43060
+ },
43061
+ on: {
43062
+ select: function (res) {
43063
+ _vm.handleSelect(res, "sys")
43064
+ },
43065
+ click: _vm.handleClick,
43066
+ },
43067
+ },
43068
+ "AsyncComponent",
43069
+ _vm.themeJSON.topNav.data,
43070
+ false
43071
+ )
43072
+ )
43073
+ : _vm._e(),
43074
+ _vm.showDefault
43075
+ ? _c("es-handler", {
43076
+ attrs: {
43077
+ userModel: _vm.userModel,
43078
+ hide: _vm.hide,
43079
+ subSystem: _vm.subsystem,
43080
+ online: _vm.online,
43081
+ application: _vm.application,
43082
+ storage: _vm.storage,
43083
+ notice: _vm.notice,
43084
+ data: _vm.handleData,
43085
+ },
43086
+ on: {
43087
+ select: function (res) {
43088
+ _vm.handleSelect(res, "sys")
43089
+ },
43090
+ click: _vm.handleClick,
43091
+ },
43092
+ })
43093
+ : _vm._e(),
41880
43094
  ],
41881
43095
  1
41882
43096
  )
@@ -41909,7 +43123,40 @@ var mainvue_type_template_id_24f96d2e_render = function () {
41909
43123
  1
41910
43124
  )
41911
43125
  : _vm._e(),
41912
- _vm.showMenu
43126
+ _vm.themeJSON.leftNav.comp
43127
+ ? _c(
43128
+ "AsyncComponent",
43129
+ _vm._b(
43130
+ {
43131
+ key: _vm.themeJSON.leftNav.comp,
43132
+ attrs: {
43133
+ biserial: _vm.biserial,
43134
+ newTitle: _vm.showNavTitle ? _vm.title : false,
43135
+ "default-active": _vm.active,
43136
+ "menu-tips": _vm.menuTips,
43137
+ scene: _vm.scene,
43138
+ componentRenderUrl: _vm.themeJSON.leftNav.comp,
43139
+ newMenu: _vm.menu,
43140
+ application: _vm.application,
43141
+ menuUrl: _vm.menuUrl,
43142
+ },
43143
+ on: {
43144
+ trigger: function (res) {
43145
+ _vm.handleSelect(res, "sub")
43146
+ },
43147
+ select: function (res) {
43148
+ _vm.handleSelect(res, "menu")
43149
+ },
43150
+ success: _vm.menuSuccess,
43151
+ },
43152
+ },
43153
+ "AsyncComponent",
43154
+ _vm.themeJSON.leftNav.data,
43155
+ false
43156
+ )
43157
+ )
43158
+ : _vm._e(),
43159
+ _vm.showMenu && _vm.showDefault
41913
43160
  ? _c("es-nav", {
41914
43161
  attrs: {
41915
43162
  data: _vm.menu,
@@ -42023,6 +43270,29 @@ var mainvue_type_template_id_24f96d2e_render = function () {
42023
43270
  ],
42024
43271
  2
42025
43272
  ),
43273
+ _vm.themeJSON.copyright.comp
43274
+ ? _c(
43275
+ "AsyncComponent",
43276
+ _vm._b(
43277
+ {
43278
+ key: _vm.themeJSON.copyright.comp,
43279
+ staticStyle: {
43280
+ position: "absolute",
43281
+ height: "60px",
43282
+ bottom: "0",
43283
+ left: "0",
43284
+ right: "0",
43285
+ },
43286
+ attrs: {
43287
+ componentRenderUrl: _vm.themeJSON.copyright.comp,
43288
+ },
43289
+ },
43290
+ "AsyncComponent",
43291
+ _vm.themeJSON.copyright.data,
43292
+ false
43293
+ )
43294
+ )
43295
+ : _vm._e(),
42026
43296
  _vm.showMsg
42027
43297
  ? _c("message", {
42028
43298
  ref: "message",
@@ -42116,11 +43386,11 @@ var mainvue_type_template_id_24f96d2e_render = function () {
42116
43386
  1
42117
43387
  )
42118
43388
  }
42119
- var mainvue_type_template_id_24f96d2e_staticRenderFns = []
42120
- mainvue_type_template_id_24f96d2e_render._withStripped = true
43389
+ var mainvue_type_template_id_928abdb6_staticRenderFns = []
43390
+ mainvue_type_template_id_928abdb6_render._withStripped = true
42121
43391
 
42122
43392
 
42123
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=24f96d2e&
43393
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=928abdb6&
42124
43394
 
42125
43395
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=d575fa30&
42126
43396
  var userinfovue_type_template_id_d575fa30_render = function () {
@@ -42444,7 +43714,7 @@ userinfovue_type_template_id_d575fa30_render._withStripped = true
42444
43714
  var _this4 = this;
42445
43715
 
42446
43716
  utils_util["a" /* default */].ajax({
42447
- url: api["Nb" /* updateUserInfo */],
43717
+ url: api["Mb" /* updateUserInfo */],
42448
43718
  params: {
42449
43719
  email: this.values.email,
42450
43720
  officeTel: this.values.officetel,
@@ -42483,7 +43753,7 @@ userinfovue_type_template_id_d575fa30_render._withStripped = true
42483
43753
  var notify = _this4.values.notify.sort().join(',');
42484
43754
  if (notify != _this4.notify.split(',').sort().join(',')) {
42485
43755
  utils_util["a" /* default */].ajax({
42486
- url: api["Mb" /* updateUserCustomInfo */],
43756
+ url: api["Lb" /* updateUserCustomInfo */],
42487
43757
  params: {
42488
43758
  notify: notify
42489
43759
  }
@@ -43473,12 +44743,183 @@ var notice_component = normalizeComponent(
43473
44743
  )
43474
44744
 
43475
44745
  /* harmony default export */ var notice = (notice_component.exports);
44746
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/async-component/index.vue?vue&type=template&id=51f0233c&scoped=true&
44747
+ var async_componentvue_type_template_id_51f0233c_scoped_true_render = function () {
44748
+ var _vm = this
44749
+ var _h = _vm.$createElement
44750
+ var _c = _vm._self._c || _h
44751
+ return _c(
44752
+ _vm.comp,
44753
+ _vm._g(
44754
+ _vm._b({ tag: "component" }, "component", _vm.$attrs, false),
44755
+ _vm.$listeners
44756
+ )
44757
+ )
44758
+ }
44759
+ var async_componentvue_type_template_id_51f0233c_scoped_true_staticRenderFns = []
44760
+ async_componentvue_type_template_id_51f0233c_scoped_true_render._withStripped = true
44761
+
44762
+
44763
+ // CONCATENATED MODULE: ./packages/main/src/async-component/index.vue?vue&type=template&id=51f0233c&scoped=true&
44764
+
44765
+ // EXTERNAL MODULE: external "runtime-import"
44766
+ var external_runtime_import_ = __webpack_require__(4);
44767
+
44768
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/async-component/index.vue?vue&type=script&lang=js&
44769
+
44770
+
44771
+ function async_componentvue_type_script_lang_js_asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; }
44772
+
44773
+ //
44774
+ //
44775
+ //
44776
+ //
44777
+ //
44778
+ //
44779
+ //
44780
+ //
44781
+ //
44782
+ //
44783
+ //
44784
+ //
44785
+
44786
+
44787
+
44788
+ /* harmony default export */ var async_componentvue_type_script_lang_js_ = ({
44789
+ name: 'AsyncComponent',
44790
+ inheritAttrs: true,
44791
+ props: {
44792
+ componentRenderUrl: {
44793
+ type: [String, Object],
44794
+ default: ''
44795
+ }
44796
+ },
44797
+ data: function data() {
44798
+ return {
44799
+ comp: 'div'
44800
+ };
44801
+ },
44802
+
44803
+ watch: {
44804
+ componentRenderUrl: {
44805
+ immediate: true,
44806
+ handler: function handler(newVal) {
44807
+ this.handleImport(newVal);
44808
+ }
44809
+ }
44810
+ },
44811
+ methods: {
44812
+ handleImport: function handleImport() {
44813
+ var _this = this;
44814
+
44815
+ var url = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
44816
+ return async_componentvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee() {
44817
+ var catchComponent, comp;
44818
+ return regenerator_default.a.wrap(function _callee$(_context) {
44819
+ while (1) {
44820
+ switch (_context.prev = _context.next) {
44821
+ case 0:
44822
+ _context.prev = 0;
44823
+
44824
+ if (!(url.indexOf && (url.indexOf('http:') != -1 || url.indexOf('https:') != -1 || url.indexOf('/dev-api') != -1))) {
44825
+ _context.next = 19;
44826
+ break;
44827
+ }
44828
+
44829
+ // 获取缓存中的组件
44830
+ catchComponent = utils_util["a" /* default */].win[url];
44831
+
44832
+ if (!catchComponent) {
44833
+ _context.next = 8;
44834
+ break;
44835
+ }
44836
+
44837
+ // 渲染缓存中的组件
44838
+ _this.comp = catchComponent;
44839
+ // 回传props内容
44840
+ _this.$emit('handleGetProps', _this.comp.props);
44841
+ _context.next = 17;
44842
+ break;
44843
+
44844
+ case 8:
44845
+ _context.next = 10;
44846
+ return Object(external_runtime_import_["importScript"])(url);
44847
+
44848
+ case 10:
44849
+ comp = _context.sent;
44850
+
44851
+ if (comp) {
44852
+ _context.next = 14;
44853
+ break;
44854
+ }
44855
+
44856
+ _this.$message.error('不是合规组件,请检查组件上传环境和语法');
44857
+ return _context.abrupt('return');
44858
+
44859
+ case 14:
44860
+ _this.comp = comp;
44861
+ utils_util["a" /* default */].win[url] = comp;
44862
+ // 回传props内容
44863
+ _this.$emit('handleGetProps', _this.comp.props);
44864
+
44865
+ case 17:
44866
+ _context.next = 20;
44867
+ break;
44868
+
44869
+ case 19:
44870
+ // 如果不是url则当作文本片段处理
44871
+ _this.comp = url;
44872
+ // 回传props内容
44873
+ // this.$emit('handleGetProps', this.comp.props);
44874
+
44875
+ case 20:
44876
+ _context.next = 25;
44877
+ break;
44878
+
44879
+ case 22:
44880
+ _context.prev = 22;
44881
+ _context.t0 = _context['catch'](0);
44882
+
44883
+ console.error(_context.t0);
44884
+
44885
+ case 25:
44886
+ case 'end':
44887
+ return _context.stop();
44888
+ }
44889
+ }
44890
+ }, _callee, _this, [[0, 22]]);
44891
+ }))();
44892
+ }
44893
+ }
44894
+ });
44895
+ // CONCATENATED MODULE: ./packages/main/src/async-component/index.vue?vue&type=script&lang=js&
44896
+ /* harmony default export */ var src_async_componentvue_type_script_lang_js_ = (async_componentvue_type_script_lang_js_);
44897
+ // CONCATENATED MODULE: ./packages/main/src/async-component/index.vue
44898
+
44899
+
44900
+
44901
+
44902
+
44903
+ /* normalize component */
44904
+
44905
+ var async_component_component = normalizeComponent(
44906
+ src_async_componentvue_type_script_lang_js_,
44907
+ async_componentvue_type_template_id_51f0233c_scoped_true_render,
44908
+ async_componentvue_type_template_id_51f0233c_scoped_true_staticRenderFns,
44909
+ false,
44910
+ null,
44911
+ "51f0233c",
44912
+ null
44913
+
44914
+ )
44915
+
44916
+ /* harmony default export */ var async_component = (async_component_component.exports);
43476
44917
  // EXTERNAL MODULE: external "sockjs-client"
43477
- var external_sockjs_client_ = __webpack_require__(4);
44918
+ var external_sockjs_client_ = __webpack_require__(5);
43478
44919
  var external_sockjs_client_default = /*#__PURE__*/__webpack_require__.n(external_sockjs_client_);
43479
44920
 
43480
44921
  // EXTERNAL MODULE: external "stompjs"
43481
- var external_stompjs_ = __webpack_require__(6);
44922
+ var external_stompjs_ = __webpack_require__(7);
43482
44923
  var external_stompjs_default = /*#__PURE__*/__webpack_require__.n(external_stompjs_);
43483
44924
 
43484
44925
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=script&lang=js&
@@ -43655,6 +45096,73 @@ var main_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
43655
45096
  //
43656
45097
  //
43657
45098
  //
45099
+ //
45100
+ //
45101
+ //
45102
+ //
45103
+ //
45104
+ //
45105
+ //
45106
+ //
45107
+ //
45108
+ //
45109
+ //
45110
+ //
45111
+ //
45112
+ //
45113
+ //
45114
+ //
45115
+ //
45116
+ //
45117
+ //
45118
+ //
45119
+ //
45120
+ //
45121
+ //
45122
+ //
45123
+ //
45124
+ //
45125
+ //
45126
+ //
45127
+ //
45128
+ //
45129
+ //
45130
+ //
45131
+ //
45132
+ //
45133
+ //
45134
+ //
45135
+ //
45136
+ //
45137
+ //
45138
+ //
45139
+ //
45140
+ //
45141
+ //
45142
+ //
45143
+ //
45144
+ //
45145
+ //
45146
+ //
45147
+ //
45148
+ //
45149
+ //
45150
+ //
45151
+ //
45152
+ //
45153
+ //
45154
+ //
45155
+ //
45156
+ //
45157
+ //
45158
+ //
45159
+ //
45160
+ //
45161
+ //
45162
+ //
45163
+ //
45164
+ //
45165
+
43658
45166
 
43659
45167
 
43660
45168
 
@@ -43674,6 +45182,7 @@ var log = utils_util["a" /* default */].getParams('console');
43674
45182
  userinfo: userinfo,
43675
45183
  settings: settings,
43676
45184
  message: src_message,
45185
+ AsyncComponent: async_component,
43677
45186
  notice: notice
43678
45187
  },
43679
45188
  props: {
@@ -43777,6 +45286,10 @@ var log = utils_util["a" /* default */].getParams('console');
43777
45286
  remote: {
43778
45287
  type: Boolean,
43779
45288
  default: true
45289
+ },
45290
+ isCustomMain: {
45291
+ type: Boolean,
45292
+ default: false
43780
45293
  }
43781
45294
  },
43782
45295
  computed: {
@@ -43899,6 +45412,13 @@ var log = utils_util["a" /* default */].getParams('console');
43899
45412
  },
43900
45413
  data: function data() {
43901
45414
  return {
45415
+ showDefault: false,
45416
+ themeJSON: {
45417
+ logo: { comp: '', data: {} },
45418
+ topNav: { comp: '', data: {} },
45419
+ leftNav: { comp: '', data: {} },
45420
+ copyright: { comp: '', data: {} }
45421
+ },
43902
45422
  pageLoading: false,
43903
45423
  client: null,
43904
45424
  websocket: null,
@@ -43965,6 +45485,8 @@ var log = utils_util["a" /* default */].getParams('console');
43965
45485
  //是否展示侧边导航
43966
45486
  showMenu: true,
43967
45487
  props: {},
45488
+ menuType: '',
45489
+ customMenu: [],
43968
45490
  //是否首次加载
43969
45491
  isDefault: true,
43970
45492
  reset: true,
@@ -44003,6 +45525,60 @@ var log = utils_util["a" /* default */].getParams('console');
44003
45525
  },
44004
45526
 
44005
45527
  methods: {
45528
+ menuSuccess: function menuSuccess(res) {
45529
+ // this.menus
45530
+ this.menuType = 'custom';
45531
+ this.customMenu = res;
45532
+ this.setMenu(res);
45533
+ },
45534
+
45535
+ //获取主题模板JSON
45536
+ getMainDetail: function getMainDetail(id) {
45537
+ var _this = this;
45538
+
45539
+ var params = {
45540
+ url: api["W" /* mainDetail */],
45541
+ params: { id: id }
45542
+ };
45543
+ utils_util["a" /* default */].ajax(params).then(function (res) {
45544
+ var _that = _this;
45545
+ if (!res.results) {
45546
+ _that.showDefault = true;
45547
+ }
45548
+ if (res.rCode == 0) {
45549
+ if (res.results && JSON.parse(res.results.layout)) {
45550
+ // 初始化布局器
45551
+ _that.themeJSON = JSON.parse(res.results.layout);
45552
+ var count = 0;
45553
+ for (var key in _that.themeJSON) {
45554
+ if (_that.themeJSON[key].comp) {
45555
+ count++;
45556
+ }
45557
+ }
45558
+ if (count == 0) {
45559
+ _that.showDefault = true;
45560
+ }
45561
+ var theme = JSON.parse(res.results.theme);
45562
+
45563
+ utils_util["a" /* default */].updateTheme(theme.primaryColor);
45564
+ _that.handleColorToPage(theme.globalThalk);
45565
+ }
45566
+ } else {
45567
+ _that.$message.error('主题加载发生错误');
45568
+ throw res.msg || '系统错误,请联系管理员!';
45569
+ }
45570
+ if (_that.showDefault && _that.data === undefined) {
45571
+ _that.getMenu();
45572
+ } else if (_that.showDefault) {
45573
+ _that.menus = JSON.parse(JSON.stringify(_that.data));
45574
+ _that.setMenu(_that.data);
45575
+ }
45576
+ }).catch(function (err) {
45577
+ if (err.message && err.message !== 'canceled') {
45578
+ _this.$message.error(err.message);
45579
+ }
45580
+ });
45581
+ },
44006
45582
  renderMenu: function renderMenu() {
44007
45583
  if (this.data !== undefined && this.data.length) {
44008
45584
  this.menus = JSON.parse(JSON.stringify(this.data));
@@ -44030,35 +45606,35 @@ var log = utils_util["a" /* default */].getParams('console');
44030
45606
 
44031
45607
  //设置主题颜色
44032
45608
  setTheme: function setTheme(color) {
44033
- var _this = this;
45609
+ var _this2 = this;
44034
45610
 
44035
45611
  if (!color) {
44036
45612
  return;
44037
45613
  }
44038
45614
  utils_util["a" /* default */].ajax({
44039
- url: api["Mb" /* updateUserCustomInfo */],
45615
+ url: api["Lb" /* updateUserCustomInfo */],
44040
45616
  params: { color: escape(color.toLowerCase()) },
44041
45617
  data: { color: escape(color.toLowerCase()) }
44042
45618
  }).then(function (res) {
44043
45619
  if (res.rCode === 0) {
44044
- _this.color = color;
45620
+ _this2.color = color;
44045
45621
  localStorage.setItem('theme', color);
44046
45622
  var _mainConfig = JSON.parse(utils_util["a" /* default */].getStorage('mainConfig'));
44047
- _mainConfig.userStyle.color = _this.color;
45623
+ _mainConfig.userStyle.color = _this2.color;
44048
45624
  sessionStorage.setItem('mainConfig', JSON.stringify(_mainConfig));
44049
- _this.$emit('setting', 'theme', _this.color);
44050
- _this.$message({
45625
+ _this2.$emit('setting', 'theme', _this2.color);
45626
+ _this2.$message({
44051
45627
  message: res.msg,
44052
45628
  type: 'success',
44053
45629
  duration: 2000
44054
45630
  });
44055
45631
  } else {
44056
45632
  var msg = res.msg || '系统错误,请联系管理员!';
44057
- _this.$message.error(msg);
45633
+ _this2.$message.error(msg);
44058
45634
  }
44059
45635
  }).catch(function (err) {
44060
45636
  if (err.message && err.message !== 'canceled') {
44061
- _this.$message.error(err.message);
45637
+ _this2.$message.error(err.message);
44062
45638
  }
44063
45639
  });
44064
45640
  },
@@ -44127,11 +45703,19 @@ var log = utils_util["a" /* default */].getParams('console');
44127
45703
  utils_store.set(i, results[i]);
44128
45704
  }
44129
45705
  this.userModel = results.userModel;
45706
+ var mainFrameLayout = results.mainFrameLayout;
45707
+ if (results.userStyle.layout && this.isCustomMain) {
45708
+ this.getMainDetail(results.userStyle.layout);
45709
+ } else if (this.isCustomMain) {
45710
+ this.getMainDetail(mainFrameLayout);
45711
+ } else {
45712
+ this.showDefault = true;
45713
+ }
44130
45714
  },
44131
45715
 
44132
45716
  //获取用户配置及信息
44133
45717
  getConfig: function getConfig() {
44134
- var _this2 = this;
45718
+ var _this3 = this;
44135
45719
 
44136
45720
  if (utils_util["a" /* default */].getStorage('mainConfig')) {
44137
45721
  var results = JSON.parse(utils_util["a" /* default */].getStorage('mainConfig'));
@@ -44140,31 +45724,31 @@ var log = utils_util["a" /* default */].getParams('console');
44140
45724
  }
44141
45725
  utils_util["a" /* default */].ajax({ url: this.mainConfig }).then(function (res) {
44142
45726
  if (res && res.rCode === 0) {
44143
- _this2.setConfig(res.results, 1);
45727
+ _this3.setConfig(res.results, 1);
44144
45728
  } else {
44145
45729
  var msg = res.msg || '系统错误,请联系管理员!';
44146
- _this2.$message.error(msg);
45730
+ _this3.$message.error(msg);
44147
45731
  }
44148
45732
  }).catch(function (err) {
44149
45733
  if (err.message && err.message !== 'canceled') {
44150
- _this2.$message.error(err.message);
45734
+ _this3.$message.error(err.message);
44151
45735
  }
44152
45736
  });
44153
45737
  },
44154
45738
  reGetConfig: function reGetConfig() {
44155
- var _this3 = this;
45739
+ var _this4 = this;
44156
45740
 
44157
45741
  utils_util["a" /* default */].ajax({ url: this.mainConfig }).then(function (res) {
44158
45742
  if (res && res.rCode === 0) {
44159
45743
  var results = JSON.parse(JSON.stringify(res.results));
44160
- _this3.setConfig(results, 1);
45744
+ _this4.setConfig(results, 1);
44161
45745
  } else {
44162
45746
  var msg = res.msg || '系统错误,请联系管理员!';
44163
- _this3.$message.error(msg);
45747
+ _this4.$message.error(msg);
44164
45748
  }
44165
45749
  }).catch(function (err) {
44166
45750
  if (err.message && err.message !== 'canceled') {
44167
- _this3.$message.error(err.message);
45751
+ _this4.$message.error(err.message);
44168
45752
  }
44169
45753
  });
44170
45754
  },
@@ -44222,16 +45806,16 @@ var log = utils_util["a" /* default */].getParams('console');
44222
45806
 
44223
45807
  //获取应用导航菜单
44224
45808
  getMenu: function getMenu() {
44225
- var _this4 = this;
45809
+ var _this5 = this;
44226
45810
 
44227
45811
  utils_util["a" /* default */].ajax({ url: this.action }).then(function (res) {
44228
45812
  if (res.rCode === 0) {
44229
- _this4.menus = JSON.parse(JSON.stringify(res.results));
45813
+ _this5.menus = JSON.parse(JSON.stringify(res.results));
44230
45814
  var applicationid = utils_util["a" /* default */].getParams('applicationid') || utils_util["a" /* default */].getParams('applicationId');
44231
45815
  if (applicationid) {
44232
- var ids = _this4.getId(_this4.menus, applicationid);
45816
+ var ids = _this5.getId(_this5.menus, applicationid);
44233
45817
  if (ids) {
44234
- _this4.defaultActive = ids;
45818
+ _this5.defaultActive = ids;
44235
45819
  }
44236
45820
  } else {
44237
45821
  var hash = utils_util["a" /* default */].win.location.hash;
@@ -44239,22 +45823,22 @@ var log = utils_util["a" /* default */].getParams('console');
44239
45823
  hash = hash.split('?')[0];
44240
45824
  }
44241
45825
  if (hash !== '#/' && hash !== '#/main') {
44242
- var _ids2 = _this4.getId(_this4.menus, utils_util["a" /* default */].win.location.hash, true);
45826
+ var _ids2 = _this5.getId(_this5.menus, utils_util["a" /* default */].win.location.hash, true);
44243
45827
  if (_ids2) {
44244
- _this4.defaultActive = _ids2;
45828
+ _this5.defaultActive = _ids2;
44245
45829
  }
44246
45830
  }
44247
45831
  }
44248
- _this4.setTips(_this4.menus);
44249
- utils_store.set('nav', _this4.menus);
44250
- _this4.setMenu(_this4.menus);
45832
+ _this5.setTips(_this5.menus);
45833
+ utils_store.set('nav', _this5.menus);
45834
+ _this5.setMenu(_this5.menus);
44251
45835
  } else {
44252
45836
  var msg = res.msg || '系统错误,请联系管理员!';
44253
- _this4.$message.error(msg);
45837
+ _this5.$message.error(msg);
44254
45838
  }
44255
45839
  }).catch(function (err) {
44256
45840
  if (err.message && err.message !== 'canceled') {
44257
- _this4.$message.error(err.message);
45841
+ _this5.$message.error(err.message);
44258
45842
  }
44259
45843
  });
44260
45844
  },
@@ -44283,10 +45867,19 @@ var log = utils_util["a" /* default */].getParams('console');
44283
45867
  }
44284
45868
  if (this.modal === 'subsystem' || this.modal === 'topside') {
44285
45869
  if (this.modal === 'subsystem') {
44286
- this.subsystem = res;
45870
+ if (this.menuType === 'custom') {
45871
+ this.subsystem = this.customMenu;
45872
+ } else {
45873
+ this.subsystem = res;
45874
+ }
44287
45875
  } else if (this.modal === 'topside') {
44288
- this.navs = res;
44289
- this.topActive = res[0].id;
45876
+ if (this.menuType === 'custom') {
45877
+ this.navs = this.customMenu;
45878
+ this.topActive = res[0].id;
45879
+ } else {
45880
+ this.navs = res;
45881
+ this.topActive = res[0].id;
45882
+ }
44290
45883
  }
44291
45884
  if (this.application) {
44292
45885
  for (var i = 0; i < res.length; i++) {
@@ -44304,8 +45897,13 @@ var log = utils_util["a" /* default */].getParams('console');
44304
45897
  this.active = this.getFirst(this.menu[0]);
44305
45898
  }
44306
45899
  } else if (this.modal === 'topnav') {
44307
- this.navs = res;
44308
- this.topActive = this.getFirst(res[0]);
45900
+ if (this.menuType === 'custom') {
45901
+ this.navs = this.customMenu;
45902
+ this.topActive = this.getFirst(res[0]);
45903
+ } else {
45904
+ this.navs = res;
45905
+ this.topActive = this.getFirst(res[0]);
45906
+ }
44309
45907
  } else {
44310
45908
  this.menu = res;
44311
45909
  if (!this.isDefault) {
@@ -44355,11 +45953,11 @@ var log = utils_util["a" /* default */].getParams('console');
44355
45953
 
44356
45954
  //遍历设置菜单气泡提醒
44357
45955
  setTips: function setTips(obj) {
44358
- var _this5 = this;
45956
+ var _this6 = this;
44359
45957
 
44360
45958
  if (Array.isArray(obj)) {
44361
45959
  obj.forEach(function (item) {
44362
- _this5.setTips(item);
45960
+ _this6.setTips(item);
44363
45961
  });
44364
45962
  } else {
44365
45963
  if (Object.prototype.hasOwnProperty.call(obj, 'tips') && obj.tips) {
@@ -44369,7 +45967,7 @@ var log = utils_util["a" /* default */].getParams('console');
44369
45967
  var flag = false;
44370
45968
  if (obj.children && obj.children.length) {
44371
45969
  obj.children.forEach(function (item) {
44372
- if (_this5.setTips(item)) {
45970
+ if (_this6.setTips(item)) {
44373
45971
  flag = true;
44374
45972
  }
44375
45973
  });
@@ -44379,7 +45977,7 @@ var log = utils_util["a" /* default */].getParams('console');
44379
45977
  }
44380
45978
  } else if (obj.fourthTabs && obj.fourthTabs.length) {
44381
45979
  obj.fourthTabs.forEach(function (item) {
44382
- if (_this5.setTips(item)) {
45980
+ if (_this6.setTips(item)) {
44383
45981
  flag = true;
44384
45982
  }
44385
45983
  });
@@ -44405,11 +46003,21 @@ var log = utils_util["a" /* default */].getParams('console');
44405
46003
  this.getUrl(res, active);
44406
46004
  if (this.modal === 'subsystem' || this.modal === 'subSystem' || this.modal === 'topnav' || this.modal === 'topNav' || this.modal === 'topside' || this.modal === 'topSide') {
44407
46005
  if (this.modal === 'subsystem' || this.modal === 'subSystem') {
44408
- this.subsystem = res;
44409
- this.sysId = active[0];
46006
+ if (this.menuType === 'custom') {
46007
+ this.subsystem = this.customMenu;
46008
+ this.sysId = active[0];
46009
+ } else {
46010
+ this.subsystem = res;
46011
+ this.sysId = active[0];
46012
+ }
44410
46013
  } else if (this.modal === 'topnav' || this.modal === 'topNav' || this.modal === 'topside' || this.modal === 'topSide') {
44411
- this.navs = res;
44412
- this.topActive = active[0];
46014
+ if (this.menuType === 'custom') {
46015
+ this.navs = this.customMenu;
46016
+ this.topActive = active[0];
46017
+ } else {
46018
+ this.navs = res;
46019
+ this.topActive = active[0];
46020
+ }
44413
46021
  }
44414
46022
  if (this.tabs.length || this.isTabs) {
44415
46023
  this.tabsId = active[active.length - 1];
@@ -44596,7 +46204,7 @@ var log = utils_util["a" /* default */].getParams('console');
44596
46204
 
44597
46205
  //头部工具交互事件
44598
46206
  handleClick: function handleClick(res) {
44599
- var _this6 = this;
46207
+ var _this7 = this;
44600
46208
 
44601
46209
  var type = res.type;
44602
46210
 
@@ -44610,12 +46218,12 @@ var log = utils_util["a" /* default */].getParams('console');
44610
46218
  if (this.homePage) {
44611
46219
  this.handleJump(this.homePage);
44612
46220
  }
44613
- this.active = '';
46221
+ this.active = [];
44614
46222
  this.defaultActive = [];
44615
46223
  this.tabs = [];
44616
46224
  this.setMenu(this.menus);
44617
46225
  this.$nextTick(function () {
44618
- _this6.reset = true;
46226
+ _this7.reset = true;
44619
46227
  });
44620
46228
  break;
44621
46229
  case 'user':
@@ -44642,21 +46250,21 @@ var log = utils_util["a" /* default */].getParams('console');
44642
46250
 
44643
46251
  //刷新子页面、子路由
44644
46252
  handleRefresh: function handleRefresh() {
44645
- var _this7 = this;
46253
+ var _this8 = this;
44646
46254
 
44647
46255
  if (this.method === 'iframe') {
44648
46256
  this.page = utils_util["a" /* default */].handlerUrl(this.page);
44649
46257
  } else {
44650
46258
  this.refresh = false;
44651
46259
  this.$nextTick(function () {
44652
- _this7.refresh = true;
46260
+ _this8.refresh = true;
44653
46261
  });
44654
46262
  }
44655
46263
  },
44656
46264
 
44657
46265
  //跳转页面
44658
46266
  handleJump: function handleJump(page, type, res) {
44659
- var _this8 = this;
46267
+ var _this9 = this;
44660
46268
 
44661
46269
  if (utils_util["a" /* default */].win.location.hash === page) {
44662
46270
  this.refresh = true;
@@ -44677,7 +46285,7 @@ var log = utils_util["a" /* default */].getParams('console');
44677
46285
  this.wjName = 'singlespa';
44678
46286
  this.page = this.host + page;
44679
46287
  this.$nextTick(function () {
44680
- _this8.refresh = true;
46288
+ _this9.refresh = true;
44681
46289
  });
44682
46290
  } else if (urls[0].indexOf('.dhtml') > 0 || urls[0].indexOf('.html') > 0 && urls[0].indexOf('.html#') === -1) {
44683
46291
  this.method = 'iframe';
@@ -44706,7 +46314,7 @@ var log = utils_util["a" /* default */].getParams('console');
44706
46314
  query: params
44707
46315
  });
44708
46316
  this.$nextTick(function () {
44709
- _this8.refresh = true;
46317
+ _this9.refresh = true;
44710
46318
  });
44711
46319
  } else {
44712
46320
  var urlopenmode = utils_util["a" /* default */].getParams({
@@ -44722,7 +46330,7 @@ var log = utils_util["a" /* default */].getParams('console');
44722
46330
  this.wjName = res.appCode ? res.appCode : 'application';
44723
46331
  this.page = this.host + page;
44724
46332
  this.$nextTick(function () {
44725
- _this8.refresh = true;
46333
+ _this9.refresh = true;
44726
46334
  });
44727
46335
  }
44728
46336
  }
@@ -44752,7 +46360,7 @@ var log = utils_util["a" /* default */].getParams('console');
44752
46360
 
44753
46361
  //监听改变菜单
44754
46362
  handleListener: function handleListener() {
44755
- var _this9 = this;
46363
+ var _this10 = this;
44756
46364
 
44757
46365
  utils_util["a" /* default */].win.addEventListener('message', function (e) {
44758
46366
  var msg = e.data;
@@ -44761,7 +46369,7 @@ var log = utils_util["a" /* default */].getParams('console');
44761
46369
  if (typeof res === 'string') {
44762
46370
  res = res.split(',');
44763
46371
  }
44764
- _this9.setDefault(_this9.menus, res);
46372
+ _this10.setDefault(_this10.menus, res);
44765
46373
  }
44766
46374
  }, false);
44767
46375
  },
@@ -44770,7 +46378,7 @@ var log = utils_util["a" /* default */].getParams('console');
44770
46378
  initWebSocket: function initWebSocket() {
44771
46379
  //初始化weosocket
44772
46380
  if (!this.websocket) {
44773
- var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Sb" /* wss */];
46381
+ var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Rb" /* wss */];
44774
46382
  this.websocket = new external_sockjs_client_default.a(url);
44775
46383
  }
44776
46384
  this.client = external_stompjs_default.a.over(this.websocket);
@@ -44780,33 +46388,33 @@ var log = utils_util["a" /* default */].getParams('console');
44780
46388
  this.handleConnect(this.client);
44781
46389
  },
44782
46390
  handleConnect: function handleConnect(client) {
44783
- var _this10 = this;
46391
+ var _this11 = this;
44784
46392
 
44785
46393
  client.connect({}, function () {
44786
46394
  //localStorage.setItem("socket",true);
44787
46395
  //订阅服务端的
44788
- client.subscribe(api["Jb" /* topic */], function (response) {
46396
+ client.subscribe(api["Ib" /* topic */], function (response) {
44789
46397
  var res = JSON.parse(response.body);
44790
46398
  var data = res.data;
44791
46399
  for (var i in data) {
44792
46400
  if (data[i] !== null && data[i] !== undefined) {
44793
46401
  if (i === 'onlineUserNums' && data[i] > 0) {
44794
- _this10.online = data[i];
46402
+ _this11.online = data[i];
44795
46403
  }
44796
46404
  if (i === 'sysMsgNums') {
44797
- _this10.notice = data[i];
44798
- if (_this10.showMsg) {
44799
- _this10.$refs.message.getMsg(true);
46405
+ _this11.notice = data[i];
46406
+ if (_this11.showMsg) {
46407
+ _this11.$refs.message.getMsg(true);
44800
46408
  }
44801
46409
  }
44802
46410
  if (i === 'menuTipsMap') {
44803
- _this10.menuTips = data[i];
46411
+ _this11.menuTips = data[i];
44804
46412
  }
44805
46413
  if (i === 'sysMsgList') {
44806
- _this10.sysMsg = data[i];
46414
+ _this11.sysMsg = data[i];
44807
46415
  }
44808
46416
  if (i === 'extraData') {
44809
- _this10.extraData = data[i];
46417
+ _this11.extraData = data[i];
44810
46418
  }
44811
46419
  }
44812
46420
  }
@@ -44817,13 +46425,13 @@ var log = utils_util["a" /* default */].getParams('console');
44817
46425
  });
44818
46426
  },
44819
46427
  handleOpened: function handleOpened(res) {
44820
- var _this11 = this;
46428
+ var _this12 = this;
44821
46429
 
44822
46430
  if (res === undefined) {
44823
46431
  this.sysMsg = [];
44824
46432
  } else if (res == false && this.sysMsg.length) {
44825
46433
  this.sysMsgOut = setTimeout(function () {
44826
- _this11.sysMsg = [];
46434
+ _this12.sysMsg = [];
44827
46435
  }, 3000);
44828
46436
  } else if (this.sysMsgOut) {
44829
46437
  clearTimeout(this.sysMsgOut);
@@ -44926,8 +46534,8 @@ var log = utils_util["a" /* default */].getParams('console');
44926
46534
 
44927
46535
  var main_src_main_component = normalizeComponent(
44928
46536
  packages_main_src_mainvue_type_script_lang_js_,
44929
- mainvue_type_template_id_24f96d2e_render,
44930
- mainvue_type_template_id_24f96d2e_staticRenderFns,
46537
+ mainvue_type_template_id_928abdb6_render,
46538
+ mainvue_type_template_id_928abdb6_staticRenderFns,
44931
46539
  false,
44932
46540
  null,
44933
46541
  null,
@@ -44944,8 +46552,8 @@ main_src_main.install = function (Vue) {
44944
46552
  };
44945
46553
 
44946
46554
  /* harmony default export */ var packages_main = (main_src_main);
44947
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/mainComp/src/main.vue?vue&type=template&id=70450447&
44948
- var mainvue_type_template_id_70450447_render = function () {
46555
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/mainComp/src/main.vue?vue&type=template&id=1b76299b&
46556
+ var mainvue_type_template_id_1b76299b_render = function () {
44949
46557
  var _vm = this
44950
46558
  var _h = _vm.$createElement
44951
46559
  var _c = _vm._self._c || _h
@@ -45354,11 +46962,11 @@ var mainvue_type_template_id_70450447_render = function () {
45354
46962
  1
45355
46963
  )
45356
46964
  }
45357
- var mainvue_type_template_id_70450447_staticRenderFns = []
45358
- mainvue_type_template_id_70450447_render._withStripped = true
46965
+ var mainvue_type_template_id_1b76299b_staticRenderFns = []
46966
+ mainvue_type_template_id_1b76299b_render._withStripped = true
45359
46967
 
45360
46968
 
45361
- // CONCATENATED MODULE: ./packages/mainComp/src/main.vue?vue&type=template&id=70450447&
46969
+ // CONCATENATED MODULE: ./packages/mainComp/src/main.vue?vue&type=template&id=1b76299b&
45362
46970
 
45363
46971
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/mainComp/src/userinfo.vue?vue&type=template&id=5902ef8f&
45364
46972
  var userinfovue_type_template_id_5902ef8f_render = function () {
@@ -45682,7 +47290,7 @@ userinfovue_type_template_id_5902ef8f_render._withStripped = true
45682
47290
  var _this4 = this;
45683
47291
 
45684
47292
  utils_util["a" /* default */].ajax({
45685
- url: api["Nb" /* updateUserInfo */],
47293
+ url: api["Mb" /* updateUserInfo */],
45686
47294
  params: {
45687
47295
  email: this.values.email,
45688
47296
  officeTel: this.values.officetel,
@@ -45720,7 +47328,7 @@ userinfovue_type_template_id_5902ef8f_render._withStripped = true
45720
47328
  var notify = _this4.values.notify.sort().join(',');
45721
47329
  if (notify != _this4.notify.split(',').sort().join(',')) {
45722
47330
  utils_util["a" /* default */].ajax({
45723
- url: api["Mb" /* updateUserCustomInfo */],
47331
+ url: api["Lb" /* updateUserCustomInfo */],
45724
47332
  params: {
45725
47333
  notify: notify
45726
47334
  }
@@ -46726,13 +48334,10 @@ async_componentvue_type_template_id_94f6532a_scoped_true_render._withStripped =
46726
48334
 
46727
48335
  // CONCATENATED MODULE: ./packages/mainComp/src/async-component/index.vue?vue&type=template&id=94f6532a&scoped=true&
46728
48336
 
46729
- // EXTERNAL MODULE: external "runtime-import"
46730
- var external_runtime_import_ = __webpack_require__(12);
46731
-
46732
48337
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/mainComp/src/async-component/index.vue?vue&type=script&lang=js&
46733
48338
 
46734
48339
 
46735
- function async_componentvue_type_script_lang_js_asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; }
48340
+ function src_async_componentvue_type_script_lang_js_asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; }
46736
48341
 
46737
48342
  //
46738
48343
  //
@@ -46749,7 +48354,7 @@ function async_componentvue_type_script_lang_js_asyncToGenerator(fn) { return fu
46749
48354
 
46750
48355
 
46751
48356
 
46752
- /* harmony default export */ var async_componentvue_type_script_lang_js_ = ({
48357
+ /* harmony default export */ var mainComp_src_async_componentvue_type_script_lang_js_ = ({
46753
48358
  name: 'AsyncComponent',
46754
48359
  inheritAttrs: true,
46755
48360
  props: {
@@ -46777,7 +48382,7 @@ function async_componentvue_type_script_lang_js_asyncToGenerator(fn) { return fu
46777
48382
  var _this = this;
46778
48383
 
46779
48384
  var url = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
46780
- return async_componentvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee() {
48385
+ return src_async_componentvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee() {
46781
48386
  var catchComponent, comp;
46782
48387
  return regenerator_default.a.wrap(function _callee$(_context) {
46783
48388
  while (1) {
@@ -46857,7 +48462,7 @@ function async_componentvue_type_script_lang_js_asyncToGenerator(fn) { return fu
46857
48462
  }
46858
48463
  });
46859
48464
  // CONCATENATED MODULE: ./packages/mainComp/src/async-component/index.vue?vue&type=script&lang=js&
46860
- /* harmony default export */ var src_async_componentvue_type_script_lang_js_ = (async_componentvue_type_script_lang_js_);
48465
+ /* harmony default export */ var packages_mainComp_src_async_componentvue_type_script_lang_js_ = (mainComp_src_async_componentvue_type_script_lang_js_);
46861
48466
  // CONCATENATED MODULE: ./packages/mainComp/src/async-component/index.vue
46862
48467
 
46863
48468
 
@@ -46866,8 +48471,8 @@ function async_componentvue_type_script_lang_js_asyncToGenerator(fn) { return fu
46866
48471
 
46867
48472
  /* normalize component */
46868
48473
 
46869
- var async_component_component = normalizeComponent(
46870
- src_async_componentvue_type_script_lang_js_,
48474
+ var src_async_component_component = normalizeComponent(
48475
+ packages_mainComp_src_async_componentvue_type_script_lang_js_,
46871
48476
  async_componentvue_type_template_id_94f6532a_scoped_true_render,
46872
48477
  async_componentvue_type_template_id_94f6532a_scoped_true_staticRenderFns,
46873
48478
  false,
@@ -46877,7 +48482,7 @@ var async_component_component = normalizeComponent(
46877
48482
 
46878
48483
  )
46879
48484
 
46880
- /* harmony default export */ var async_component = (async_component_component.exports);
48485
+ /* harmony default export */ var src_async_component = (src_async_component_component.exports);
46881
48486
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/mainComp/src/main.vue?vue&type=script&lang=js&
46882
48487
  var mainComp_src_mainvue_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; };
46883
48488
 
@@ -47135,7 +48740,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
47135
48740
  userinfo: src_userinfo,
47136
48741
  settings: src_settings,
47137
48742
  message: mainComp_src_message,
47138
- AsyncComponent: async_component,
48743
+ AsyncComponent: src_async_component,
47139
48744
  notice: src_notice
47140
48745
  },
47141
48746
  props: {
@@ -47450,10 +49055,10 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
47450
49055
  showMenu: true,
47451
49056
  props: {},
47452
49057
  menuType: '',
49058
+ customMenu: [],
47453
49059
  //是否首次加载
47454
49060
  isDefault: true,
47455
49061
  reset: true,
47456
- customMenu: [],
47457
49062
  isKeepAlive: this.keepAlive,
47458
49063
  routerKey: '',
47459
49064
  defaultwjprops: {}
@@ -47618,7 +49223,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
47618
49223
  return;
47619
49224
  }
47620
49225
  utils_util["a" /* default */].ajax({
47621
- url: api["Mb" /* updateUserCustomInfo */],
49226
+ url: api["Lb" /* updateUserCustomInfo */],
47622
49227
  params: { color: escape(color.toLowerCase()) },
47623
49228
  data: { color: escape(color.toLowerCase()) }
47624
49229
  }).then(function (res) {
@@ -48602,7 +50207,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
48602
50207
  //初始化weosocket
48603
50208
  //初始化weosocket
48604
50209
  if (!this.websocket) {
48605
- var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Sb" /* wss */];
50210
+ var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Rb" /* wss */];
48606
50211
  this.websocket = new external_sockjs_client_default.a(url);
48607
50212
  }
48608
50213
 
@@ -48617,7 +50222,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
48617
50222
  client.connect({}, function () {
48618
50223
  //localStorage.setItem("socket",true);
48619
50224
  //订阅服务端的
48620
- client.subscribe(api["Jb" /* topic */], function (response) {
50225
+ client.subscribe(api["Ib" /* topic */], function (response) {
48621
50226
  var res = JSON.parse(response.body);
48622
50227
  var data = res.data;
48623
50228
  for (var i in data) {
@@ -48760,8 +50365,8 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
48760
50365
 
48761
50366
  var mainComp_src_main_component = normalizeComponent(
48762
50367
  packages_mainComp_src_mainvue_type_script_lang_js_,
48763
- mainvue_type_template_id_70450447_render,
48764
- mainvue_type_template_id_70450447_staticRenderFns,
50368
+ mainvue_type_template_id_1b76299b_render,
50369
+ mainvue_type_template_id_1b76299b_staticRenderFns,
48765
50370
  false,
48766
50371
  null,
48767
50372
  null,
@@ -50641,7 +52246,7 @@ mainvue_type_template_id_29c1659e_render._withStripped = true
50641
52246
  // CONCATENATED MODULE: ./packages/player/src/main.vue?vue&type=template&id=29c1659e&
50642
52247
 
50643
52248
  // EXTERNAL MODULE: external "video.js"
50644
- var external_video_js_ = __webpack_require__(8);
52249
+ var external_video_js_ = __webpack_require__(9);
50645
52250
  var external_video_js_default = /*#__PURE__*/__webpack_require__.n(external_video_js_);
50646
52251
 
50647
52252
  // EXTERNAL MODULE: external "video.js/dist/lang/zh-CN.json"
@@ -51816,7 +53421,7 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
51816
53421
  getData: function getData(sysCode, param, reload) {
51817
53422
  var _this3 = this;
51818
53423
 
51819
- if (!this.ajax || !this.isNoParamRequest && Object.keys(this.param).length == 0) {
53424
+ if (!reload && (!this.ajax || !this.isNoParamRequest && Object.keys(this.param).length == 0)) {
51820
53425
  return false;
51821
53426
  }
51822
53427
  var params = {};
@@ -51956,8 +53561,8 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
51956
53561
  }
51957
53562
  return '';
51958
53563
  },
51959
- reload: function reload(param) {
51960
- this.getData(null, param, true);
53564
+ reload: function reload() {
53565
+ this.getData(arguments);
51961
53566
  },
51962
53567
  handleExpand: function handleExpand(data, node) {
51963
53568
  if (this.onExpand) {
@@ -56581,8 +58186,8 @@ switch_src_main.install = function (Vue) {
56581
58186
  };
56582
58187
 
56583
58188
  /* harmony default export */ var packages_switch = (switch_src_main);
56584
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tabs/src/main.vue?vue&type=template&id=d0a48ac2&
56585
- var mainvue_type_template_id_d0a48ac2_render = function () {
58189
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tabs/src/main.vue?vue&type=template&id=4e5632ac&
58190
+ var mainvue_type_template_id_4e5632ac_render = function () {
56586
58191
  var _vm = this
56587
58192
  var _h = _vm.$createElement
56588
58193
  var _c = _vm._self._c || _h
@@ -57954,7 +59559,10 @@ var mainvue_type_template_id_d0a48ac2_render = function () {
57954
59559
  contents.type ===
57955
59560
  "flowList",
57956
59561
  },
57957
- attrs: { display: show },
59562
+ attrs: {
59563
+ zoom: _vm.zoom,
59564
+ display: show,
59565
+ },
57958
59566
  },
57959
59567
  "es-data-table",
57960
59568
  _vm.handleExclAttribute({
@@ -58176,11 +59784,11 @@ var mainvue_type_template_id_d0a48ac2_render = function () {
58176
59784
  2
58177
59785
  )
58178
59786
  }
58179
- var mainvue_type_template_id_d0a48ac2_staticRenderFns = []
58180
- mainvue_type_template_id_d0a48ac2_render._withStripped = true
59787
+ var mainvue_type_template_id_4e5632ac_staticRenderFns = []
59788
+ mainvue_type_template_id_4e5632ac_render._withStripped = true
58181
59789
 
58182
59790
 
58183
- // CONCATENATED MODULE: ./packages/tabs/src/main.vue?vue&type=template&id=d0a48ac2&
59791
+ // CONCATENATED MODULE: ./packages/tabs/src/main.vue?vue&type=template&id=4e5632ac&
58184
59792
 
58185
59793
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/tabs/src/main.vue?vue&type=script&lang=js&
58186
59794
  //
@@ -58800,6 +60408,7 @@ mainvue_type_template_id_d0a48ac2_render._withStripped = true
58800
60408
  //
58801
60409
  //
58802
60410
  //
60411
+ //
58803
60412
 
58804
60413
 
58805
60414
  /* harmony default export */ var tabs_src_mainvue_type_script_lang_js_ = ({
@@ -58944,8 +60553,8 @@ mainvue_type_template_id_d0a48ac2_render._withStripped = true
58944
60553
 
58945
60554
  var tabs_src_main_component = normalizeComponent(
58946
60555
  packages_tabs_src_mainvue_type_script_lang_js_,
58947
- mainvue_type_template_id_d0a48ac2_render,
58948
- mainvue_type_template_id_d0a48ac2_staticRenderFns,
60556
+ mainvue_type_template_id_4e5632ac_render,
60557
+ mainvue_type_template_id_4e5632ac_staticRenderFns,
58949
60558
  false,
58950
60559
  null,
58951
60560
  null,
@@ -61177,8 +62786,8 @@ toolbar_src_main.install = function (Vue) {
61177
62786
  };
61178
62787
 
61179
62788
  /* harmony default export */ var packages_toolbar = (toolbar_src_main);
61180
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=template&id=10591fe4&
61181
- var tablevue_type_template_id_10591fe4_render = function () {
62789
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=template&id=71bfdbb8&
62790
+ var tablevue_type_template_id_71bfdbb8_render = function () {
61182
62791
  var _vm = this
61183
62792
  var _h = _vm.$createElement
61184
62793
  var _c = _vm._self._c || _h
@@ -61950,7 +63559,126 @@ var tablevue_type_template_id_10591fe4_render = function () {
61950
63559
  "model[item.name]",
61951
63560
  },
61952
63561
  },
61953
- "es-date-picker",
63562
+ "es-date-picker",
63563
+ _vm.handleExclAttribute(
63564
+ {
63565
+ data: item,
63566
+ attrs:
63567
+ "label",
63568
+ }
63569
+ ),
63570
+ false
63571
+ )
63572
+ )
63573
+ : item.type ==
63574
+ "attachment" ||
63575
+ item.type == "upload"
63576
+ ? _c(
63577
+ "es-upload",
63578
+ _vm._b(
63579
+ {
63580
+ attrs: {
63581
+ ownId:
63582
+ item.ownId ||
63583
+ _vm.models
63584
+ .id,
63585
+ readonly:
63586
+ _vm.readonly
63587
+ ? _vm.readonly
63588
+ : item.readonly,
63589
+ rules:
63590
+ item.rules,
63591
+ btnSize:
63592
+ "small",
63593
+ },
63594
+ on: {
63595
+ change:
63596
+ function (
63597
+ val
63598
+ ) {
63599
+ _vm.handleChange(
63600
+ item,
63601
+ val
63602
+ )
63603
+ },
63604
+ },
63605
+ model: {
63606
+ value:
63607
+ _vm.model[
63608
+ item.name
63609
+ ],
63610
+ callback:
63611
+ function (
63612
+ $$v
63613
+ ) {
63614
+ _vm.$set(
63615
+ _vm.model,
63616
+ item.name,
63617
+ $$v
63618
+ )
63619
+ },
63620
+ expression:
63621
+ "model[item.name]",
63622
+ },
63623
+ },
63624
+ "es-upload",
63625
+ _vm.handleExclAttribute(
63626
+ {
63627
+ data: item,
63628
+ attrs: [
63629
+ "value",
63630
+ "ownId",
63631
+ ],
63632
+ }
63633
+ ),
63634
+ false
63635
+ )
63636
+ )
63637
+ : item.type ==
63638
+ "selector"
63639
+ ? _c(
63640
+ "es-selector",
63641
+ _vm._b(
63642
+ {
63643
+ attrs: {
63644
+ readonly:
63645
+ _vm.readonly
63646
+ ? _vm.readonly
63647
+ : item.readonly,
63648
+ plain:
63649
+ item.plain,
63650
+ },
63651
+ on: {
63652
+ change:
63653
+ function (
63654
+ val
63655
+ ) {
63656
+ _vm.handleChange(
63657
+ item,
63658
+ val
63659
+ )
63660
+ },
63661
+ },
63662
+ model: {
63663
+ value:
63664
+ _vm.model[
63665
+ item.name
63666
+ ],
63667
+ callback:
63668
+ function (
63669
+ $$v
63670
+ ) {
63671
+ _vm.$set(
63672
+ _vm.model,
63673
+ item.name,
63674
+ $$v
63675
+ )
63676
+ },
63677
+ expression:
63678
+ "model[item.name]",
63679
+ },
63680
+ },
63681
+ "es-selector",
61954
63682
  _vm.handleExclAttribute(
61955
63683
  {
61956
63684
  data: item,
@@ -61961,26 +63689,20 @@ var tablevue_type_template_id_10591fe4_render = function () {
61961
63689
  false
61962
63690
  )
61963
63691
  )
61964
- : item.type ==
61965
- "attachment" ||
61966
- item.type == "upload"
63692
+ : item.type === "icon"
61967
63693
  ? _c(
61968
- "es-upload",
63694
+ "es-icon",
61969
63695
  _vm._b(
61970
63696
  {
61971
63697
  attrs: {
61972
- ownId:
61973
- item.ownId ||
61974
- _vm.models
61975
- .id,
63698
+ plain:
63699
+ item.plain ||
63700
+ item.name ===
63701
+ undefined,
61976
63702
  readonly:
61977
63703
  _vm.readonly
61978
63704
  ? _vm.readonly
61979
63705
  : item.readonly,
61980
- rules:
61981
- item.rules,
61982
- btnSize:
61983
- "small",
61984
63706
  },
61985
63707
  on: {
61986
63708
  change:
@@ -61995,7 +63717,7 @@ var tablevue_type_template_id_10591fe4_render = function () {
61995
63717
  },
61996
63718
  model: {
61997
63719
  value:
61998
- _vm.model[
63720
+ _vm.models[
61999
63721
  item.name
62000
63722
  ],
62001
63723
  callback:
@@ -62003,83 +63725,27 @@ var tablevue_type_template_id_10591fe4_render = function () {
62003
63725
  $$v
62004
63726
  ) {
62005
63727
  _vm.$set(
62006
- _vm.model,
63728
+ _vm.models,
62007
63729
  item.name,
62008
63730
  $$v
62009
63731
  )
62010
63732
  },
62011
63733
  expression:
62012
- "model[item.name]",
63734
+ "models[item.name]",
62013
63735
  },
62014
63736
  },
62015
- "es-upload",
63737
+ "es-icon",
62016
63738
  _vm.handleExclAttribute(
62017
63739
  {
62018
63740
  data: item,
62019
63741
  attrs: [
62020
63742
  "value",
62021
- "ownId",
62022
63743
  ],
62023
63744
  }
62024
63745
  ),
62025
63746
  false
62026
63747
  )
62027
63748
  )
62028
- : item.type ==
62029
- "selector"
62030
- ? _c(
62031
- "es-selector",
62032
- _vm._b(
62033
- {
62034
- attrs: {
62035
- readonly:
62036
- _vm.readonly
62037
- ? _vm.readonly
62038
- : item.readonly,
62039
- plain:
62040
- item.plain,
62041
- },
62042
- on: {
62043
- change:
62044
- function (
62045
- val
62046
- ) {
62047
- _vm.handleChange(
62048
- item,
62049
- val
62050
- )
62051
- },
62052
- },
62053
- model: {
62054
- value:
62055
- _vm.model[
62056
- item.name
62057
- ],
62058
- callback:
62059
- function (
62060
- $$v
62061
- ) {
62062
- _vm.$set(
62063
- _vm.model,
62064
- item.name,
62065
- $$v
62066
- )
62067
- },
62068
- expression:
62069
- "model[item.name]",
62070
- },
62071
- },
62072
- "es-selector",
62073
- _vm.handleExclAttribute(
62074
- {
62075
- data: item,
62076
- attrs:
62077
- "label",
62078
- }
62079
- ),
62080
- false
62081
- )
62082
- )
62083
63749
  : _c(
62084
63750
  "es-input",
62085
63751
  _vm._b(
@@ -62688,6 +64354,69 @@ var tablevue_type_template_id_10591fe4_render = function () {
62688
64354
  )
62689
64355
  : _vm._e(),
62690
64356
  ]
64357
+ : inline.type ===
64358
+ "icon"
64359
+ ? _c(
64360
+ "es-icon",
64361
+ _vm._b(
64362
+ {
64363
+ attrs:
64364
+ {
64365
+ plain:
64366
+ inline.plain ||
64367
+ inline.name ===
64368
+ undefined,
64369
+ readonly:
64370
+ _vm.readonly
64371
+ ? _vm.readonly
64372
+ : inline.readonly,
64373
+ },
64374
+ on: {
64375
+ change:
64376
+ function (
64377
+ val
64378
+ ) {
64379
+ _vm.handleChange(
64380
+ inline,
64381
+ val
64382
+ )
64383
+ },
64384
+ },
64385
+ model:
64386
+ {
64387
+ value:
64388
+ _vm
64389
+ .models[
64390
+ inline
64391
+ .name
64392
+ ],
64393
+ callback:
64394
+ function (
64395
+ $$v
64396
+ ) {
64397
+ _vm.$set(
64398
+ _vm.models,
64399
+ inline.name,
64400
+ $$v
64401
+ )
64402
+ },
64403
+ expression:
64404
+ "models[inline.name]",
64405
+ },
64406
+ },
64407
+ "es-icon",
64408
+ _vm.handleExclAttribute(
64409
+ {
64410
+ data: inline,
64411
+ attrs:
64412
+ [
64413
+ "value",
64414
+ ],
64415
+ }
64416
+ ),
64417
+ false
64418
+ )
64419
+ )
62691
64420
  : _c(
62692
64421
  "es-input",
62693
64422
  _vm._b(
@@ -63195,6 +64924,80 @@ var tablevue_type_template_id_10591fe4_render = function () {
63195
64924
  false
63196
64925
  )
63197
64926
  )
64927
+ : item
64928
+ .inline
64929
+ .type ===
64930
+ "icon"
64931
+ ? _c(
64932
+ "es-icon",
64933
+ _vm._b(
64934
+ {
64935
+ attrs:
64936
+ {
64937
+ plain:
64938
+ item
64939
+ .inline
64940
+ .plain ||
64941
+ item
64942
+ .inline
64943
+ .name ===
64944
+ undefined,
64945
+ readonly:
64946
+ _vm.readonly
64947
+ ? _vm.readonly
64948
+ : item
64949
+ .inline
64950
+ .readonly,
64951
+ },
64952
+ on: {
64953
+ change:
64954
+ function (
64955
+ val
64956
+ ) {
64957
+ _vm.handleChange(
64958
+ item.inline,
64959
+ val
64960
+ )
64961
+ },
64962
+ },
64963
+ model:
64964
+ {
64965
+ value:
64966
+ _vm
64967
+ .models[
64968
+ item
64969
+ .inline
64970
+ .name
64971
+ ],
64972
+ callback:
64973
+ function (
64974
+ $$v
64975
+ ) {
64976
+ _vm.$set(
64977
+ _vm.models,
64978
+ item
64979
+ .inline
64980
+ .name,
64981
+ $$v
64982
+ )
64983
+ },
64984
+ expression:
64985
+ "models[item.inline.name]",
64986
+ },
64987
+ },
64988
+ "es-icon",
64989
+ _vm.handleExclAttribute(
64990
+ {
64991
+ data: item.inline,
64992
+ attrs:
64993
+ [
64994
+ "value",
64995
+ ],
64996
+ }
64997
+ ),
64998
+ false
64999
+ )
65000
+ )
63198
65001
  : _c(
63199
65002
  "es-input",
63200
65003
  _vm._b(
@@ -63518,11 +65321,11 @@ var tablevue_type_template_id_10591fe4_render = function () {
63518
65321
  2
63519
65322
  )
63520
65323
  }
63521
- var tablevue_type_template_id_10591fe4_staticRenderFns = []
63522
- tablevue_type_template_id_10591fe4_render._withStripped = true
65324
+ var tablevue_type_template_id_71bfdbb8_staticRenderFns = []
65325
+ tablevue_type_template_id_71bfdbb8_render._withStripped = true
63523
65326
 
63524
65327
 
63525
- // CONCATENATED MODULE: ./packages/form/src/table.vue?vue&type=template&id=10591fe4&
65328
+ // CONCATENATED MODULE: ./packages/form/src/table.vue?vue&type=template&id=71bfdbb8&
63526
65329
 
63527
65330
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=script&lang=js&
63528
65331
  //
@@ -64446,6 +66249,59 @@ tablevue_type_template_id_10591fe4_render._withStripped = true
64446
66249
  //
64447
66250
  //
64448
66251
  //
66252
+ //
66253
+ //
66254
+ //
66255
+ //
66256
+ //
66257
+ //
66258
+ //
66259
+ //
66260
+ //
66261
+ //
66262
+ //
66263
+ //
66264
+ //
66265
+ //
66266
+ //
66267
+ //
66268
+ //
66269
+ //
66270
+ //
66271
+ //
66272
+ //
66273
+ //
66274
+ //
66275
+ //
66276
+ //
66277
+ //
66278
+ //
66279
+ //
66280
+ //
66281
+ //
66282
+ //
66283
+ //
66284
+ //
66285
+ //
66286
+ //
66287
+ //
66288
+ //
66289
+ //
66290
+ //
66291
+ //
66292
+ //
66293
+ //
66294
+ //
66295
+ //
66296
+ //
66297
+ //
66298
+ //
66299
+ //
66300
+ //
66301
+ //
66302
+ //
66303
+ //
66304
+ //
64449
66305
 
64450
66306
 
64451
66307
 
@@ -64716,8 +66572,8 @@ tablevue_type_template_id_10591fe4_render._withStripped = true
64716
66572
 
64717
66573
  var form_src_table_component = normalizeComponent(
64718
66574
  packages_form_src_tablevue_type_script_lang_js_,
64719
- tablevue_type_template_id_10591fe4_render,
64720
- tablevue_type_template_id_10591fe4_staticRenderFns,
66575
+ tablevue_type_template_id_71bfdbb8_render,
66576
+ tablevue_type_template_id_71bfdbb8_staticRenderFns,
64721
66577
  false,
64722
66578
  null,
64723
66579
  null,
@@ -64734,8 +66590,8 @@ form_src_table.install = function (Vue) {
64734
66590
  };
64735
66591
 
64736
66592
  /* harmony default export */ var table_form = (form_src_table);
64737
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=template&id=757f82dc&
64738
- var mainvue_type_template_id_757f82dc_render = function () {
66593
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=template&id=386254b4&
66594
+ var mainvue_type_template_id_386254b4_render = function () {
64739
66595
  var _vm = this
64740
66596
  var _h = _vm.$createElement
64741
66597
  var _c = _vm._self._c || _h
@@ -65068,11 +66924,11 @@ var mainvue_type_template_id_757f82dc_render = function () {
65068
66924
  2
65069
66925
  )
65070
66926
  }
65071
- var mainvue_type_template_id_757f82dc_staticRenderFns = []
65072
- mainvue_type_template_id_757f82dc_render._withStripped = true
66927
+ var mainvue_type_template_id_386254b4_staticRenderFns = []
66928
+ mainvue_type_template_id_386254b4_render._withStripped = true
65073
66929
 
65074
66930
 
65075
- // CONCATENATED MODULE: ./packages/upload/src/main.vue?vue&type=template&id=757f82dc&
66931
+ // CONCATENATED MODULE: ./packages/upload/src/main.vue?vue&type=template&id=386254b4&
65076
66932
 
65077
66933
  // CONCATENATED MODULE: ./packages/upload/src/picture.js
65078
66934
  /* harmony default export */ var picture = ({
@@ -65523,7 +67379,7 @@ var mainvue_type_script_lang_js_props;
65523
67379
  return this.showFileList;
65524
67380
  },
65525
67381
  url: function url() {
65526
- var url = this.action ? this.action : this.portrait || !this.multiple ? api["Pb" /* uploadOnlyOne */] : api["Rb" /* uploads */];
67382
+ var url = this.action ? this.action : this.portrait || !this.multiple ? api["Ob" /* uploadOnlyOne */] : api["Qb" /* uploads */];
65527
67383
  return url.indexOf(this.host) > -1 ? url : this.host + url;
65528
67384
  },
65529
67385
  excludes: function excludes() {
@@ -65824,19 +67680,20 @@ var mainvue_type_script_lang_js_props;
65824
67680
  var flag = false;
65825
67681
  var size = this._size;
65826
67682
  var text = '单个附件';
67683
+ var se = Math.ceil(file.size / 1024 * 100) / 100;
65827
67684
  if (this._size === 0 && this._totalSize === 0) {
65828
67685
  flag = true;
65829
67686
  } else if (this._size > 0 && this._totalSize === 0) {
65830
- flag = file.size < this._size;
67687
+ flag = se < this._size;
65831
67688
  size = this._size;
65832
67689
  text = '单个附件';
65833
67690
  } else if (this._size === 0 && this._totalSize > 0) {
65834
- flag = this.filesTotalSize + file.size < this._totalSize;
67691
+ flag = this.filesTotalSize + se < this._totalSize;
65835
67692
  size = this._totalSize;
65836
67693
  text = '附件总';
65837
67694
  } else {
65838
- flag = file.size < this._size && this.filesTotalSize + file.size < this._totalSize;
65839
- if (file.size < this._size) {
67695
+ flag = se < this._size && this.filesTotalSize + se < this._totalSize;
67696
+ if (se < this._size) {
65840
67697
  size = this._size;
65841
67698
  text = '单个附件';
65842
67699
  } else {
@@ -65845,7 +67702,7 @@ var mainvue_type_script_lang_js_props;
65845
67702
  }
65846
67703
  }
65847
67704
  if (flag) {
65848
- this.filesTotalSize += file.size;
67705
+ this.filesTotalSize += se;
65849
67706
  } else {
65850
67707
  this.$message.error('\u4E0A\u4F20' + text + '\u5927\u5C0F\u4E0D\u80FD\u8D85\u8FC7' + size + 'KB!');
65851
67708
  }
@@ -65914,7 +67771,7 @@ var mainvue_type_script_lang_js_props;
65914
67771
  }
65915
67772
  },
65916
67773
  handleDownloads: function handleDownloads() {
65917
- var url = typeof this.downloads === 'string' ? this.downloads : api["Ob" /* uploadDownloads */];
67774
+ var url = typeof this.downloads === 'string' ? this.downloads : api["Nb" /* uploadDownloads */];
65918
67775
  utils_util["a" /* default */].win.open(this.host + url + '?ownId=' + this.ownId + '&code=' + this.code + (this.extendCode ? '&extendCode=' + this.extendCode : ''));
65919
67776
  },
65920
67777
  handleDownload: function handleDownload(file) {
@@ -65954,7 +67811,7 @@ var mainvue_type_script_lang_js_props;
65954
67811
  ids = ids.join(',');
65955
67812
  utils_util["a" /* default */].ajax({
65956
67813
  method: this.method,
65957
- url: api["Qb" /* uploadSort */],
67814
+ url: api["Pb" /* uploadSort */],
65958
67815
  data: {
65959
67816
  ids: ids
65960
67817
  },
@@ -66051,8 +67908,8 @@ var mainvue_type_script_lang_js_props;
66051
67908
 
66052
67909
  var upload_src_main_component = normalizeComponent(
66053
67910
  packages_upload_src_mainvue_type_script_lang_js_,
66054
- mainvue_type_template_id_757f82dc_render,
66055
- mainvue_type_template_id_757f82dc_staticRenderFns,
67911
+ mainvue_type_template_id_386254b4_render,
67912
+ mainvue_type_template_id_386254b4_staticRenderFns,
66056
67913
  false,
66057
67914
  null,
66058
67915
  null,
@@ -66514,7 +68371,8 @@ wxlogin_src_main.install = function (Vue) {
66514
68371
 
66515
68372
 
66516
68373
 
66517
- var components = [packages_button, button_group, checkbox_group, card, cascader, clients, data_table, data_table_form, date_picker, packages_dialog, enterprise, error_page, packages_form, packages_flow, flow_group, flow_list, handle_user, packages_handler, packages_input, input_number, packages_label, login, packages_main, mainComp, menu, nav, packages_notify, pagination, packages_page, player, qr_code, radio_group, packages_select, select_ganged, selector, selector_panel, packages_sizer, steps, packages_switch, packages_tabs, tabs_panel, tips, packages_tree, tree_group, packages_toolbar, table_form, upload, wujie, wxlogin];
68374
+
68375
+ var components = [packages_button, button_group, checkbox_group, card, cascader, clients, data_table, data_table_form, date_picker, packages_dialog, enterprise, error_page, packages_form, packages_flow, flow_group, flow_list, handle_user, packages_handler, icon, packages_input, input_number, packages_label, login, packages_main, mainComp, menu, nav, packages_notify, pagination, packages_page, player, qr_code, radio_group, packages_select, select_ganged, selector, selector_panel, packages_sizer, steps, packages_switch, packages_tabs, tabs_panel, tips, packages_tree, tree_group, packages_toolbar, table_form, upload, wujie, wxlogin];
66518
68376
 
66519
68377
  var install = function install(Vue) {
66520
68378
  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
@@ -66529,7 +68387,7 @@ if (typeof window !== 'undefined' && window.Vue) {
66529
68387
  }
66530
68388
 
66531
68389
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
66532
- version: '0.4.20',
68390
+ version: '0.4.22',
66533
68391
  install: install,
66534
68392
  Button: packages_button,
66535
68393
  ButtonGroup: button_group,
@@ -66549,6 +68407,7 @@ if (typeof window !== 'undefined' && window.Vue) {
66549
68407
  FlowList: flow_list,
66550
68408
  HandleUser: handle_user,
66551
68409
  Handler: packages_handler,
68410
+ Icon: icon,
66552
68411
  Input: packages_input,
66553
68412
  InputNumber: input_number,
66554
68413
  Label: packages_label,