eoss-ui 0.7.89 → 0.7.91

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 (162) hide show
  1. package/lib/button-group.js +16 -0
  2. package/lib/button.js +18 -2
  3. package/lib/calogin.js +16 -0
  4. package/lib/checkbox-group.js +16 -0
  5. package/lib/data-table-form.js +16 -0
  6. package/lib/data-table.js +32 -19
  7. package/lib/date-picker.js +16 -0
  8. package/lib/dialog.js +27 -6
  9. package/lib/eoss-ui.common.js +769 -757
  10. package/lib/flow-group.js +30 -15
  11. package/lib/flow-list.js +112 -96
  12. package/lib/flow.js +178 -162
  13. package/lib/form.js +16 -0
  14. package/lib/handle-user.js +19 -3
  15. package/lib/handler.js +26 -10
  16. package/lib/icon.js +16 -0
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +16 -0
  19. package/lib/input.js +16 -0
  20. package/lib/login.js +16 -0
  21. package/lib/main.js +397 -386
  22. package/lib/nav.js +16 -0
  23. package/lib/page.js +16 -0
  24. package/lib/pagination.js +19 -3
  25. package/lib/player.js +16 -0
  26. package/lib/qr-code.js +16 -0
  27. package/lib/radio-group.js +16 -0
  28. package/lib/retrial-auth.js +22 -6
  29. package/lib/select-ganged.js +16 -0
  30. package/lib/select.js +18 -2
  31. package/lib/selector-panel.js +16 -0
  32. package/lib/selector.js +16 -0
  33. package/lib/sizer.js +16 -0
  34. package/lib/steps.js +16 -0
  35. package/lib/switch.js +16 -0
  36. package/lib/table-form.js +16 -0
  37. package/lib/tabs.js +16 -0
  38. package/lib/theme-chalk/index.css +1 -1
  39. package/lib/theme-chalk/login.css +1 -1
  40. package/lib/tips.js +16 -0
  41. package/lib/tree-group.js +19 -3
  42. package/lib/tree.js +16 -0
  43. package/lib/upload.js +16 -0
  44. package/lib/utils/util.js +16 -0
  45. package/lib/wujie.js +16 -0
  46. package/lib/wxlogin.js +16 -0
  47. package/package.json +1 -1
  48. package/packages/.DS_Store +0 -0
  49. package/packages/button/src/main.vue +2 -2
  50. package/packages/button-group/src/main.vue +346 -346
  51. package/packages/calogin/.DS_Store +0 -0
  52. package/packages/calogin/src/main.vue +412 -412
  53. package/packages/clients/src/main.vue +151 -151
  54. package/packages/data-table/src/column.vue +2 -5
  55. package/packages/data-table/src/main.vue +4 -3
  56. package/packages/date-picker/.DS_Store +0 -0
  57. package/packages/date-picker/src/.DS_Store +0 -0
  58. package/packages/dialog/.DS_Store +0 -0
  59. package/packages/dialog/src/main.vue +11 -4
  60. package/packages/flow/.DS_Store +0 -0
  61. package/packages/flow/src/.DS_Store +0 -0
  62. package/packages/flow/src/component/Circulate.vue +417 -417
  63. package/packages/flow/src/component/CommonOpinions.vue +376 -376
  64. package/packages/flow/src/component/CustomPreset.vue +324 -324
  65. package/packages/flow/src/component/FileList.vue +97 -97
  66. package/packages/flow/src/component/FreeCirculation.vue +244 -244
  67. package/packages/flow/src/component/Preset.vue +257 -257
  68. package/packages/flow/src/component/SendMsg.vue +242 -242
  69. package/packages/flow/src/component/SortFlow.vue +110 -110
  70. package/packages/flow/src/component/taskUnionExamine.vue +761 -761
  71. package/packages/flow/src/form.vue +123 -123
  72. package/packages/flow/src/freeStartFlow.vue +2855 -2855
  73. package/packages/flow/src/processForm.vue +1680 -1680
  74. package/packages/flow/src/processReject.vue +309 -309
  75. package/packages/flow/src/reset.vue +946 -946
  76. package/packages/flow/src/startTaskRead.vue +695 -695
  77. package/packages/flow/src/supervise.vue +159 -159
  78. package/packages/flow/src/table.vue +58 -58
  79. package/packages/flow-group/src/main.vue +728 -727
  80. package/packages/flow-list/.DS_Store +0 -0
  81. package/packages/flow-list/src/main.vue +2337 -2337
  82. package/packages/form/.DS_Store +0 -0
  83. package/packages/form/src/main.vue +3901 -3901
  84. package/packages/form/src/table.vue +1512 -1512
  85. package/packages/handle-user/src/main.vue +137 -137
  86. package/packages/handler/src/main.vue +10 -8
  87. package/packages/icon/.DS_Store +0 -0
  88. package/packages/icon/src/main.vue +104 -104
  89. package/packages/login/.DS_Store +0 -0
  90. package/packages/login/src/main.vue +2087 -2087
  91. package/packages/login/src/resetPassword.vue +557 -557
  92. package/packages/main/.DS_Store +0 -0
  93. package/packages/main/src/.DS_Store +0 -0
  94. package/packages/main/src/default/userinfo.vue +505 -503
  95. package/packages/main/src/main.vue +10 -15
  96. package/packages/main/src/public/online.vue +89 -89
  97. package/packages/main/src/public/search.vue +464 -464
  98. package/packages/main/src/public/settings.vue +273 -273
  99. package/packages/main/src/simplicity/apps.vue +388 -388
  100. package/packages/main/src/simplicity/avatar.vue +82 -82
  101. package/packages/main/src/simplicity/handler.vue +158 -158
  102. package/packages/main/src/simplicity/index.vue +2330 -2328
  103. package/packages/main/src/simplicity/menu-list.vue +135 -135
  104. package/packages/main/src/simplicity/message.vue +293 -293
  105. package/packages/main/src/simplicity/notice.vue +222 -222
  106. package/packages/main/src/simplicity/sub-menu.vue +276 -276
  107. package/packages/main/src/simplicity/user.vue +259 -259
  108. package/packages/main/src/simplicity/userinfo.vue +403 -401
  109. package/packages/main/src/simplicityTop/apps.vue +388 -388
  110. package/packages/main/src/simplicityTop/avatar.vue +82 -82
  111. package/packages/main/src/simplicityTop/handler.vue +215 -215
  112. package/packages/main/src/simplicityTop/index.vue +2620 -2618
  113. package/packages/main/src/simplicityTop/lists.vue +84 -84
  114. package/packages/main/src/simplicityTop/menu-list.vue +135 -135
  115. package/packages/main/src/simplicityTop/message.vue +293 -293
  116. package/packages/main/src/simplicityTop/notice.vue +222 -222
  117. package/packages/main/src/simplicityTop/router-page.vue +45 -45
  118. package/packages/main/src/simplicityTop/sub-menu.vue +274 -274
  119. package/packages/main/src/simplicityTop/user.vue +259 -259
  120. package/packages/main/src/simplicityTop/userinfo.vue +403 -401
  121. package/packages/menu/.DS_Store +0 -0
  122. package/packages/menu/src/main.vue +595 -595
  123. package/packages/nav/src/main.vue +351 -351
  124. package/packages/pagination/src/main.vue +1 -1
  125. package/packages/retrial-auth/src/main.vue +4 -4
  126. package/packages/select/.DS_Store +0 -0
  127. package/packages/select/src/main.vue +2 -2
  128. package/packages/selector/.DS_Store +0 -0
  129. package/packages/selector/src/main.vue +761 -761
  130. package/packages/selector-panel/.DS_Store +0 -0
  131. package/packages/selector-panel/src/main.vue +1036 -1036
  132. package/packages/selector-panel/src/selection.vue +174 -174
  133. package/packages/switch/src/main.vue +170 -170
  134. package/packages/theme-chalk/lib/index.css +1 -1
  135. package/packages/theme-chalk/lib/login.css +1 -1
  136. package/packages/theme-chalk/src/.DS_Store +0 -0
  137. package/packages/theme-chalk/src/data-table.scss +297 -297
  138. package/packages/theme-chalk/src/flow-list.scss +55 -55
  139. package/packages/theme-chalk/src/flow.scss +373 -373
  140. package/packages/theme-chalk/src/form.scss +501 -501
  141. package/packages/theme-chalk/src/handler.scss +148 -148
  142. package/packages/theme-chalk/src/icon.scss +3452 -3452
  143. package/packages/theme-chalk/src/login.scss +1006 -1006
  144. package/packages/theme-chalk/src/main.scss +664 -664
  145. package/packages/theme-chalk/src/menu.scss +224 -224
  146. package/packages/theme-chalk/src/selector.scss +114 -114
  147. package/packages/theme-chalk/src/simplicity-top.scss +1845 -1845
  148. package/packages/theme-chalk/src/simplicity.scss +1403 -1403
  149. package/packages/theme-chalk/src/tree.scss +165 -165
  150. package/packages/theme-chalk/src/upload.scss +172 -172
  151. package/packages/tips/src/main.vue +141 -141
  152. package/packages/toolbar/src/main.vue +430 -430
  153. package/packages/tree-group/src/main.vue +2 -1
  154. package/packages/upload/.DS_Store +0 -0
  155. package/packages/upload/src/main.vue +1344 -1344
  156. package/packages/wujie/src/main.vue +146 -146
  157. package/src/.DS_Store +0 -0
  158. package/src/config/api.js +348 -348
  159. package/src/index.js +163 -163
  160. package/src/utils/.DS_Store +0 -0
  161. package/src/utils/rules.js +18 -18
  162. package/src/utils/util.js +16 -0
@@ -253,7 +253,7 @@ module.exports = require("lodash");
253
253
 
254
254
  exports = module.exports = __webpack_require__(24)(false);
255
255
  // Module
256
- exports.push([module.i, "\n.es-setting-top-nav-side[data-v-1b15d77c]::before {\r\n content: '';\r\n display: block;\r\n position: absolute;\r\n left: 0;\r\n width: 8px;\r\n top: 10px;\r\n bottom: 0;\r\n z-index: 2;\r\n background-color: rgb(0, 80, 179);\n}\r\n", ""]);
256
+ exports.push([module.i, "\n.es-setting-top-nav-side[data-v-1b15d77c]::before {\n content: '';\n display: block;\n position: absolute;\n left: 0;\n width: 8px;\n top: 10px;\n bottom: 0;\n z-index: 2;\n background-color: rgb(0, 80, 179);\n}\n", ""]);
257
257
 
258
258
 
259
259
 
@@ -3198,6 +3198,21 @@ var getWeekday = function getWeekday(date) {
3198
3198
  // Adjust for JavaScript's day numbering (0 is Sunday, 1 is Monday, etc.)
3199
3199
  return adjustedDay === 0 ? 7 : adjustedDay;
3200
3200
  };
3201
+ /**
3202
+ * getWinTop
3203
+ * @desc 获取同域的top窗口
3204
+ * @param {object} [wind] - window对象
3205
+ * @return {Window} 同域的top窗口
3206
+ **/
3207
+ var getWinTop = function getWinTop(wind) {
3208
+ wind = wind ? wind : window.__WUJIE_RAW_WINDOW__ ? window.__WUJIE_RAW_WINDOW__ : window;
3209
+ try {
3210
+ wind.parent.document;
3211
+ return getWinTop(wind.parent);
3212
+ } catch (error) {
3213
+ return wind;
3214
+ }
3215
+ };
3201
3216
 
3202
3217
  /**
3203
3218
  * getZoom
@@ -4943,6 +4958,7 @@ var winTopOpen = function winTopOpen(config) {
4943
4958
  getTypeName: getTypeName,
4944
4959
  getValues: util_getValues,
4945
4960
  getWeekday: getWeekday,
4961
+ getWinTop: getWinTop,
4946
4962
  handlerUrl: util_handlerUrl,
4947
4963
  hasChars: hasChars,
4948
4964
  hasClass: hasClass,
@@ -5081,8 +5097,8 @@ var mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
5081
5097
  evt.preventDefault();
5082
5098
  var width = 0;
5083
5099
  var height = 0;
5084
- width = utils_util.win.top.screen.availWidth - 10;
5085
- height = utils_util.win.top.screen.availHeight - 60;
5100
+ width = utils_util.win.screen.availWidth - 10;
5101
+ height = utils_util.win.screen.availHeight - 60;
5086
5102
  var flag = true;
5087
5103
  if (this.esForm) {
5088
5104
  var params = utils_util.getParams({ url: this.link });
@@ -9738,8 +9754,8 @@ clients_src_main.install = function (Vue) {
9738
9754
  };
9739
9755
 
9740
9756
  /* harmony default export */ var clients = (clients_src_main);
9741
- // 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=ac23110e&
9742
- var mainvue_type_template_id_ac23110e_render = function () {
9757
+ // 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=0602cb50&
9758
+ var mainvue_type_template_id_0602cb50_render = function () {
9743
9759
  var _vm = this
9744
9760
  var _h = _vm.$createElement
9745
9761
  var _c = _vm._self._c || _h
@@ -10140,11 +10156,11 @@ var mainvue_type_template_id_ac23110e_render = function () {
10140
10156
  1
10141
10157
  )
10142
10158
  }
10143
- var mainvue_type_template_id_ac23110e_staticRenderFns = []
10144
- mainvue_type_template_id_ac23110e_render._withStripped = true
10159
+ var mainvue_type_template_id_0602cb50_staticRenderFns = []
10160
+ mainvue_type_template_id_0602cb50_render._withStripped = true
10145
10161
 
10146
10162
 
10147
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=ac23110e&
10163
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=0602cb50&
10148
10164
 
10149
10165
  // 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=271bb842&
10150
10166
  var childrenvue_type_template_id_271bb842_render = function () {
@@ -10202,8 +10218,8 @@ childrenvue_type_template_id_271bb842_render._withStripped = true
10202
10218
 
10203
10219
  // CONCATENATED MODULE: ./packages/data-table/src/children.vue?vue&type=template&id=271bb842&
10204
10220
 
10205
- // 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/column.vue?vue&type=template&id=466ae6f8&
10206
- var columnvue_type_template_id_466ae6f8_render = function () {
10221
+ // 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/column.vue?vue&type=template&id=6d109077&
10222
+ var columnvue_type_template_id_6d109077_render = function () {
10207
10223
  var _vm = this
10208
10224
  var _h = _vm.$createElement
10209
10225
  var _c = _vm._self._c || _h
@@ -11013,11 +11029,11 @@ var columnvue_type_template_id_466ae6f8_render = function () {
11013
11029
  2
11014
11030
  )
11015
11031
  }
11016
- var columnvue_type_template_id_466ae6f8_staticRenderFns = []
11017
- columnvue_type_template_id_466ae6f8_render._withStripped = true
11032
+ var columnvue_type_template_id_6d109077_staticRenderFns = []
11033
+ columnvue_type_template_id_6d109077_render._withStripped = true
11018
11034
 
11019
11035
 
11020
- // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=466ae6f8&
11036
+ // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=6d109077&
11021
11037
 
11022
11038
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=script&lang=js&
11023
11039
 
@@ -11668,7 +11684,6 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11668
11684
  },
11669
11685
  isForm: function isForm() {
11670
11686
  var type = this.type ? this.type.toLowerCase() : '';
11671
- console.log('type', type);
11672
11687
  var flag = this.form && ['input', 'text', 'textarea', 'checkbox', 'radio', 'select', 'handle', 'date', 'year', 'month', 'date', 'dates', 'week', 'datetime', 'datetimerange', 'daterange', 'monthrange', 'quarter', 'halfyear', 'switch', 'selector', 'ganged', 'number'].indexOf(type) > -1 || ['space', 'slot', 'component'].indexOf(type) > -1;
11673
11688
  return flag;
11674
11689
  },
@@ -11792,7 +11807,6 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11792
11807
  return Array.isArray(types) ? types.includes(type) : type == types;
11793
11808
  },
11794
11809
  getOptions: function getOptions(config) {
11795
- console.log('getOptions config', config);
11796
11810
  var option = config && config[this.field || this.prop];
11797
11811
  return option && (typeof option === 'undefined' ? 'undefined' : columnvue_type_script_lang_js_typeof(option)) == 'object' ? columnvue_type_script_lang_js_extends({}, this.formOption, option) : this.formOption;
11798
11812
  },
@@ -11811,9 +11825,8 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11811
11825
  var field = this.field || this.prop;
11812
11826
  var data = this.option;
11813
11827
  var str = '';
11814
- console.log('rows[field]', rows[field]);
11815
11828
  var column = rows[field] ? JSON.parse(JSON.stringify(rows[field])) : '';
11816
- if (column.includes(',')) {
11829
+ if (typeof column == 'string' && column.includes(',')) {
11817
11830
  column = column.split(',');
11818
11831
  }
11819
11832
  if (utils_util.isObject(column)) {
@@ -11964,8 +11977,8 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11964
11977
 
11965
11978
  var column_component = normalizeComponent(
11966
11979
  src_columnvue_type_script_lang_js_,
11967
- columnvue_type_template_id_466ae6f8_render,
11968
- columnvue_type_template_id_466ae6f8_staticRenderFns,
11980
+ columnvue_type_template_id_6d109077_render,
11981
+ columnvue_type_template_id_6d109077_staticRenderFns,
11969
11982
  false,
11970
11983
  null,
11971
11984
  null,
@@ -12521,7 +12534,7 @@ var data_table_src_mainvue_type_script_lang_js_extends = Object.assign || functi
12521
12534
 
12522
12535
 
12523
12536
 
12524
- var systemMode = utils_util.win.top.systemMode || utils_util.win.systemMode || 'default';
12537
+ var systemMode = utils_util.getWinTop().systemMode || utils_util.win.systemMode || 'default';
12525
12538
  var pageView = utils_util.getParams('pageView');
12526
12539
  /* harmony default export */ var data_table_src_mainvue_type_script_lang_js_ = ({
12527
12540
  name: 'EsDataTable',
@@ -13137,7 +13150,7 @@ var pageView = utils_util.getParams('pageView');
13137
13150
  },
13138
13151
  showEditPage: function showEditPage(val) {
13139
13152
  if (val === false) {
13140
- utils_util.win.top.refresh();
13153
+ utils_util.getwintop().refresh();
13141
13154
  }
13142
13155
  }
13143
13156
  },
@@ -13162,7 +13175,7 @@ var pageView = utils_util.getParams('pageView');
13162
13175
  }
13163
13176
  this.list.length && this.checkSelect(this.checked);
13164
13177
  this.resetHeight();
13165
- if (utils_util.win.top != utils_util.win.self) {
13178
+ if (utils_util.getwintop() != utils_util.win.self) {
13166
13179
  utils_util.win.onresize = Object(external_throttle_debounce_["throttle"])(500, this.resetHeight);
13167
13180
  }
13168
13181
  },
@@ -14024,8 +14037,8 @@ var pageView = utils_util.getParams('pageView');
14024
14037
 
14025
14038
  var data_table_src_main_component = normalizeComponent(
14026
14039
  packages_data_table_src_mainvue_type_script_lang_js_,
14027
- mainvue_type_template_id_ac23110e_render,
14028
- mainvue_type_template_id_ac23110e_staticRenderFns,
14040
+ mainvue_type_template_id_0602cb50_render,
14041
+ mainvue_type_template_id_0602cb50_staticRenderFns,
14029
14042
  false,
14030
14043
  null,
14031
14044
  null,
@@ -16162,8 +16175,8 @@ date_picker_src_main.install = function (Vue) {
16162
16175
  };
16163
16176
 
16164
16177
  /* harmony default export */ var date_picker = (date_picker_src_main);
16165
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=5430550f&
16166
- var mainvue_type_template_id_5430550f_render = function () {
16178
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=6356d186&
16179
+ var mainvue_type_template_id_6356d186_render = function () {
16167
16180
  var _vm = this
16168
16181
  var _h = _vm.$createElement
16169
16182
  var _c = _vm._self._c || _h
@@ -16677,11 +16690,11 @@ var mainvue_type_template_id_5430550f_render = function () {
16677
16690
  2
16678
16691
  )
16679
16692
  }
16680
- var mainvue_type_template_id_5430550f_staticRenderFns = []
16681
- mainvue_type_template_id_5430550f_render._withStripped = true
16693
+ var mainvue_type_template_id_6356d186_staticRenderFns = []
16694
+ mainvue_type_template_id_6356d186_render._withStripped = true
16682
16695
 
16683
16696
 
16684
- // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=5430550f&
16697
+ // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=6356d186&
16685
16698
 
16686
16699
  // EXTERNAL MODULE: external "wujie-vue2"
16687
16700
  var external_wujie_vue2_ = __webpack_require__(2);
@@ -16964,9 +16977,8 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
16964
16977
 
16965
16978
  var availWidth = 0;
16966
16979
  var availHeight = 0;
16967
- availWidth = utils_util.win.top.document.body.offsetWidth - 260;
16968
- availHeight = utils_util.win.top.document.body.offsetHeight - 60;
16969
- var mainvue_type_script_lang_js_systemMode = utils_util.win.top.systemMode || utils_util.win.systemMode || 'default';
16980
+ availWidth = utils_util.getWinTop().document.body.offsetWidth - 260;
16981
+ availHeight = utils_util.getWinTop().document.body.offsetHeight - 60;
16970
16982
  /* harmony default export */ var dialog_src_mainvue_type_script_lang_js_ = ({
16971
16983
  name: 'EsDialog',
16972
16984
  inheritAttrs: false,
@@ -16991,7 +17003,13 @@ var mainvue_type_script_lang_js_systemMode = utils_util.win.top.systemMode || ut
16991
17003
  props: {
16992
17004
  mode: {
16993
17005
  type: String,
16994
- default: mainvue_type_script_lang_js_systemMode
17006
+ default: function _default() {
17007
+ try {
17008
+ return utils_util.getWinTop().systemMode || utils_util.win.systemMode || 'default';
17009
+ } catch (e) {
17010
+ return utils_util.win.systemMode || 'default';
17011
+ }
17012
+ }
16995
17013
  },
16996
17014
  title: String,
16997
17015
  busEvent: String,
@@ -17247,8 +17265,8 @@ var mainvue_type_script_lang_js_systemMode = utils_util.win.top.systemMode || ut
17247
17265
 
17248
17266
  var dialog_src_main_component = normalizeComponent(
17249
17267
  packages_dialog_src_mainvue_type_script_lang_js_,
17250
- mainvue_type_template_id_5430550f_render,
17251
- mainvue_type_template_id_5430550f_staticRenderFns,
17268
+ mainvue_type_template_id_6356d186_render,
17269
+ mainvue_type_template_id_6356d186_staticRenderFns,
17252
17270
  false,
17253
17271
  null,
17254
17272
  null,
@@ -32154,21 +32172,21 @@ var CommonOpinionsvue_type_script_lang_js_components;
32154
32172
  return validSate;
32155
32173
  },
32156
32174
 
32157
- /**
32158
- * changeOpinion
32159
- * @desc:监听意见变化
32160
- * @author liufan
32161
- * @date 2022年10月28日
32175
+ /**
32176
+ * changeOpinion
32177
+ * @desc:监听意见变化
32178
+ * @author liufan
32179
+ * @date 2022年10月28日
32162
32180
  **/
32163
32181
  changeOpinion: function changeOpinion() {
32164
32182
  this.$emit('change', this.form.value);
32165
32183
  },
32166
32184
 
32167
- /**
32168
- * getCommonOpion
32169
- * @desc:获取意见
32170
- * @author liufan
32171
- * @date 2022年5月25日
32185
+ /**
32186
+ * getCommonOpion
32187
+ * @desc:获取意见
32188
+ * @author liufan
32189
+ * @date 2022年5月25日
32172
32190
  **/
32173
32191
  getCommonOpion: function getCommonOpion() {
32174
32192
  var _this = this;
@@ -32197,24 +32215,24 @@ var CommonOpinionsvue_type_script_lang_js_components;
32197
32215
  });
32198
32216
  },
32199
32217
 
32200
- /**
32201
- * upDate
32202
- * @desc:修改常用语
32203
- * @author liufan
32204
- * @param {Object} val 修改值
32205
- * @date 2022年5月25日
32218
+ /**
32219
+ * upDate
32220
+ * @desc:修改常用语
32221
+ * @author liufan
32222
+ * @param {Object} val 修改值
32223
+ * @date 2022年5月25日
32206
32224
  **/
32207
32225
  upDate: function upDate(val) {
32208
32226
  this.FormData.id = val.id;
32209
32227
  this.addVisible = true;
32210
32228
  },
32211
32229
 
32212
- /**
32213
- * selectChange
32214
- * @desc:常用语选择
32215
- * @author liufan
32216
- * @param {String} val 选中值
32217
- * @date 2022年5月25日
32230
+ /**
32231
+ * selectChange
32232
+ * @desc:常用语选择
32233
+ * @author liufan
32234
+ * @param {String} val 选中值
32235
+ * @date 2022年5月25日
32218
32236
  **/
32219
32237
  selectChange: function selectChange(val) {
32220
32238
  var _this2 = this;
@@ -32233,12 +32251,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
32233
32251
  });
32234
32252
  },
32235
32253
 
32236
- /**
32237
- * del
32238
- * @desc:删除常用语
32239
- * @author liufan
32240
- * @param {Object} val 删除的数据
32241
- * @date 2022年5月25日
32254
+ /**
32255
+ * del
32256
+ * @desc:删除常用语
32257
+ * @author liufan
32258
+ * @param {Object} val 删除的数据
32259
+ * @date 2022年5月25日
32242
32260
  **/
32243
32261
  del: function del(val) {
32244
32262
  var _this3 = this;
@@ -32280,12 +32298,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
32280
32298
  }).catch(function (e) {});
32281
32299
  },
32282
32300
 
32283
- /**
32284
- * submit
32285
- * @desc:新增/编辑意见保存
32286
- * @author liufan
32287
- * @param {Object} val 保存数据
32288
- * @date 2022年5月25日
32301
+ /**
32302
+ * submit
32303
+ * @desc:新增/编辑意见保存
32304
+ * @author liufan
32305
+ * @param {Object} val 保存数据
32306
+ * @date 2022年5月25日
32289
32307
  **/
32290
32308
  submit: function submit(val) {
32291
32309
  var _this4 = this;
@@ -36101,11 +36119,11 @@ var processFormvue_type_script_lang_js_components;
36101
36119
  });
36102
36120
  },
36103
36121
 
36104
- /**
36105
- * isMultiple
36106
- * @desc:是否多选
36107
- * @author liufan
36108
- * @date 2022年9月13日
36122
+ /**
36123
+ * isMultiple
36124
+ * @desc:是否多选
36125
+ * @author liufan
36126
+ * @date 2022年9月13日
36109
36127
  **/
36110
36128
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
36111
36129
  var multiple = false;
@@ -40318,11 +40336,11 @@ var resetvue_type_script_lang_js_components;
40318
40336
  });
40319
40337
  },
40320
40338
 
40321
- /**
40322
- * isMultiple
40323
- * @desc:是否多选
40324
- * @author liufan
40325
- * @date 2022年9月13日
40339
+ /**
40340
+ * isMultiple
40341
+ * @desc:是否多选
40342
+ * @author liufan
40343
+ * @date 2022年9月13日
40326
40344
  **/
40327
40345
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
40328
40346
  var multiple = false;
@@ -44911,11 +44929,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
44911
44929
  });
44912
44930
  },
44913
44931
 
44914
- /**
44915
- * saveInfo
44916
- * @desc:暂存
44917
- * @author liufan
44918
- * @date 2022年9月9日
44932
+ /**
44933
+ * saveInfo
44934
+ * @desc:暂存
44935
+ * @author liufan
44936
+ * @date 2022年9月9日
44919
44937
  **/
44920
44938
  saveInfo: function saveInfo(type, btn) {
44921
44939
  var _this6 = this;
@@ -44977,11 +44995,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
44977
44995
  });
44978
44996
  },
44979
44997
 
44980
- /**
44981
- * rejectBtn
44982
- * @desc:点击驳回
44983
- * @author liufan
44984
- * @date 2022年5月25日
44998
+ /**
44999
+ * rejectBtn
45000
+ * @desc:点击驳回
45001
+ * @author liufan
45002
+ * @date 2022年5月25日
44985
45003
  **/
44986
45004
  rejectBtn: function rejectBtn() {
44987
45005
  var _this8 = this;
@@ -44999,11 +45017,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
44999
45017
  }
45000
45018
  },
45001
45019
 
45002
- /**
45003
- * taskReadBtn
45004
- * @desc:点击分阅
45005
- * @author liufan
45006
- * @date 2022年5月25日
45020
+ /**
45021
+ * taskReadBtn
45022
+ * @desc:点击分阅
45023
+ * @author liufan
45024
+ * @date 2022年5月25日
45007
45025
  **/
45008
45026
  taskReadBtn: function taskReadBtn() {
45009
45027
  var _this9 = this;
@@ -45022,11 +45040,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45022
45040
  }
45023
45041
  },
45024
45042
 
45025
- /**
45026
- * getFind
45027
- * @desc:获取通知方式
45028
- * @author liufan
45029
- * @date 2022年5月25日
45043
+ /**
45044
+ * getFind
45045
+ * @desc:获取通知方式
45046
+ * @author liufan
45047
+ * @date 2022年5月25日
45030
45048
  **/
45031
45049
  getFind: function getFind() {
45032
45050
  var _this10 = this;
@@ -45081,12 +45099,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45081
45099
  });
45082
45100
  },
45083
45101
 
45084
- /**
45085
- * endFlows
45086
- * @desc:直接办结
45087
- * @author liufan
45088
- * @param {Object} res 直接办结数据
45089
- * @date 2022年5月25日
45102
+ /**
45103
+ * endFlows
45104
+ * @desc:直接办结
45105
+ * @author liufan
45106
+ * @param {Object} res 直接办结数据
45107
+ * @date 2022年5月25日
45090
45108
  **/
45091
45109
  endFlows: function endFlows(res) {
45092
45110
  var _this12 = this;
@@ -45140,12 +45158,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45140
45158
  }).catch(function (e) {});
45141
45159
  },
45142
45160
 
45143
- /**
45144
- * goView
45145
- * @desc:更多流程按钮操作
45146
- * @author liufan
45147
- * @param {Object} res 当前点击操作按钮数据
45148
- * @date 2022年5月25日
45161
+ /**
45162
+ * goView
45163
+ * @desc:更多流程按钮操作
45164
+ * @author liufan
45165
+ * @param {Object} res 当前点击操作按钮数据
45166
+ * @date 2022年5月25日
45149
45167
  **/
45150
45168
  goView: function goView(res) {
45151
45169
  // 驳回并办结:rejectAndEndHtml
@@ -45230,11 +45248,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45230
45248
  // isCanStartSubFlow
45231
45249
  },
45232
45250
 
45233
- /**
45234
- * toTakeAdvice
45235
- * @desc:征求意见
45236
- * @author liufan
45237
- * @date 2022年9月29日
45251
+ /**
45252
+ * toTakeAdvice
45253
+ * @desc:征求意见
45254
+ * @author liufan
45255
+ * @date 2022年9月29日
45238
45256
  **/
45239
45257
  toTakeAdvice: function toTakeAdvice(res) {
45240
45258
  var _this14 = this;
@@ -45278,11 +45296,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45278
45296
  });
45279
45297
  },
45280
45298
 
45281
- /**
45282
- * toStartDraf
45283
- * @desc: 稿件递送、联合审核、复核
45284
- * @author liufan
45285
- * @date 2022年9月29日
45299
+ /**
45300
+ * toStartDraf
45301
+ * @desc: 稿件递送、联合审核、复核
45302
+ * @author liufan
45303
+ * @date 2022年9月29日
45286
45304
  **/
45287
45305
  toStartDraf: function toStartDraf(res) {
45288
45306
  var _this16 = this;
@@ -45296,11 +45314,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45296
45314
  }
45297
45315
  },
45298
45316
 
45299
- /**
45300
- * toSendMsg
45301
- * @desc:核稿通知
45302
- * @author liufan
45303
- * @date 2022年9月29日
45317
+ /**
45318
+ * toSendMsg
45319
+ * @desc:核稿通知
45320
+ * @author liufan
45321
+ * @date 2022年9月29日
45304
45322
  **/
45305
45323
  toSendMsg: function toSendMsg(res) {
45306
45324
  var _this17 = this;
@@ -45314,11 +45332,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45314
45332
  }
45315
45333
  },
45316
45334
 
45317
- /**
45318
- * toTaskReadAndEnd
45319
- * @desc:分阅并办结
45320
- * @author liufan
45321
- * @date 2022年9月29日
45335
+ /**
45336
+ * toTaskReadAndEnd
45337
+ * @desc:分阅并办结
45338
+ * @author liufan
45339
+ * @date 2022年9月29日
45322
45340
  **/
45323
45341
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
45324
45342
  var _this18 = this;
@@ -45336,11 +45354,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45336
45354
  }
45337
45355
  },
45338
45356
 
45339
- /**
45340
- * rejectAndEnd
45341
- * @desc:驳回并办结
45342
- * @author liufan
45343
- * @date 2022年9月29日
45357
+ /**
45358
+ * rejectAndEnd
45359
+ * @desc:驳回并办结
45360
+ * @author liufan
45361
+ * @date 2022年9月29日
45344
45362
  **/
45345
45363
  rejectAndEnd: function rejectAndEnd(res) {
45346
45364
  var _this19 = this;
@@ -45395,11 +45413,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45395
45413
  });
45396
45414
  },
45397
45415
 
45398
- /**
45399
- * toTransfer
45400
- * @desc:转办
45401
- * @author liufan
45402
- * @date 2022年9月29日
45416
+ /**
45417
+ * toTransfer
45418
+ * @desc:转办
45419
+ * @author liufan
45420
+ * @date 2022年9月29日
45403
45421
  **/
45404
45422
  toTransfer: function toTransfer(res) {
45405
45423
  var _this21 = this;
@@ -45415,11 +45433,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45415
45433
  }
45416
45434
  },
45417
45435
 
45418
- /**
45419
- * getNodeInfo
45420
- * @desc:获取节点信息
45421
- * @author liufan
45422
- * @date 2022年5月25日
45436
+ /**
45437
+ * getNodeInfo
45438
+ * @desc:获取节点信息
45439
+ * @author liufan
45440
+ * @date 2022年5月25日
45423
45441
  **/
45424
45442
  getNodeInfo: function getNodeInfo() {
45425
45443
  var _this22 = this;
@@ -45518,12 +45536,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45518
45536
  });
45519
45537
  },
45520
45538
 
45521
- /**
45522
- * selecNext
45523
- * @desc:下步节点变化时更新数据
45524
- * @author liufan
45525
- * @param {String} val 当前选中值
45526
- * @date 2022年5月25日
45539
+ /**
45540
+ * selecNext
45541
+ * @desc:下步节点变化时更新数据
45542
+ * @author liufan
45543
+ * @param {String} val 当前选中值
45544
+ * @date 2022年5月25日
45527
45545
  **/
45528
45546
  selecNext: function selecNext(val, type, isDef) {
45529
45547
  var _this23 = this;
@@ -45632,11 +45650,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45632
45650
  if (isDef !== true) this.getNodeInfo();
45633
45651
  },
45634
45652
 
45635
- /**
45636
- * isMultiple
45637
- * @desc:是否多选
45638
- * @author liufan
45639
- * @date 2022年9月13日
45653
+ /**
45654
+ * isMultiple
45655
+ * @desc:是否多选
45656
+ * @author liufan
45657
+ * @date 2022年9月13日
45640
45658
  **/
45641
45659
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
45642
45660
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -45668,11 +45686,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45668
45686
  }
45669
45687
  },
45670
45688
 
45671
- /**
45672
- * getHedInfo
45673
- * @desc:获取审核页面数据
45674
- * @author liufan
45675
- * @date 2022年5月25日
45689
+ /**
45690
+ * getHedInfo
45691
+ * @desc:获取审核页面数据
45692
+ * @author liufan
45693
+ * @date 2022年5月25日
45676
45694
  **/
45677
45695
  getHedInfo: function getHedInfo() {
45678
45696
  var _this24 = this;
@@ -45908,13 +45926,13 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45908
45926
  });
45909
45927
  },
45910
45928
 
45911
- /**
45912
- * closeProcess
45913
- * @desc:关闭弹窗
45914
- * @author liufan
45915
- * @param {boolean} val 当前是否办理流程
45916
- * @param {String} type 当前点击的弹窗类型
45917
- * @date 2022年5月25日
45929
+ /**
45930
+ * closeProcess
45931
+ * @desc:关闭弹窗
45932
+ * @author liufan
45933
+ * @param {boolean} val 当前是否办理流程
45934
+ * @param {String} type 当前点击的弹窗类型
45935
+ * @date 2022年5月25日
45918
45936
  **/
45919
45937
  closeProcess: function closeProcess(val, type, closeParent) {
45920
45938
  if (closeParent) {
@@ -45931,23 +45949,23 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45931
45949
  }
45932
45950
  },
45933
45951
 
45934
- /**
45935
- * selectChange
45936
- * @desc:常用语选择
45937
- * @author liufan
45938
- * @param {String} val 选中值
45939
- * @date 2022年5月25日
45952
+ /**
45953
+ * selectChange
45954
+ * @desc:常用语选择
45955
+ * @author liufan
45956
+ * @param {String} val 选中值
45957
+ * @date 2022年5月25日
45940
45958
  **/
45941
45959
  selectChange: function selectChange(val) {
45942
45960
  this.value = val;
45943
45961
  },
45944
45962
 
45945
- /**
45946
- * upDate
45947
- * @desc:修改常用语
45948
- * @author liufan
45949
- * @param {Object} val 修改值
45950
- * @date 2022年5月25日
45963
+ /**
45964
+ * upDate
45965
+ * @desc:修改常用语
45966
+ * @author liufan
45967
+ * @param {Object} val 修改值
45968
+ * @date 2022年5月25日
45951
45969
  **/
45952
45970
  upDate: function upDate(val) {
45953
45971
  this.FormData.id = val.id;
@@ -45955,11 +45973,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
45955
45973
  },
45956
45974
 
45957
45975
 
45958
- /**
45959
- * getProcess
45960
- * @desc:获取选择流程
45961
- * @author liufan
45962
- * @date 2022年5月25日
45976
+ /**
45977
+ * getProcess
45978
+ * @desc:获取选择流程
45979
+ * @author liufan
45980
+ * @date 2022年5月25日
45963
45981
  **/
45964
45982
  getProcess: function getProcess() {
45965
45983
  var _this25 = this;
@@ -46013,11 +46031,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
46013
46031
  });
46014
46032
  },
46015
46033
 
46016
- /**
46017
- * getPendedhistoryList
46018
- * @desc:获取流程列表
46019
- * @author liufan
46020
- * @date 2022年5月25日
46034
+ /**
46035
+ * getPendedhistoryList
46036
+ * @desc:获取流程列表
46037
+ * @author liufan
46038
+ * @date 2022年5月25日
46021
46039
  **/
46022
46040
  getPendedhistoryList: function getPendedhistoryList() {
46023
46041
  var _this26 = this;
@@ -46049,12 +46067,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
46049
46067
  },
46050
46068
 
46051
46069
  // 提交流程
46052
- /**
46053
- * subProcess
46054
- * @desc:提交流程
46055
- * @author liufan
46056
- * @param {String} formName 当前form表单ref值
46057
- * @date 2022年5月25日
46070
+ /**
46071
+ * subProcess
46072
+ * @desc:提交流程
46073
+ * @author liufan
46074
+ * @param {String} formName 当前form表单ref值
46075
+ * @date 2022年5月25日
46058
46076
  **/
46059
46077
  subProcess: function subProcess(val) {
46060
46078
  var _this27 = this;
@@ -51773,8 +51791,8 @@ flow_src_main.install = function (Vue) {
51773
51791
  };
51774
51792
 
51775
51793
  /* harmony default export */ var packages_flow = (flow_src_main);
51776
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-group/src/main.vue?vue&type=template&id=2c478c3c&
51777
- var mainvue_type_template_id_2c478c3c_render = function () {
51794
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-group/src/main.vue?vue&type=template&id=0192cc7c&
51795
+ var mainvue_type_template_id_0192cc7c_render = function () {
51778
51796
  var _vm = this
51779
51797
  var _h = _vm.$createElement
51780
51798
  var _c = _vm._self._c || _h
@@ -53036,11 +53054,11 @@ var mainvue_type_template_id_2c478c3c_render = function () {
53036
53054
  2
53037
53055
  )
53038
53056
  }
53039
- var mainvue_type_template_id_2c478c3c_staticRenderFns = []
53040
- mainvue_type_template_id_2c478c3c_render._withStripped = true
53057
+ var mainvue_type_template_id_0192cc7c_staticRenderFns = []
53058
+ mainvue_type_template_id_0192cc7c_render._withStripped = true
53041
53059
 
53042
53060
 
53043
- // CONCATENATED MODULE: ./packages/flow-group/src/main.vue?vue&type=template&id=2c478c3c&
53061
+ // CONCATENATED MODULE: ./packages/flow-group/src/main.vue?vue&type=template&id=0192cc7c&
53044
53062
 
53045
53063
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-group/src/main.vue?vue&type=script&lang=js&
53046
53064
  var flow_group_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; };
@@ -53631,9 +53649,8 @@ var flow_group_src_mainvue_type_script_lang_js_extends = Object.assign || functi
53631
53649
  var name = item.name;
53632
53650
  var width = 0;
53633
53651
  var height = 0;
53634
- var win = utils_util.win.top;
53635
- width = win.screen.availWidth - 10;
53636
- height = win.screen.availHeight - 60;
53652
+ width = utils_util.win.screen.availWidth - 10;
53653
+ height = utils_util.win.screen.availHeight - 60;
53637
53654
  if (item.url) {
53638
53655
  url = _this.handleUrlJoinParams(item);
53639
53656
  }
@@ -53714,13 +53731,13 @@ var flow_group_src_mainvue_type_script_lang_js_extends = Object.assign || functi
53714
53731
  utils_util.busEmit(this, flow_group_src_mainvue_type_script_lang_js_extends({
53715
53732
  method: 'windowClose'
53716
53733
  }, JSON.parse(windowOpenConfig)));
53717
- utils_util.win.top.windowClose(JSON.parse(windowOpenConfig));
53734
+ utils_util.getWinTop().windowClose(JSON.parse(windowOpenConfig));
53718
53735
  } else if (this.closeDialog && this.esDialog) {
53719
53736
  this.esDialog.handleClose();
53720
- } else if (utils_util.win.top.COOS_SDK) {
53721
- utils_util.win.top.COOS_SDK.closePopup && utils_util.win.top.COOS_SDK.closePopup();
53722
- } else if (utils_util.win.top.opener) {
53723
- utils_util.win.top.close();
53737
+ } else if (utils_util.getWinTop().COOS_SDK) {
53738
+ utils_util.getWinTop().COOS_SDK.closePopup && utils_util.getWinTop().COOS_SDK.closePopup();
53739
+ } else if (utils_util.getWinTop().opener) {
53740
+ utils_util.getWinTop().close();
53724
53741
  }
53725
53742
  if (this.events && this.events.success) {
53726
53743
  this.events.success();
@@ -53733,13 +53750,13 @@ var flow_group_src_mainvue_type_script_lang_js_extends = Object.assign || functi
53733
53750
  utils_util.busEmit(this, flow_group_src_mainvue_type_script_lang_js_extends({
53734
53751
  method: 'windowClose'
53735
53752
  }, JSON.parse(windowOpenConfig)));
53736
- utils_util.win.top.windowClose(JSON.parse(windowOpenConfig));
53753
+ utils_util.getWinTop().windowClose(JSON.parse(windowOpenConfig));
53737
53754
  } else if (this.closeDialog && this.esDialog) {
53738
53755
  this.esDialog.handleClose();
53739
- } else if (utils_util.win.top.COOS_SDK) {
53740
- utils_util.win.top.COOS_SDK.closePopup && utils_util.win.top.COOS_SDK.closePopup();
53741
- } else if (utils_util.win.top.opener) {
53742
- utils_util.win.top.close();
53756
+ } else if (utils_util.getWinTop().COOS_SDK) {
53757
+ utils_util.getWinTop().COOS_SDK.closePopup && utils_util.getWinTop().COOS_SDK.closePopup();
53758
+ } else if (utils_util.getWinTop().opener) {
53759
+ utils_util.getWinTop().close();
53743
53760
  }
53744
53761
  this.events && this.events.save(id, event);
53745
53762
  this.$emit('save', id, event);
@@ -53765,8 +53782,8 @@ var flow_group_src_mainvue_type_script_lang_js_extends = Object.assign || functi
53765
53782
 
53766
53783
  var flow_group_src_main_component = normalizeComponent(
53767
53784
  packages_flow_group_src_mainvue_type_script_lang_js_,
53768
- mainvue_type_template_id_2c478c3c_render,
53769
- mainvue_type_template_id_2c478c3c_staticRenderFns,
53785
+ mainvue_type_template_id_0192cc7c_render,
53786
+ mainvue_type_template_id_0192cc7c_staticRenderFns,
53770
53787
  false,
53771
53788
  null,
53772
53789
  null,
@@ -55566,11 +55583,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
55566
55583
 
55567
55584
 
55568
55585
  methods: {
55569
- /**
55570
- * handleBatchDelete
55571
- * @desc:批量删除
55572
- * @author liufan
55573
- * @date 2025年12月31日
55586
+ /**
55587
+ * handleBatchDelete
55588
+ * @desc:批量删除
55589
+ * @author liufan
55590
+ * @date 2025年12月31日
55574
55591
  **/
55575
55592
  handleBatchDelete: function handleBatchDelete() {
55576
55593
  var _this6 = this;
@@ -55867,12 +55884,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
55867
55884
  }
55868
55885
  },
55869
55886
 
55870
- /**
55871
- * handleFormSubmit
55872
- * @desc:删除节点点击事件
55873
- * @param {Object} formData 点击删除的form数据
55874
- * @author liufan
55875
- * @date 2022年11月29日
55887
+ /**
55888
+ * handleFormSubmit
55889
+ * @desc:删除节点点击事件
55890
+ * @param {Object} formData 点击删除的form数据
55891
+ * @author liufan
55892
+ * @date 2022年11月29日
55876
55893
  **/
55877
55894
  handleFormSubmit: function handleFormSubmit(formData) {
55878
55895
  var _this12 = this;
@@ -55908,12 +55925,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
55908
55925
  });
55909
55926
  },
55910
55927
 
55911
- /**
55912
- * del
55913
- * @desc:展示删除弹窗
55914
- * @param {String} id 当前点击数据id
55915
- * @author liufan
55916
- * @date 2022年11月29日
55928
+ /**
55929
+ * del
55930
+ * @desc:展示删除弹窗
55931
+ * @param {String} id 当前点击数据id
55932
+ * @author liufan
55933
+ * @date 2022年11月29日
55917
55934
  **/
55918
55935
  del: function del(id, type) {
55919
55936
  this.modalType = type;
@@ -55921,12 +55938,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
55921
55938
  this.showDel = true;
55922
55939
  },
55923
55940
 
55924
- /**
55925
- * handleCurrentChange
55926
- * @desc:监听页码变化
55927
- * @param {String} val 当前页
55928
- * @author liufan
55929
- * @date 2022年11月29日
55941
+ /**
55942
+ * handleCurrentChange
55943
+ * @desc:监听页码变化
55944
+ * @param {String} val 当前页
55945
+ * @author liufan
55946
+ * @date 2022年11月29日
55930
55947
  **/
55931
55948
  handleCurrentChange: function handleCurrentChange(val, type) {
55932
55949
  this.currentPage = val;
@@ -55935,12 +55952,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
55935
55952
  }
55936
55953
  },
55937
55954
 
55938
- /**
55939
- * handleSizeChange
55940
- * @desc:监听每页数据显示数量变化
55941
- * @param {String} val 每页展示数量
55942
- * @author liufan
55943
- * @date 2022年11月29日
55955
+ /**
55956
+ * handleSizeChange
55957
+ * @desc:监听每页数据显示数量变化
55958
+ * @param {String} val 每页展示数量
55959
+ * @author liufan
55960
+ * @date 2022年11月29日
55944
55961
  **/
55945
55962
  handleSizeChange: function handleSizeChange(val) {
55946
55963
  this.pageSize = val;
@@ -55949,12 +55966,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
55949
55966
  }
55950
55967
  },
55951
55968
 
55952
- /**
55953
- * sortChange
55954
- * @desc:监听排序变化
55955
- * @param {Object} info 需要排序的字段及排序方式
55956
- * @author liufan
55957
- * @date 2022年11月29日
55969
+ /**
55970
+ * sortChange
55971
+ * @desc:监听排序变化
55972
+ * @param {Object} info 需要排序的字段及排序方式
55973
+ * @author liufan
55974
+ * @date 2022年11月29日
55958
55975
  **/
55959
55976
  sortChange: function sortChange(info, type) {
55960
55977
  var prop = info.prop;
@@ -55970,11 +55987,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
55970
55987
  }
55971
55988
  },
55972
55989
 
55973
- /**
55974
- * getDeletList
55975
- * @desc:删除列表数据
55976
- * @author liufan
55977
- * @date 2025年12月30日
55990
+ /**
55991
+ * getDeletList
55992
+ * @desc:删除列表数据
55993
+ * @author liufan
55994
+ * @date 2025年12月30日
55978
55995
  **/
55979
55996
  getDeletList: function getDeletList() {
55980
55997
  var _this13 = this;
@@ -56003,11 +56020,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56003
56020
  });
56004
56021
  },
56005
56022
 
56006
- /**
56007
- * getResetList
56008
- * @desc:重设列表数据
56009
- * @author liufan
56010
- * @date 2025年12月30日
56023
+ /**
56024
+ * getResetList
56025
+ * @desc:重设列表数据
56026
+ * @author liufan
56027
+ * @date 2025年12月30日
56011
56028
  **/
56012
56029
  getResetList: function getResetList() {
56013
56030
  var _this14 = this;
@@ -56037,11 +56054,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56037
56054
  });
56038
56055
  },
56039
56056
 
56040
- /**
56041
- * getPressList
56042
- * @desc:催办列表数据
56043
- * @author liufan
56044
- * @date 2022年11月29日
56057
+ /**
56058
+ * getPressList
56059
+ * @desc:催办列表数据
56060
+ * @author liufan
56061
+ * @date 2022年11月29日
56045
56062
  **/
56046
56063
  getPressList: function getPressList() {
56047
56064
  var _this15 = this;
@@ -56071,12 +56088,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56071
56088
  });
56072
56089
  },
56073
56090
 
56074
- /**
56075
- * goPress
56076
- * @desc:催办列表查看
56077
- * @param {String} id 催办列表id
56078
- * @author liufan
56079
- * @date 2022年11月29日
56091
+ /**
56092
+ * goPress
56093
+ * @desc:催办列表查看
56094
+ * @param {String} id 催办列表id
56095
+ * @author liufan
56096
+ * @date 2022年11月29日
56080
56097
  **/
56081
56098
  goPress: function goPress(id) {
56082
56099
  this.historyId = id;
@@ -56084,23 +56101,23 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56084
56101
  this.getPressList();
56085
56102
  },
56086
56103
 
56087
- /**
56088
- * showFile
56089
- * @desc:附件查看
56090
- * @param {String} ownId 附件id
56091
- * @author liufan
56092
- * @date 2022年11月29日
56104
+ /**
56105
+ * showFile
56106
+ * @desc:附件查看
56107
+ * @param {String} ownId 附件id
56108
+ * @author liufan
56109
+ * @date 2022年11月29日
56093
56110
  **/
56094
56111
  showFile: function showFile(ownId) {
56095
56112
  this.wfpendingid = ownId;
56096
56113
  this.showFileList = true;
56097
56114
  },
56098
56115
 
56099
- /**
56100
- * handleChange
56101
- * @desc:切换排序方式
56102
- * @author liufan
56103
- * @date 2022年11月22日
56116
+ /**
56117
+ * handleChange
56118
+ * @desc:切换排序方式
56119
+ * @author liufan
56120
+ * @date 2022年11月22日
56104
56121
  **/
56105
56122
  handleChange: function handleChange(key, value) {
56106
56123
  if (value) {
@@ -56150,11 +56167,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56150
56167
  }))();
56151
56168
  },
56152
56169
 
56153
- /**
56154
- * getFlowList
56155
- * @desc:获取流程列表
56156
- * @author liufan
56157
- * @date 2022年11月22日
56170
+ /**
56171
+ * getFlowList
56172
+ * @desc:获取流程列表
56173
+ * @author liufan
56174
+ * @date 2022年11月22日
56158
56175
  **/
56159
56176
  getFlowList: function getFlowList(type) {
56160
56177
  var _this17 = this;
@@ -56234,12 +56251,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56234
56251
  });
56235
56252
  },
56236
56253
 
56237
- /**
56238
- * handleClick
56239
- * @desc:表单点击事件
56240
- * @param {Object} val 当前点击行数据及按钮
56241
- * @author liufan
56242
- * @date 2022年11月10日
56254
+ /**
56255
+ * handleClick
56256
+ * @desc:表单点击事件
56257
+ * @param {Object} val 当前点击行数据及按钮
56258
+ * @author liufan
56259
+ * @date 2022年11月10日
56243
56260
  **/
56244
56261
  handleClick: function handleClick(val) {
56245
56262
  var _this18 = this;
@@ -56285,13 +56302,13 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56285
56302
  }
56286
56303
  },
56287
56304
 
56288
- /**
56289
- * getCodeValue
56290
- * @desc:获取代码表过滤后的值
56291
- * @param {String} value 展示数据的代码值
56292
- * @param {String} type 代码表类型
56293
- * @author liufan
56294
- * @date 2022年11月10日
56305
+ /**
56306
+ * getCodeValue
56307
+ * @desc:获取代码表过滤后的值
56308
+ * @param {String} value 展示数据的代码值
56309
+ * @param {String} type 代码表类型
56310
+ * @author liufan
56311
+ * @date 2022年11月10日
56295
56312
  **/
56296
56313
  getCodeValue: function getCodeValue(value, type) {
56297
56314
  var val = this[type].filter(function (item) {
@@ -56300,12 +56317,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56300
56317
  return val[0].shortName;
56301
56318
  },
56302
56319
 
56303
- /**
56304
- * getSysInfo
56305
- * @desc:获取代码表
56306
- * @param {String} code 编码code值
56307
- * @author liufan
56308
- * @date 2022年11月10日
56320
+ /**
56321
+ * getSysInfo
56322
+ * @desc:获取代码表
56323
+ * @param {String} code 编码code值
56324
+ * @author liufan
56325
+ * @date 2022年11月10日
56309
56326
  **/
56310
56327
  getSysInfo: function getSysInfo(code) {
56311
56328
  var _this19 = this;
@@ -56327,11 +56344,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56327
56344
  }).catch(function (e) {});
56328
56345
  },
56329
56346
 
56330
- /**
56331
- * getListInfo
56332
- * @desc:获取预设列表数据
56333
- * @author liufan
56334
- * @date 2022年11月10日
56347
+ /**
56348
+ * getListInfo
56349
+ * @desc:获取预设列表数据
56350
+ * @author liufan
56351
+ * @date 2022年11月10日
56335
56352
  **/
56336
56353
  getListInfo: function getListInfo() {
56337
56354
  var _this20 = this;
@@ -56402,8 +56419,8 @@ flow_list_src_main.install = function (Vue) {
56402
56419
  };
56403
56420
 
56404
56421
  /* harmony default export */ var flow_list = (flow_list_src_main);
56405
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handle-user/src/main.vue?vue&type=template&id=5ba85f48&
56406
- var mainvue_type_template_id_5ba85f48_render = function () {
56422
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handle-user/src/main.vue?vue&type=template&id=471ac115&
56423
+ var mainvue_type_template_id_471ac115_render = function () {
56407
56424
  var _vm = this
56408
56425
  var _h = _vm.$createElement
56409
56426
  var _c = _vm._self._c || _h
@@ -56495,11 +56512,11 @@ var mainvue_type_template_id_5ba85f48_render = function () {
56495
56512
  : _vm._e(),
56496
56513
  ])
56497
56514
  }
56498
- var mainvue_type_template_id_5ba85f48_staticRenderFns = []
56499
- mainvue_type_template_id_5ba85f48_render._withStripped = true
56515
+ var mainvue_type_template_id_471ac115_staticRenderFns = []
56516
+ mainvue_type_template_id_471ac115_render._withStripped = true
56500
56517
 
56501
56518
 
56502
- // CONCATENATED MODULE: ./packages/handle-user/src/main.vue?vue&type=template&id=5ba85f48&
56519
+ // CONCATENATED MODULE: ./packages/handle-user/src/main.vue?vue&type=template&id=471ac115&
56503
56520
 
56504
56521
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/handle-user/src/main.vue?vue&type=script&lang=js&
56505
56522
  //
@@ -56613,7 +56630,7 @@ mainvue_type_template_id_5ba85f48_render._withStripped = true
56613
56630
  duration: 500,
56614
56631
  onClose: function onClose() {
56615
56632
  utils_util.removeStorage(['mainConfig', 'jump']);
56616
- var win = utils_util.win.top;
56633
+ var win = utils_util.getWinTop();
56617
56634
  win.location.reload();
56618
56635
  }
56619
56636
  });
@@ -56648,8 +56665,8 @@ mainvue_type_template_id_5ba85f48_render._withStripped = true
56648
56665
 
56649
56666
  var handle_user_src_main_component = normalizeComponent(
56650
56667
  packages_handle_user_src_mainvue_type_script_lang_js_,
56651
- mainvue_type_template_id_5ba85f48_render,
56652
- mainvue_type_template_id_5ba85f48_staticRenderFns,
56668
+ mainvue_type_template_id_471ac115_render,
56669
+ mainvue_type_template_id_471ac115_staticRenderFns,
56653
56670
  false,
56654
56671
  null,
56655
56672
  null,
@@ -56666,8 +56683,8 @@ handle_user_src_main.install = function (Vue) {
56666
56683
  };
56667
56684
 
56668
56685
  /* harmony default export */ var handle_user = (handle_user_src_main);
56669
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=1e8e12d8&
56670
- var mainvue_type_template_id_1e8e12d8_render = function () {
56686
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=7a67c26e&
56687
+ var mainvue_type_template_id_7a67c26e_render = function () {
56671
56688
  var _vm = this
56672
56689
  var _h = _vm.$createElement
56673
56690
  var _c = _vm._self._c || _h
@@ -56920,11 +56937,11 @@ var mainvue_type_template_id_1e8e12d8_render = function () {
56920
56937
  2
56921
56938
  )
56922
56939
  }
56923
- var mainvue_type_template_id_1e8e12d8_staticRenderFns = []
56924
- mainvue_type_template_id_1e8e12d8_render._withStripped = true
56940
+ var mainvue_type_template_id_7a67c26e_staticRenderFns = []
56941
+ mainvue_type_template_id_7a67c26e_render._withStripped = true
56925
56942
 
56926
56943
 
56927
- // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=1e8e12d8&
56944
+ // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=7a67c26e&
56928
56945
 
56929
56946
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=script&lang=js&
56930
56947
  var handler_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; };
@@ -57333,7 +57350,7 @@ var _props;
57333
57350
  if (loginPage) {
57334
57351
  var _src = void 0;
57335
57352
  if (!utils_util.startWith(loginPage, ['http', '/'], true)) {
57336
- var pathname = utils_util.win.top.location.pathname;
57353
+ var pathname = utils_util.getWinTop().location.pathname;
57337
57354
  if (pathname !== '/') {
57338
57355
  pathname = pathname.split('/');
57339
57356
  pathname.splice(pathname.length - 1);
@@ -57345,16 +57362,16 @@ var _props;
57345
57362
  } else {
57346
57363
  _src = loginPage;
57347
57364
  }
57348
- utils_util.win.top.location.href = _src;
57349
- } else if (utils_util.win.top.location.href.indexOf('main.html') > -1) {
57350
- utils_util.win.top.location.href = './login.html';
57365
+ utils_util.getWinTop().location.href = _src;
57366
+ } else if (utils_util.getWinTop().location.href.indexOf('main.html') > -1) {
57367
+ utils_util.getWinTop().location.href = './login.html';
57351
57368
  } else {
57352
- var hash = utils_util.win.top.location.hash;
57369
+ var hash = utils_util.getWinTop().location.hash;
57353
57370
  if (hash) {
57354
- var len = utils_util.win.top.location.href.indexOf(hash);
57355
- utils_util.win.top.location.href = utils_util.win.location.href.slice(0, len) + '#/login';
57371
+ var len = utils_util.getWinTop().location.href.indexOf(hash);
57372
+ utils_util.getWinTop().location.href = utils_util.win.location.href.slice(0, len) + '#/login';
57356
57373
  } else {
57357
- utils_util.win.top.location.href = '/login.html';
57374
+ utils_util.getWinTop().location.href = '/login.html';
57358
57375
  }
57359
57376
  }
57360
57377
  } catch (error) {}
@@ -57384,8 +57401,8 @@ var _props;
57384
57401
 
57385
57402
  var handler_src_main_component = normalizeComponent(
57386
57403
  packages_handler_src_mainvue_type_script_lang_js_,
57387
- mainvue_type_template_id_1e8e12d8_render,
57388
- mainvue_type_template_id_1e8e12d8_staticRenderFns,
57404
+ mainvue_type_template_id_7a67c26e_render,
57405
+ mainvue_type_template_id_7a67c26e_staticRenderFns,
57389
57406
  false,
57390
57407
  null,
57391
57408
  null,
@@ -62862,8 +62879,8 @@ login_src_main.install = function (Vue) {
62862
62879
  };
62863
62880
 
62864
62881
  /* harmony default export */ var login = (login_src_main);
62865
- // 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=d38ebb62&
62866
- var mainvue_type_template_id_d38ebb62_render = function () {
62882
+ // 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=4e6a76ca&
62883
+ var mainvue_type_template_id_4e6a76ca_render = function () {
62867
62884
  var _vm = this
62868
62885
  var _h = _vm.$createElement
62869
62886
  var _c = _vm._self._c || _h
@@ -63009,14 +63026,14 @@ var mainvue_type_template_id_d38ebb62_render = function () {
63009
63026
  )
63010
63027
  : _vm._e()
63011
63028
  }
63012
- var mainvue_type_template_id_d38ebb62_staticRenderFns = []
63013
- mainvue_type_template_id_d38ebb62_render._withStripped = true
63029
+ var mainvue_type_template_id_4e6a76ca_staticRenderFns = []
63030
+ mainvue_type_template_id_4e6a76ca_render._withStripped = true
63014
63031
 
63015
63032
 
63016
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=d38ebb62&
63033
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=4e6a76ca&
63017
63034
 
63018
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=3a1d1142&scoped=true&
63019
- var simplicityvue_type_template_id_3a1d1142_scoped_true_render = function () {
63035
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=4f7a89eb&scoped=true&
63036
+ var simplicityvue_type_template_id_4f7a89eb_scoped_true_render = function () {
63020
63037
  var _vm = this
63021
63038
  var _h = _vm.$createElement
63022
63039
  var _c = _vm._self._c || _h
@@ -63782,11 +63799,11 @@ var simplicityvue_type_template_id_3a1d1142_scoped_true_render = function () {
63782
63799
  ),
63783
63800
  ])
63784
63801
  }
63785
- var simplicityvue_type_template_id_3a1d1142_scoped_true_staticRenderFns = []
63786
- simplicityvue_type_template_id_3a1d1142_scoped_true_render._withStripped = true
63802
+ var simplicityvue_type_template_id_4f7a89eb_scoped_true_staticRenderFns = []
63803
+ simplicityvue_type_template_id_4f7a89eb_scoped_true_render._withStripped = true
63787
63804
 
63788
63805
 
63789
- // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=3a1d1142&scoped=true&
63806
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=4f7a89eb&scoped=true&
63790
63807
 
63791
63808
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
63792
63809
  var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
@@ -65844,10 +65861,10 @@ appsvue_type_template_id_f094d33e_scoped_true_render._withStripped = true
65844
65861
  this.$emit('click', res);
65845
65862
  },
65846
65863
 
65847
- /**
65848
- * @desc:获取气泡提醒
65849
- * @author huangbo
65850
- * @date 2024年9月7日
65864
+ /**
65865
+ * @desc:获取气泡提醒
65866
+ * @author huangbo
65867
+ * @date 2024年9月7日
65851
65868
  **/
65852
65869
  getBadge: function getBadge(res) {
65853
65870
  var num = res.tips || 0;
@@ -66027,8 +66044,8 @@ uservue_type_template_id_6bbe7986_scoped_true_render._withStripped = true
66027
66044
 
66028
66045
  // CONCATENATED MODULE: ./packages/main/src/simplicity/user.vue?vue&type=template&id=6bbe7986&scoped=true&
66029
66046
 
66030
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/userinfo.vue?vue&type=template&id=3984338e&
66031
- var userinfovue_type_template_id_3984338e_render = function () {
66047
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/userinfo.vue?vue&type=template&id=14462712&
66048
+ var userinfovue_type_template_id_14462712_render = function () {
66032
66049
  var _vm = this
66033
66050
  var _h = _vm.$createElement
66034
66051
  var _c = _vm._self._c || _h
@@ -66052,11 +66069,11 @@ var userinfovue_type_template_id_3984338e_render = function () {
66052
66069
  2
66053
66070
  )
66054
66071
  }
66055
- var userinfovue_type_template_id_3984338e_staticRenderFns = []
66056
- userinfovue_type_template_id_3984338e_render._withStripped = true
66072
+ var userinfovue_type_template_id_14462712_staticRenderFns = []
66073
+ userinfovue_type_template_id_14462712_render._withStripped = true
66057
66074
 
66058
66075
 
66059
- // CONCATENATED MODULE: ./packages/main/src/simplicity/userinfo.vue?vue&type=template&id=3984338e&
66076
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/userinfo.vue?vue&type=template&id=14462712&
66060
66077
 
66061
66078
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/userinfo.vue?vue&type=script&lang=js&
66062
66079
  var userinfovue_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; };
@@ -66323,7 +66340,7 @@ var userinfovue_type_script_lang_js_props;
66323
66340
  if (loginPage) {
66324
66341
  var src = void 0;
66325
66342
  if (!utils_util.startWith(loginPage, ['http', '/'], true)) {
66326
- var pathname = utils_util.win.top.location.pathname;
66343
+ var pathname = utils_util.getWinTop().location.pathname;
66327
66344
  if (pathname !== '/') {
66328
66345
  pathname = pathname.split('/');
66329
66346
  pathname.splice(pathname.length - 1);
@@ -66335,20 +66352,20 @@ var userinfovue_type_script_lang_js_props;
66335
66352
  } else {
66336
66353
  src = loginPage;
66337
66354
  }
66338
- utils_util.win.top.location.href = src;
66339
- } else if (utils_util.win.top.location.href.indexOf('main.html') > -1) {
66340
- utils_util.win.top.location.href = './login.html';
66355
+ utils_util.getWinTop().location.href = src;
66356
+ } else if (utils_util.getWinTop().location.href.indexOf('main.html') > -1) {
66357
+ utils_util.getWinTop().location.href = './login.html';
66341
66358
  } else {
66342
- var hash = utils_util.win.top.location.hash;
66359
+ var hash = utils_util.getWinTop().location.hash;
66343
66360
  if (hash) {
66344
- var len = utils_util.win.top.location.href.indexOf(hash);
66345
- utils_util.win.top.location.href = utils_util.win.location.href.slice(0, len) + '#/login';
66361
+ var len = utils_util.getWinTop().location.href.indexOf(hash);
66362
+ utils_util.getWinTop().location.href = utils_util.win.location.href.slice(0, len) + '#/login';
66346
66363
  } else {
66347
- utils_util.win.top.location.href = '/login.html';
66364
+ utils_util.getWinTop().location.href = '/login.html';
66348
66365
  }
66349
66366
  }
66350
66367
  } catch (error) {
66351
- utils_util.win.top.postMessage({ type: 1 }, '*');
66368
+ utils_util.getWinTop().postMessage({ type: 1 }, '*');
66352
66369
  }
66353
66370
  }).catch(function (e) {});
66354
66371
  } else {
@@ -66388,8 +66405,8 @@ var userinfovue_type_script_lang_js_props;
66388
66405
 
66389
66406
  var userinfo_component = normalizeComponent(
66390
66407
  simplicity_userinfovue_type_script_lang_js_,
66391
- userinfovue_type_template_id_3984338e_render,
66392
- userinfovue_type_template_id_3984338e_staticRenderFns,
66408
+ userinfovue_type_template_id_14462712_render,
66409
+ userinfovue_type_template_id_14462712_staticRenderFns,
66393
66410
  false,
66394
66411
  null,
66395
66412
  null,
@@ -70246,10 +70263,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70246
70263
  this.$refs.user.handleSelect(res);
70247
70264
  },
70248
70265
 
70249
- /**
70250
- * @desc:匹配路由
70251
- * @author huangbo
70252
- * @date 2024年9月7日
70266
+ /**
70267
+ * @desc:匹配路由
70268
+ * @author huangbo
70269
+ * @date 2024年9月7日
70253
70270
  **/
70254
70271
  hasRouter: function hasRouter(res, url, code) {
70255
70272
  if (!url) {
@@ -70293,10 +70310,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70293
70310
  return false;
70294
70311
  },
70295
70312
 
70296
- /**
70297
- * @desc:获取初始数据
70298
- * @author huangbo
70299
- * @date 2024年9月7日
70313
+ /**
70314
+ * @desc:获取初始数据
70315
+ * @author huangbo
70316
+ * @date 2024年9月7日
70300
70317
  **/
70301
70318
  init: function init(results, first) {
70302
70319
  this.setConfig(results);
@@ -70305,10 +70322,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70305
70322
  }
70306
70323
  },
70307
70324
 
70308
- /**
70309
- * @desc:设置用户配置及信息
70310
- * @author huangbo
70311
- * @date 2024年9月7日
70325
+ /**
70326
+ * @desc:设置用户配置及信息
70327
+ * @author huangbo
70328
+ * @date 2024年9月7日
70312
70329
  **/
70313
70330
  setConfig: function setConfig(results) {
70314
70331
  localStorage.setItem('mainConfig', JSON.stringify(results));
@@ -70476,10 +70493,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70476
70493
  }
70477
70494
  },
70478
70495
 
70479
- /**
70480
- * @desc:获取所有应用
70481
- * @author huangbo
70482
- * @date 2024年9月7日
70496
+ /**
70497
+ * @desc:获取所有应用
70498
+ * @author huangbo
70499
+ * @date 2024年9月7日
70483
70500
  **/
70484
70501
  getApplications: function getApplications() {
70485
70502
  var _this2 = this;
@@ -70527,10 +70544,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70527
70544
  });
70528
70545
  },
70529
70546
 
70530
- /**
70531
- * @desc:获取菜单列表
70532
- * @author huangbo
70533
- * @date 2024年9月7日
70547
+ /**
70548
+ * @desc:获取菜单列表
70549
+ * @author huangbo
70550
+ * @date 2024年9月7日
70534
70551
  **/
70535
70552
  getMenus: function getMenus(loading) {
70536
70553
  var _this3 = this;
@@ -70563,10 +70580,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70563
70580
  });
70564
70581
  },
70565
70582
 
70566
- /**
70567
- * @desc:处理菜单列表
70568
- * @author huangbo
70569
- * @date 2024年9月7日
70583
+ /**
70584
+ * @desc:处理菜单列表
70585
+ * @author huangbo
70586
+ * @date 2024年9月7日
70570
70587
  **/
70571
70588
  renderMenus: function renderMenus(res) {
70572
70589
  this.menus = res;
@@ -70662,10 +70679,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70662
70679
  }
70663
70680
  },
70664
70681
 
70665
- /**
70666
- * @desc:设置页面加载类型
70667
- * @author huangbo
70668
- * @date 2024年9月7日
70682
+ /**
70683
+ * @desc:设置页面加载类型
70684
+ * @author huangbo
70685
+ * @date 2024年9月7日
70669
70686
  **/
70670
70687
  setIframeType: function setIframeType(res) {
70671
70688
  var url = res.url;
@@ -70721,10 +70738,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70721
70738
  return res;
70722
70739
  },
70723
70740
 
70724
- /**
70725
- * @desc:获取菜单
70726
- * @author huangbo
70727
- * @date 2024年9月7日
70741
+ /**
70742
+ * @desc:获取菜单
70743
+ * @author huangbo
70744
+ * @date 2024年9月7日
70728
70745
  **/
70729
70746
  getMenu: function getMenu(menus, res, key) {
70730
70747
  if (Array.isArray(menus)) {
@@ -70753,10 +70770,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70753
70770
  return false;
70754
70771
  },
70755
70772
 
70756
- /**
70757
- * @desc:获取菜单第一条数据
70758
- * @author huangbo
70759
- * @date 2024年9月7日
70773
+ /**
70774
+ * @desc:获取菜单第一条数据
70775
+ * @author huangbo
70776
+ * @date 2024年9月7日
70760
70777
  **/
70761
70778
  getFirst: function getFirst(obj) {
70762
70779
  if (!obj) {
@@ -70775,10 +70792,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70775
70792
  }
70776
70793
  },
70777
70794
 
70778
- /**
70779
- * @desc:遍历设置菜单气泡提醒
70780
- * @author huangbo
70781
- * @date 2024年9月7日
70795
+ /**
70796
+ * @desc:遍历设置菜单气泡提醒
70797
+ * @author huangbo
70798
+ * @date 2024年9月7日
70782
70799
  **/
70783
70800
  setTips: function setTips(obj) {
70784
70801
  var _this4 = this;
@@ -70849,10 +70866,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70849
70866
  }
70850
70867
  },
70851
70868
 
70852
- /**
70853
- * @desc:获取气泡提醒
70854
- * @author huangbo
70855
- * @date 2024年9月7日
70869
+ /**
70870
+ * @desc:获取气泡提醒
70871
+ * @author huangbo
70872
+ * @date 2024年9月7日
70856
70873
  **/
70857
70874
  getBadge: function getBadge(res) {
70858
70875
  var num = res.tips || 0;
@@ -70866,10 +70883,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70866
70883
  };
70867
70884
  },
70868
70885
 
70869
- /**
70870
- * @desc:开启weosocket
70871
- * @author huangbo
70872
- * @date 2024年9月7日
70886
+ /**
70887
+ * @desc:开启weosocket
70888
+ * @author huangbo
70889
+ * @date 2024年9月7日
70873
70890
  **/
70874
70891
  initWebSocket: function initWebSocket() {
70875
70892
  var _this6 = this;
@@ -70918,10 +70935,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70918
70935
  });
70919
70936
  },
70920
70937
 
70921
- /**
70922
- * @desc:显示用户信息
70923
- * @author huangbo
70924
- * @date 2024年9月7日
70938
+ /**
70939
+ * @desc:显示用户信息
70940
+ * @author huangbo
70941
+ * @date 2024年9月7日
70925
70942
  **/
70926
70943
  showUserInfo: function showUserInfo() {
70927
70944
  if (this.showUser === false) {
@@ -70929,19 +70946,19 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70929
70946
  }
70930
70947
  },
70931
70948
 
70932
- /**
70933
- * @desc:删除更多应用菜单点击
70934
- * @author huangbo
70935
- * @date 2024年9月7日
70949
+ /**
70950
+ * @desc:删除更多应用菜单点击
70951
+ * @author huangbo
70952
+ * @date 2024年9月7日
70936
70953
  **/
70937
70954
  handleDelete: function handleDelete(index) {
70938
70955
  this.newApps.splice(index, 1);
70939
70956
  },
70940
70957
 
70941
- /**
70942
- * @desc:储存更多应用菜单点击
70943
- * @author huangbo
70944
- * @date 2024年9月7日
70958
+ /**
70959
+ * @desc:储存更多应用菜单点击
70960
+ * @author huangbo
70961
+ * @date 2024年9月7日
70945
70962
  **/
70946
70963
  handlerClickApps: function handlerClickApps(res) {
70947
70964
  if (res.permission === false) {
@@ -70954,10 +70971,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
70954
70971
  this.handlerClickApp(res);
70955
70972
  },
70956
70973
 
70957
- /**
70958
- * @desc:侧边应用菜单点击
70959
- * @author huangbo
70960
- * @date 2024年9月7日
70974
+ /**
70975
+ * @desc:侧边应用菜单点击
70976
+ * @author huangbo
70977
+ * @date 2024年9月7日
70961
70978
  **/
70962
70979
  handlerClickApp: function handlerClickApp(res) {
70963
70980
  this.showMsg = false;
@@ -71046,10 +71063,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71046
71063
  }
71047
71064
  },
71048
71065
 
71049
- /**
71050
- * @desc:显示Drawer界面
71051
- * @author huangbo
71052
- * @date 2024年9月7日
71066
+ /**
71067
+ * @desc:显示Drawer界面
71068
+ * @author huangbo
71069
+ * @date 2024年9月7日
71053
71070
  **/
71054
71071
  handlerSetDrawer: function handlerSetDrawer(res, type) {
71055
71072
  var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
@@ -71069,19 +71086,19 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71069
71086
  }
71070
71087
  },
71071
71088
 
71072
- /**
71073
- * @desc:关闭Drawer界面
71074
- * @author huangbo
71075
- * @date 2024年9月7日
71089
+ /**
71090
+ * @desc:关闭Drawer界面
71091
+ * @author huangbo
71092
+ * @date 2024年9月7日
71076
71093
  **/
71077
71094
  handleCloseDrawer: function handleCloseDrawer() {
71078
71095
  this.drawer = { visible: false };
71079
71096
  },
71080
71097
 
71081
- /**
71082
- * @desc:菜单点击
71083
- * @author huangbo
71084
- * @date 2024年9月7日
71098
+ /**
71099
+ * @desc:菜单点击
71100
+ * @author huangbo
71101
+ * @date 2024年9月7日
71085
71102
  **/
71086
71103
  handlerClickMenu: function handlerClickMenu(res) {
71087
71104
  utils_util.ajax({
@@ -71130,19 +71147,19 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71130
71147
  },
71131
71148
 
71132
71149
 
71133
- /**
71134
- * @desc:用户详情请求成功
71135
- * @author huangbo
71136
- * @date 2024年9月7日
71150
+ /**
71151
+ * @desc:用户详情请求成功
71152
+ * @author huangbo
71153
+ * @date 2024年9月7日
71137
71154
  **/
71138
71155
  handleSuccess: function handleSuccess(res) {
71139
71156
  this.simpleUserInfo = res.simpleUserInfo;
71140
71157
  },
71141
71158
 
71142
- /**
71143
- * @desc:修改用户配置
71144
- * @author huangbo
71145
- * @date 2024年9月7日
71159
+ /**
71160
+ * @desc:修改用户配置
71161
+ * @author huangbo
71162
+ * @date 2024年9月7日
71146
71163
  **/
71147
71164
  handleChangeConfig: function handleChangeConfig(name, res) {
71148
71165
  if (name == 'userHeadUrl') {
@@ -71158,10 +71175,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71158
71175
  }
71159
71176
  },
71160
71177
 
71161
- /**
71162
- * @desc:关闭webSocket
71163
- * @author huangbo
71164
- * @date 2024年9月7日
71178
+ /**
71179
+ * @desc:关闭webSocket
71180
+ * @author huangbo
71181
+ * @date 2024年9月7日
71165
71182
  **/
71166
71183
  handlerClose: function handlerClose() {
71167
71184
  if (this.webSocket) {
@@ -71169,10 +71186,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71169
71186
  }
71170
71187
  },
71171
71188
 
71172
- /**
71173
- * @desc:刷新选中iframe页签
71174
- * @author huangbo
71175
- * @date 2024年9月7日
71189
+ /**
71190
+ * @desc:刷新选中iframe页签
71191
+ * @author huangbo
71192
+ * @date 2024年9月7日
71176
71193
  **/
71177
71194
  handleRefresh: function handleRefresh(arg) {
71178
71195
  var i = arg && arg != true && arg !== 'pageData' ? utils_util.indexOfObj(this.tabs, arg, 'appCode,code,id,url') : utils_util.indexOfObj(this.tabs, this.activeName, 'id');
@@ -71209,10 +71226,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71209
71226
  }
71210
71227
  },
71211
71228
 
71212
- /**
71213
- * @desc:删除iframe
71214
- * @author huangbo
71215
- * @date 2024年9月7日
71229
+ /**
71230
+ * @desc:删除iframe
71231
+ * @author huangbo
71232
+ * @date 2024年9月7日
71216
71233
  **/
71217
71234
  handleRemove: function handleRemove(name) {
71218
71235
  var len = this.tabs.length - 1;
@@ -71229,10 +71246,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71229
71246
  }
71230
71247
  },
71231
71248
 
71232
- /**
71233
- * @desc:tabs鼠标右键事件
71234
- * @author huangbo
71235
- * @date 2024年9月7日
71249
+ /**
71250
+ * @desc:tabs鼠标右键事件
71251
+ * @author huangbo
71252
+ * @date 2024年9月7日
71236
71253
  **/
71237
71254
  handleContextmenu: function handleContextmenu(tabs, e) {
71238
71255
  var disabled = {};
@@ -71257,10 +71274,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71257
71274
  window.addEventListener('click', this.closeTabsEvents);
71258
71275
  },
71259
71276
 
71260
- /**
71261
- * @desc:tabs页签事件
71262
- * @author huangbo
71263
- * @date 2024年9月7日
71277
+ /**
71278
+ * @desc:tabs页签事件
71279
+ * @author huangbo
71280
+ * @date 2024年9月7日
71264
71281
  **/
71265
71282
  handleTabsEvents: function handleTabsEvents(num) {
71266
71283
  if (this.pane !== null) {
@@ -71271,10 +71288,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71271
71288
  },
71272
71289
 
71273
71290
 
71274
- /**
71275
- * @desc:关闭页签事件面板
71276
- * @author huangbo
71277
- * @date 2024年9月7日
71291
+ /**
71292
+ * @desc:关闭页签事件面板
71293
+ * @author huangbo
71294
+ * @date 2024年9月7日
71278
71295
  **/
71279
71296
  closeTabsEvents: function closeTabsEvents(e) {
71280
71297
  if (e.target.parentNode != this.$refs.tabsHandler.$el && e.target.parentNode.parentNode != this.$refs.tabsHandler.$el) {
@@ -71284,10 +71301,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71284
71301
  },
71285
71302
 
71286
71303
 
71287
- /**
71288
- * @desc:tabs页签点击事件
71289
- * @author huangbo
71290
- * @date 2024年9月7日
71304
+ /**
71305
+ * @desc:tabs页签点击事件
71306
+ * @author huangbo
71307
+ * @date 2024年9月7日
71291
71308
  **/
71292
71309
  handleTabClick: function handleTabClick() {
71293
71310
  this.active = '';
@@ -71295,10 +71312,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71295
71312
  this.showMenu = false;
71296
71313
  },
71297
71314
 
71298
- /**
71299
- * @desc:handler工具栏点击事件
71300
- * @author huangbo
71301
- * @date 2024年9月7日
71315
+ /**
71316
+ * @desc:handler工具栏点击事件
71317
+ * @author huangbo
71318
+ * @date 2024年9月7日
71302
71319
  **/
71303
71320
  handleClick: function handleClick(res) {
71304
71321
  var type = res.type,
@@ -71379,10 +71396,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71379
71396
  this.$emit('handler-click', res);
71380
71397
  },
71381
71398
 
71382
- /**
71383
- * @desc:退出登录
71384
- * @author huangbo
71385
- * @date 2024年9月7日
71399
+ /**
71400
+ * @desc:退出登录
71401
+ * @author huangbo
71402
+ * @date 2024年9月7日
71386
71403
  **/
71387
71404
  handleQuit: function handleQuit() {
71388
71405
  var _this7 = this;
@@ -71420,7 +71437,7 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71420
71437
  if (loginPage) {
71421
71438
  var _src = void 0;
71422
71439
  if (!utils_util.startWith(loginPage, ['http', '/'], true)) {
71423
- var pathname = utils_util.win.top.location.pathname;
71440
+ var pathname = utils_util.getWinTop().location.pathname;
71424
71441
  if (pathname !== '/') {
71425
71442
  pathname = pathname.split('/');
71426
71443
  pathname.splice(pathname.length - 1);
@@ -71432,20 +71449,20 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71432
71449
  } else {
71433
71450
  _src = loginPage;
71434
71451
  }
71435
- utils_util.win.top.location.href = _src;
71436
- } else if (utils_util.win.top.location.href.indexOf('main.html') > -1) {
71437
- utils_util.win.top.location.href = './login.html';
71452
+ utils_util.getWinTop().location.href = _src;
71453
+ } else if (utils_util.getWinTop().location.href.indexOf('main.html') > -1) {
71454
+ utils_util.getWinTop().location.href = './login.html';
71438
71455
  } else {
71439
- var hash = utils_util.win.top.location.hash;
71456
+ var hash = utils_util.getWinTop().location.hash;
71440
71457
  if (hash) {
71441
- var len = utils_util.win.top.location.href.indexOf(hash);
71442
- utils_util.win.top.location.href = utils_util.win.location.href.slice(0, len) + '#/login';
71458
+ var len = utils_util.getWinTop().location.href.indexOf(hash);
71459
+ utils_util.getWinTop().location.href = utils_util.win.location.href.slice(0, len) + '#/login';
71443
71460
  } else {
71444
- utils_util.win.top.location.href = '/login.html';
71461
+ utils_util.getWinTop().location.href = '/login.html';
71445
71462
  }
71446
71463
  }
71447
71464
  } catch (error) {
71448
- utils_util.win.top.postMessage({ type: 1 }, '*');
71465
+ utils_util.getWinTop().postMessage({ type: 1 }, '*');
71449
71466
  }
71450
71467
  }
71451
71468
  }
@@ -71457,10 +71474,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71457
71474
  }).catch(function (e) {});
71458
71475
  },
71459
71476
 
71460
- /**
71461
- * @desc:主题、消息回调
71462
- * @author huangbo
71463
- * @date 2024年9月7日
71477
+ /**
71478
+ * @desc:主题、消息回调
71479
+ * @author huangbo
71480
+ * @date 2024年9月7日
71464
71481
  **/
71465
71482
  handleChange: function handleChange(res) {
71466
71483
  var type = res.type,
@@ -71476,10 +71493,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71476
71493
  }
71477
71494
  },
71478
71495
 
71479
- /**
71480
- * @desc:菜单布局样式切换
71481
- * @author huangbo
71482
- * @date 2024年9月7日
71496
+ /**
71497
+ * @desc:菜单布局样式切换
71498
+ * @author huangbo
71499
+ * @date 2024年9月7日
71483
71500
  **/
71484
71501
  handleLayout: function handleLayout(res, active) {
71485
71502
  if (active) {
@@ -71489,10 +71506,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71489
71506
  this.$emit('chang-layout', res, active);
71490
71507
  },
71491
71508
 
71492
- /**
71493
- * @desc:消息修改总数
71494
- * @author huangbo
71495
- * @date 2024年9月7日
71509
+ /**
71510
+ * @desc:消息修改总数
71511
+ * @author huangbo
71512
+ * @date 2024年9月7日
71496
71513
  **/
71497
71514
  handleMenuTips: function handleMenuTips(id, num) {
71498
71515
  if (num) {
@@ -71503,10 +71520,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71503
71520
  }
71504
71521
  },
71505
71522
 
71506
- /**
71507
- * @desc:处理即时消息
71508
- * @author huangbo
71509
- * @date 2024年9月7日
71523
+ /**
71524
+ * @desc:处理即时消息
71525
+ * @author huangbo
71526
+ * @date 2024年9月7日
71510
71527
  **/
71511
71528
  handleOpened: function handleOpened(res) {
71512
71529
  var _this8 = this;
@@ -71634,18 +71651,18 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
71634
71651
 
71635
71652
  var simplicity_component = normalizeComponent(
71636
71653
  src_simplicityvue_type_script_lang_js_,
71637
- simplicityvue_type_template_id_3a1d1142_scoped_true_render,
71638
- simplicityvue_type_template_id_3a1d1142_scoped_true_staticRenderFns,
71654
+ simplicityvue_type_template_id_4f7a89eb_scoped_true_render,
71655
+ simplicityvue_type_template_id_4f7a89eb_scoped_true_staticRenderFns,
71639
71656
  false,
71640
71657
  null,
71641
- "3a1d1142",
71658
+ "4f7a89eb",
71642
71659
  null
71643
71660
 
71644
71661
  )
71645
71662
 
71646
71663
  /* harmony default export */ var simplicity = (simplicity_component.exports);
71647
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicityTop/index.vue?vue&type=template&id=ed17eba0&scoped=true&
71648
- var simplicityTopvue_type_template_id_ed17eba0_scoped_true_render = function () {
71664
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicityTop/index.vue?vue&type=template&id=58443c19&scoped=true&
71665
+ var simplicityTopvue_type_template_id_58443c19_scoped_true_render = function () {
71649
71666
  var _vm = this
71650
71667
  var _h = _vm.$createElement
71651
71668
  var _c = _vm._self._c || _h
@@ -72212,11 +72229,11 @@ var simplicityTopvue_type_template_id_ed17eba0_scoped_true_render = function ()
72212
72229
  1
72213
72230
  )
72214
72231
  }
72215
- var simplicityTopvue_type_template_id_ed17eba0_scoped_true_staticRenderFns = []
72216
- simplicityTopvue_type_template_id_ed17eba0_scoped_true_render._withStripped = true
72232
+ var simplicityTopvue_type_template_id_58443c19_scoped_true_staticRenderFns = []
72233
+ simplicityTopvue_type_template_id_58443c19_scoped_true_render._withStripped = true
72217
72234
 
72218
72235
 
72219
- // CONCATENATED MODULE: ./packages/main/src/simplicityTop/index.vue?vue&type=template&id=ed17eba0&scoped=true&
72236
+ // CONCATENATED MODULE: ./packages/main/src/simplicityTop/index.vue?vue&type=template&id=58443c19&scoped=true&
72220
72237
 
72221
72238
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicityTop/avatar.vue?vue&type=template&id=30391b69&scoped=true&
72222
72239
  var avatarvue_type_template_id_30391b69_scoped_true_render = function () {
@@ -72863,8 +72880,8 @@ uservue_type_template_id_22bc2a9d_scoped_true_render._withStripped = true
72863
72880
 
72864
72881
  // CONCATENATED MODULE: ./packages/main/src/simplicityTop/user.vue?vue&type=template&id=22bc2a9d&scoped=true&
72865
72882
 
72866
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicityTop/userinfo.vue?vue&type=template&id=2a8407e5&
72867
- var userinfovue_type_template_id_2a8407e5_render = function () {
72883
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicityTop/userinfo.vue?vue&type=template&id=a05f8be4&
72884
+ var userinfovue_type_template_id_a05f8be4_render = function () {
72868
72885
  var _vm = this
72869
72886
  var _h = _vm.$createElement
72870
72887
  var _c = _vm._self._c || _h
@@ -72888,11 +72905,11 @@ var userinfovue_type_template_id_2a8407e5_render = function () {
72888
72905
  2
72889
72906
  )
72890
72907
  }
72891
- var userinfovue_type_template_id_2a8407e5_staticRenderFns = []
72892
- userinfovue_type_template_id_2a8407e5_render._withStripped = true
72908
+ var userinfovue_type_template_id_a05f8be4_staticRenderFns = []
72909
+ userinfovue_type_template_id_a05f8be4_render._withStripped = true
72893
72910
 
72894
72911
 
72895
- // CONCATENATED MODULE: ./packages/main/src/simplicityTop/userinfo.vue?vue&type=template&id=2a8407e5&
72912
+ // CONCATENATED MODULE: ./packages/main/src/simplicityTop/userinfo.vue?vue&type=template&id=a05f8be4&
72896
72913
 
72897
72914
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicityTop/userinfo.vue?vue&type=script&lang=js&
72898
72915
  var simplicityTop_userinfovue_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; };
@@ -73159,7 +73176,7 @@ var simplicityTop_userinfovue_type_script_lang_js_props;
73159
73176
  if (loginPage) {
73160
73177
  var src = void 0;
73161
73178
  if (!utils_util.startWith(loginPage, ['http', '/'], true)) {
73162
- var pathname = utils_util.win.top.location.pathname;
73179
+ var pathname = utils_util.getWinTop().location.pathname;
73163
73180
  if (pathname !== '/') {
73164
73181
  pathname = pathname.split('/');
73165
73182
  pathname.splice(pathname.length - 1);
@@ -73171,20 +73188,20 @@ var simplicityTop_userinfovue_type_script_lang_js_props;
73171
73188
  } else {
73172
73189
  src = loginPage;
73173
73190
  }
73174
- utils_util.win.top.location.href = src;
73175
- } else if (utils_util.win.top.location.href.indexOf('main.html') > -1) {
73176
- utils_util.win.top.location.href = './login.html';
73191
+ utils_util.getWinTop().location.href = src;
73192
+ } else if (utils_util.getWinTop().location.href.indexOf('main.html') > -1) {
73193
+ utils_util.getWinTop().location.href = './login.html';
73177
73194
  } else {
73178
- var hash = utils_util.win.top.location.hash;
73195
+ var hash = utils_util.getWinTop().location.hash;
73179
73196
  if (hash) {
73180
- var len = utils_util.win.top.location.href.indexOf(hash);
73181
- utils_util.win.top.location.href = utils_util.win.location.href.slice(0, len) + '#/login';
73197
+ var len = utils_util.getWinTop().location.href.indexOf(hash);
73198
+ utils_util.getWinTop().location.href = utils_util.win.location.href.slice(0, len) + '#/login';
73182
73199
  } else {
73183
- utils_util.win.top.location.href = '/login.html';
73200
+ utils_util.getWinTop().location.href = '/login.html';
73184
73201
  }
73185
73202
  }
73186
73203
  } catch (error) {
73187
- utils_util.win.top.postMessage({ type: 1 }, '*');
73204
+ utils_util.getWinTop().postMessage({ type: 1 }, '*');
73188
73205
  }
73189
73206
  }).catch(function (e) {});
73190
73207
  } else {
@@ -73224,8 +73241,8 @@ var simplicityTop_userinfovue_type_script_lang_js_props;
73224
73241
 
73225
73242
  var simplicityTop_userinfo_component = normalizeComponent(
73226
73243
  src_simplicityTop_userinfovue_type_script_lang_js_,
73227
- userinfovue_type_template_id_2a8407e5_render,
73228
- userinfovue_type_template_id_2a8407e5_staticRenderFns,
73244
+ userinfovue_type_template_id_a05f8be4_render,
73245
+ userinfovue_type_template_id_a05f8be4_staticRenderFns,
73229
73246
  false,
73230
73247
  null,
73231
73248
  null,
@@ -75524,8 +75541,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75524
75541
  this.currentPage = this.setIframeType(this.fourthTabs[0]);
75525
75542
  },
75526
75543
 
75527
- /**
75528
- * queryChildMenu: 查询左侧我的提醒和我的快捷菜单
75544
+ /**
75545
+ * queryChildMenu: 查询左侧我的提醒和我的快捷菜单
75529
75546
  */
75530
75547
  queryChildMenuData: function queryChildMenuData() {
75531
75548
  var _this2 = this;
@@ -75644,8 +75661,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75644
75661
  }))();
75645
75662
  },
75646
75663
 
75647
- /**
75648
- * getVoteMeetingNum: 查询会议数量
75664
+ /**
75665
+ * getVoteMeetingNum: 查询会议数量
75649
75666
  */
75650
75667
  getVoteMeetingNum: function getVoteMeetingNum() {
75651
75668
  var _this5 = this;
@@ -75670,8 +75687,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75670
75687
  });
75671
75688
  },
75672
75689
 
75673
- /**
75674
- * getShareFilesReceiveCountNew: 查询待接收文件数量
75690
+ /**
75691
+ * getShareFilesReceiveCountNew: 查询待接收文件数量
75675
75692
  */
75676
75693
  getShareFilesReceiveCountNew: function getShareFilesReceiveCountNew() {
75677
75694
  var _this6 = this;
@@ -75696,8 +75713,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75696
75713
  },
75697
75714
 
75698
75715
 
75699
- /**
75700
- * getUserTipsInstanceNum: 查询待签收/据签收任务数量 1是拒签收 0是待签收
75716
+ /**
75717
+ * getUserTipsInstanceNum: 查询待签收/据签收任务数量 1是拒签收 0是待签收
75701
75718
  */
75702
75719
  getUserTipsInstanceNum: function getUserTipsInstanceNum(type) {
75703
75720
  var _this7 = this;
@@ -75725,8 +75742,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75725
75742
  });
75726
75743
  },
75727
75744
 
75728
- /**
75729
- * getIndexCount: 查询待办任务数量
75745
+ /**
75746
+ * getIndexCount: 查询待办任务数量
75730
75747
  */
75731
75748
  getIndexCount: function getIndexCount() {
75732
75749
  var _this8 = this;
@@ -75757,10 +75774,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75757
75774
  this.$refs.user.handleSelect(res);
75758
75775
  },
75759
75776
 
75760
- /**
75761
- * @desc:匹配路由
75762
- * @author huangbo
75763
- * @date 2024年9月7日
75777
+ /**
75778
+ * @desc:匹配路由
75779
+ * @author huangbo
75780
+ * @date 2024年9月7日
75764
75781
  **/
75765
75782
  hasRouter: function hasRouter(res, url, code) {
75766
75783
  if (!url) {
@@ -75804,10 +75821,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75804
75821
  return false;
75805
75822
  },
75806
75823
 
75807
- /**
75808
- * @desc:获取初始数据
75809
- * @author huangbo
75810
- * @date 2024年9月7日
75824
+ /**
75825
+ * @desc:获取初始数据
75826
+ * @author huangbo
75827
+ * @date 2024年9月7日
75811
75828
  **/
75812
75829
  init: function init(results) {
75813
75830
  this.setConfig(results);
@@ -75818,10 +75835,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75818
75835
  // }
75819
75836
  },
75820
75837
 
75821
- /**
75822
- * @desc:设置用户配置及信息
75823
- * @author huangbo
75824
- * @date 2024年9月7日
75838
+ /**
75839
+ * @desc:设置用户配置及信息
75840
+ * @author huangbo
75841
+ * @date 2024年9月7日
75825
75842
  **/
75826
75843
  setConfig: function setConfig(results) {
75827
75844
  localStorage.setItem('mainConfig', JSON.stringify(results));
@@ -75985,8 +76002,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
75985
76002
  }
75986
76003
  },
75987
76004
 
75988
- /**
75989
- * @desc:获取用户自定义菜单
76005
+ /**
76006
+ * @desc:获取用户自定义菜单
75990
76007
  **/
75991
76008
  getUseCommonMenu: function getUseCommonMenu() {
75992
76009
  var _this9 = this;
@@ -76016,10 +76033,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76016
76033
  });
76017
76034
  },
76018
76035
 
76019
- /**
76020
- * @desc:获取所有应用
76021
- * @author huangbo
76022
- * @date 2024年9月7日
76036
+ /**
76037
+ * @desc:获取所有应用
76038
+ * @author huangbo
76039
+ * @date 2024年9月7日
76023
76040
  **/
76024
76041
  getApplications: function getApplications() {
76025
76042
  var _this10 = this;
@@ -76067,10 +76084,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76067
76084
  });
76068
76085
  },
76069
76086
 
76070
- /**
76071
- * @desc:获取菜单列表
76072
- * @author huangbo
76073
- * @date 2024年9月7日
76087
+ /**
76088
+ * @desc:获取菜单列表
76089
+ * @author huangbo
76090
+ * @date 2024年9月7日
76074
76091
  **/
76075
76092
  getMenus: function getMenus(loading) {
76076
76093
  var _this11 = this;
@@ -76097,10 +76114,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76097
76114
  });
76098
76115
  },
76099
76116
 
76100
- /**
76101
- * @desc:处理菜单列表
76102
- * @author huangbo
76103
- * @date 2024年9月7日
76117
+ /**
76118
+ * @desc:处理菜单列表
76119
+ * @author huangbo
76120
+ * @date 2024年9月7日
76104
76121
  **/
76105
76122
  renderMenus: function renderMenus(res) {
76106
76123
  // // console.log(res, 'renderMenus');
@@ -76146,9 +76163,9 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76146
76163
  // console.log(this.currentPage, 'currentPage');
76147
76164
  },
76148
76165
 
76149
- /**
76150
- * 更新myRemind中各项的权限状态
76151
- * @param {Array} menus - 完整的菜单列表
76166
+ /**
76167
+ * 更新myRemind中各项的权限状态
76168
+ * @param {Array} menus - 完整的菜单列表
76152
76169
  */
76153
76170
  updateRemindPermission: function updateRemindPermission(menus) {
76154
76171
  // 创建一个Set存储所有菜单的id,方便快速查找
@@ -76176,10 +76193,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76176
76193
  });
76177
76194
  },
76178
76195
 
76179
- /**
76180
- * @desc:设置页面加载类型
76181
- * @author huangbo
76182
- * @date 2024年9月7日
76196
+ /**
76197
+ * @desc:设置页面加载类型
76198
+ * @author huangbo
76199
+ * @date 2024年9月7日
76183
76200
  **/
76184
76201
  setIframeType: function setIframeType(res) {
76185
76202
  var url = res.url;
@@ -76236,10 +76253,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76236
76253
  return res;
76237
76254
  },
76238
76255
 
76239
- /**
76240
- * @desc:获取菜单
76241
- * @author huangbo
76242
- * @date 2024年9月7日
76256
+ /**
76257
+ * @desc:获取菜单
76258
+ * @author huangbo
76259
+ * @date 2024年9月7日
76243
76260
  **/
76244
76261
  getMenu: function getMenu(menus, res, key) {
76245
76262
  if (Array.isArray(menus)) {
@@ -76268,10 +76285,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76268
76285
  return false;
76269
76286
  },
76270
76287
 
76271
- /**
76272
- * @desc:获取菜单第一条数据
76273
- * @author huangbo
76274
- * @date 2024年9月7日
76288
+ /**
76289
+ * @desc:获取菜单第一条数据
76290
+ * @author huangbo
76291
+ * @date 2024年9月7日
76275
76292
  **/
76276
76293
  getFirst: function getFirst(obj) {
76277
76294
  if (!obj) {
@@ -76290,10 +76307,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76290
76307
  }
76291
76308
  },
76292
76309
 
76293
- /**
76294
- * @desc:遍历设置菜单气泡提醒
76295
- * @author huangbo
76296
- * @date 2024年9月7日
76310
+ /**
76311
+ * @desc:遍历设置菜单气泡提醒
76312
+ * @author huangbo
76313
+ * @date 2024年9月7日
76297
76314
  **/
76298
76315
  setTips: function setTips(obj) {
76299
76316
  var _this12 = this;
@@ -76358,10 +76375,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76358
76375
  }
76359
76376
  },
76360
76377
 
76361
- /**
76362
- * @desc:获取气泡提醒
76363
- * @author huangbo
76364
- * @date 2024年9月7日
76378
+ /**
76379
+ * @desc:获取气泡提醒
76380
+ * @author huangbo
76381
+ * @date 2024年9月7日
76365
76382
  **/
76366
76383
  getBadge: function getBadge(res) {
76367
76384
  var num = res.tips || 0;
@@ -76375,10 +76392,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76375
76392
  };
76376
76393
  },
76377
76394
 
76378
- /**
76379
- * @desc:开启weosocket
76380
- * @author huangbo
76381
- * @date 2024年9月7日
76395
+ /**
76396
+ * @desc:开启weosocket
76397
+ * @author huangbo
76398
+ * @date 2024年9月7日
76382
76399
  **/
76383
76400
  initWebSocket: function initWebSocket() {
76384
76401
  var _this14 = this;
@@ -76446,10 +76463,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76446
76463
  });
76447
76464
  },
76448
76465
 
76449
- /**
76450
- * @desc:显示用户信息
76451
- * @author huangbo
76452
- * @date 2024年9月7日
76466
+ /**
76467
+ * @desc:显示用户信息
76468
+ * @author huangbo
76469
+ * @date 2024年9月7日
76453
76470
  **/
76454
76471
  showUserInfo: function showUserInfo() {
76455
76472
  if (this.showUser === false) {
@@ -76457,19 +76474,19 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76457
76474
  }
76458
76475
  },
76459
76476
 
76460
- /**
76461
- * @desc:删除更多应用菜单点击
76462
- * @author huangbo
76463
- * @date 2024年9月7日
76477
+ /**
76478
+ * @desc:删除更多应用菜单点击
76479
+ * @author huangbo
76480
+ * @date 2024年9月7日
76464
76481
  **/
76465
76482
  handleDelete: function handleDelete(index) {
76466
76483
  this.newApps.splice(index, 1);
76467
76484
  },
76468
76485
 
76469
- /**
76470
- * @desc:显示Drawer界面
76471
- * @author huangbo
76472
- * @date 2024年9月7日
76486
+ /**
76487
+ * @desc:显示Drawer界面
76488
+ * @author huangbo
76489
+ * @date 2024年9月7日
76473
76490
  **/
76474
76491
  handlerSetDrawer: function handlerSetDrawer(res, type) {
76475
76492
  var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
@@ -76489,28 +76506,28 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76489
76506
  }
76490
76507
  },
76491
76508
 
76492
- /**
76493
- * @desc:关闭Drawer界面
76494
- * @author huangbo
76495
- * @date 2024年9月7日
76509
+ /**
76510
+ * @desc:关闭Drawer界面
76511
+ * @author huangbo
76512
+ * @date 2024年9月7日
76496
76513
  **/
76497
76514
  handleCloseDrawer: function handleCloseDrawer() {
76498
76515
  this.drawer = { visible: false };
76499
76516
  },
76500
76517
 
76501
- /**
76502
- * @desc:用户详情请求成功
76503
- * @author huangbo
76504
- * @date 2024年9月7日
76518
+ /**
76519
+ * @desc:用户详情请求成功
76520
+ * @author huangbo
76521
+ * @date 2024年9月7日
76505
76522
  **/
76506
76523
  handleSuccess: function handleSuccess(res) {
76507
76524
  this.simpleUserInfo = res.simpleUserInfo;
76508
76525
  },
76509
76526
 
76510
- /**
76511
- * @desc:修改用户配置
76512
- * @author huangbo
76513
- * @date 2024年9月7日
76527
+ /**
76528
+ * @desc:修改用户配置
76529
+ * @author huangbo
76530
+ * @date 2024年9月7日
76514
76531
  **/
76515
76532
  handleChangeConfig: function handleChangeConfig(name, res) {
76516
76533
  if (name == 'userHeadUrl') {
@@ -76526,10 +76543,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76526
76543
  }
76527
76544
  },
76528
76545
 
76529
- /**
76530
- * @desc:关闭webSocket
76531
- * @author huangbo
76532
- * @date 2024年9月7日
76546
+ /**
76547
+ * @desc:关闭webSocket
76548
+ * @author huangbo
76549
+ * @date 2024年9月7日
76533
76550
  **/
76534
76551
  handlerClose: function handlerClose() {
76535
76552
  if (this.webSocket) {
@@ -76540,10 +76557,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76540
76557
  this.handleRefresh(1);
76541
76558
  },
76542
76559
 
76543
- /**
76544
- * @desc:刷新选中iframe页签
76545
- * @author huangbo
76546
- * @date 2024年9月7日
76560
+ /**
76561
+ * @desc:刷新选中iframe页签
76562
+ * @author huangbo
76563
+ * @date 2024年9月7日
76547
76564
  **/
76548
76565
  handleRefresh: function handleRefresh(arg) {
76549
76566
  if (arg !== 1) {
@@ -76589,10 +76606,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76589
76606
  }
76590
76607
  },
76591
76608
 
76592
- /**
76593
- * @desc:删除iframe
76594
- * @author huangbo
76595
- * @date 2024年9月7日
76609
+ /**
76610
+ * @desc:删除iframe
76611
+ * @author huangbo
76612
+ * @date 2024年9月7日
76596
76613
  **/
76597
76614
  handleRemove: function handleRemove(name) {
76598
76615
  var len = this.tabs.length - 1;
@@ -76609,10 +76626,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76609
76626
  }
76610
76627
  },
76611
76628
 
76612
- /**
76613
- * @desc:tabs鼠标右键事件
76614
- * @author huangbo
76615
- * @date 2024年9月7日
76629
+ /**
76630
+ * @desc:tabs鼠标右键事件
76631
+ * @author huangbo
76632
+ * @date 2024年9月7日
76616
76633
  **/
76617
76634
  handleContextmenu: function handleContextmenu(tabs, e) {
76618
76635
  var disabled = {};
@@ -76637,10 +76654,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76637
76654
  window.addEventListener('click', this.closeTabsEvents);
76638
76655
  },
76639
76656
 
76640
- /**
76641
- * @desc:tabs页签事件
76642
- * @author huangbo
76643
- * @date 2024年9月7日
76657
+ /**
76658
+ * @desc:tabs页签事件
76659
+ * @author huangbo
76660
+ * @date 2024年9月7日
76644
76661
  **/
76645
76662
  handleTabsEvents: function handleTabsEvents(num) {
76646
76663
  if (this.pane !== null) {
@@ -76651,10 +76668,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76651
76668
  },
76652
76669
 
76653
76670
 
76654
- /**
76655
- * @desc:关闭页签事件面板
76656
- * @author huangbo
76657
- * @date 2024年9月7日
76671
+ /**
76672
+ * @desc:关闭页签事件面板
76673
+ * @author huangbo
76674
+ * @date 2024年9月7日
76658
76675
  **/
76659
76676
  closeTabsEvents: function closeTabsEvents(e) {
76660
76677
  if (e.target.parentNode != this.$refs.tabsHandler.$el && e.target.parentNode.parentNode != this.$refs.tabsHandler.$el) {
@@ -76664,10 +76681,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76664
76681
  },
76665
76682
 
76666
76683
 
76667
- /**
76668
- * @desc:tabs页签点击事件
76669
- * @author huangbo
76670
- * @date 2024年9月7日
76684
+ /**
76685
+ * @desc:tabs页签点击事件
76686
+ * @author huangbo
76687
+ * @date 2024年9月7日
76671
76688
  **/
76672
76689
  handleTabClick: function handleTabClick() {
76673
76690
  this.active = '';
@@ -76675,10 +76692,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76675
76692
  this.showMenu = false;
76676
76693
  },
76677
76694
 
76678
- /**
76679
- * @desc:handler工具栏点击事件
76680
- * @author huangbo
76681
- * @date 2024年9月7日
76695
+ /**
76696
+ * @desc:handler工具栏点击事件
76697
+ * @author huangbo
76698
+ * @date 2024年9月7日
76682
76699
  **/
76683
76700
  handleClick: function handleClick(res) {
76684
76701
  var type = res.type,
@@ -76764,10 +76781,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76764
76781
  this.$emit('handler-click', res);
76765
76782
  },
76766
76783
 
76767
- /**
76768
- * @desc:退出登录
76769
- * @author huangbo
76770
- * @date 2024年9月7日
76784
+ /**
76785
+ * @desc:退出登录
76786
+ * @author huangbo
76787
+ * @date 2024年9月7日
76771
76788
  **/
76772
76789
  handleQuit: function handleQuit() {
76773
76790
  var _this15 = this;
@@ -76805,7 +76822,7 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76805
76822
  if (loginPage) {
76806
76823
  var _src = void 0;
76807
76824
  if (!utils_util.startWith(loginPage, ['http', '/'], true)) {
76808
- var pathname = utils_util.win.top.location.pathname;
76825
+ var pathname = utils_util.getWinTop().location.pathname;
76809
76826
  if (pathname !== '/') {
76810
76827
  pathname = pathname.split('/');
76811
76828
  pathname.splice(pathname.length - 1);
@@ -76817,20 +76834,20 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76817
76834
  } else {
76818
76835
  _src = loginPage;
76819
76836
  }
76820
- utils_util.win.top.location.href = _src;
76821
- } else if (utils_util.win.top.location.href.indexOf('main.html') > -1) {
76822
- utils_util.win.top.location.href = './login.html';
76837
+ utils_util.getWinTop().location.href = _src;
76838
+ } else if (utils_util.getWinTop().location.href.indexOf('main.html') > -1) {
76839
+ utils_util.getWinTop().location.href = './login.html';
76823
76840
  } else {
76824
- var hash = utils_util.win.top.location.hash;
76841
+ var hash = utils_util.getWinTop().location.hash;
76825
76842
  if (hash) {
76826
- var len = utils_util.win.top.location.href.indexOf(hash);
76827
- utils_util.win.top.location.href = utils_util.win.location.href.slice(0, len) + '#/login';
76843
+ var len = utils_util.getWinTop().location.href.indexOf(hash);
76844
+ utils_util.getWinTop().location.href = utils_util.win.location.href.slice(0, len) + '#/login';
76828
76845
  } else {
76829
- utils_util.win.top.location.href = '/login.html';
76846
+ utils_util.getWinTop().location.href = '/login.html';
76830
76847
  }
76831
76848
  }
76832
76849
  } catch (error) {
76833
- utils_util.win.top.postMessage({ type: 1 }, '*');
76850
+ utils_util.getWinTop().postMessage({ type: 1 }, '*');
76834
76851
  }
76835
76852
  }
76836
76853
  }
@@ -76842,10 +76859,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76842
76859
  }).catch(function (e) {});
76843
76860
  },
76844
76861
 
76845
- /**
76846
- * @desc:主题、消息回调
76847
- * @author huangbo
76848
- * @date 2024年9月7日
76862
+ /**
76863
+ * @desc:主题、消息回调
76864
+ * @author huangbo
76865
+ * @date 2024年9月7日
76849
76866
  **/
76850
76867
  handleChange: function handleChange(res) {
76851
76868
  var type = res.type,
@@ -76861,10 +76878,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76861
76878
  }
76862
76879
  },
76863
76880
 
76864
- /**
76865
- * @desc:菜单布局样式切换
76866
- * @author huangbo
76867
- * @date 2024年9月7日
76881
+ /**
76882
+ * @desc:菜单布局样式切换
76883
+ * @author huangbo
76884
+ * @date 2024年9月7日
76868
76885
  **/
76869
76886
  handleLayout: function handleLayout(res, active) {
76870
76887
  if (active) {
@@ -76874,10 +76891,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76874
76891
  this.$emit('chang-layout', res, active);
76875
76892
  },
76876
76893
 
76877
- /**
76878
- * @desc:消息修改总数
76879
- * @author huangbo
76880
- * @date 2024年9月7日
76894
+ /**
76895
+ * @desc:消息修改总数
76896
+ * @author huangbo
76897
+ * @date 2024年9月7日
76881
76898
  **/
76882
76899
  handleMenuTips: function handleMenuTips(id, num) {
76883
76900
  if (num) {
@@ -76888,10 +76905,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76888
76905
  }
76889
76906
  },
76890
76907
 
76891
- /**
76892
- * @desc:处理即时消息
76893
- * @author huangbo
76894
- * @date 2024年9月7日
76908
+ /**
76909
+ * @desc:处理即时消息
76910
+ * @author huangbo
76911
+ * @date 2024年9月7日
76895
76912
  **/
76896
76913
  handleOpened: function handleOpened(res) {
76897
76914
  var _this16 = this;
@@ -76907,14 +76924,14 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
76907
76924
  }
76908
76925
  },
76909
76926
 
76910
- /**
76911
- * @desc:菜单点击事件
76912
- * @author huangbo
76913
- * @date 2024年9月7日
76914
- * @param {*} res 菜单点击事件参数
76915
- * @param {*} method 菜单点击事件方法
76916
- * 1.顶部菜单点击跳转已经实现
76917
- * 2.其他地方点击跳转,需要选中跳转的一二级菜单
76927
+ /**
76928
+ * @desc:菜单点击事件
76929
+ * @author huangbo
76930
+ * @date 2024年9月7日
76931
+ * @param {*} res 菜单点击事件参数
76932
+ * @param {*} method 菜单点击事件方法
76933
+ * 1.顶部菜单点击跳转已经实现
76934
+ * 2.其他地方点击跳转,需要选中跳转的一二级菜单
76918
76935
  **/
76919
76936
  handleSelect: function handleSelect(res) {
76920
76937
  var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
@@ -77076,11 +77093,11 @@ var simplicityTopvue_type_script_lang_js_systemMode = utils_util.win.systemMode
77076
77093
 
77077
77094
  var simplicityTop_component = normalizeComponent(
77078
77095
  src_simplicityTopvue_type_script_lang_js_,
77079
- simplicityTopvue_type_template_id_ed17eba0_scoped_true_render,
77080
- simplicityTopvue_type_template_id_ed17eba0_scoped_true_staticRenderFns,
77096
+ simplicityTopvue_type_template_id_58443c19_scoped_true_render,
77097
+ simplicityTopvue_type_template_id_58443c19_scoped_true_staticRenderFns,
77081
77098
  false,
77082
77099
  null,
77083
- "ed17eba0",
77100
+ "58443c19",
77084
77101
  null
77085
77102
 
77086
77103
  )
@@ -77644,8 +77661,8 @@ defaultvue_type_template_id_b6763862_render._withStripped = true
77644
77661
 
77645
77662
  // CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=b6763862&
77646
77663
 
77647
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=4160a4c1&
77648
- var userinfovue_type_template_id_4160a4c1_render = function () {
77664
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=d096642a&
77665
+ var userinfovue_type_template_id_d096642a_render = function () {
77649
77666
  var _vm = this
77650
77667
  var _h = _vm.$createElement
77651
77668
  var _c = _vm._self._c || _h
@@ -77661,11 +77678,11 @@ var userinfovue_type_template_id_4160a4c1_render = function () {
77661
77678
  2
77662
77679
  )
77663
77680
  }
77664
- var userinfovue_type_template_id_4160a4c1_staticRenderFns = []
77665
- userinfovue_type_template_id_4160a4c1_render._withStripped = true
77681
+ var userinfovue_type_template_id_d096642a_staticRenderFns = []
77682
+ userinfovue_type_template_id_d096642a_render._withStripped = true
77666
77683
 
77667
77684
 
77668
- // CONCATENATED MODULE: ./packages/main/src/default/userinfo.vue?vue&type=template&id=4160a4c1&
77685
+ // CONCATENATED MODULE: ./packages/main/src/default/userinfo.vue?vue&type=template&id=d096642a&
77669
77686
 
77670
77687
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=script&lang=js&
77671
77688
  var default_userinfovue_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; };
@@ -78035,7 +78052,7 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
78035
78052
  if (loginPage) {
78036
78053
  var src = void 0;
78037
78054
  if (!utils_util.startWith(loginPage, ['http', '/'], true)) {
78038
- var pathname = utils_util.win.top.location.pathname;
78055
+ var pathname = utils_util.getWinTop().location.pathname;
78039
78056
  if (pathname !== '/') {
78040
78057
  pathname = pathname.split('/');
78041
78058
  pathname.splice(pathname.length - 1);
@@ -78047,16 +78064,16 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
78047
78064
  } else {
78048
78065
  src = loginPage;
78049
78066
  }
78050
- utils_util.win.top.location.href = src;
78051
- } else if (utils_util.win.top.location.href.indexOf('main.html') > -1) {
78052
- utils_util.win.top.location.href = './login.html';
78067
+ utils_util.getWinTop().location.href = src;
78068
+ } else if (utils_util.getWinTop().location.href.indexOf('main.html') > -1) {
78069
+ utils_util.getWinTop().location.href = './login.html';
78053
78070
  } else {
78054
- var hash = utils_util.win.top.location.hash;
78071
+ var hash = utils_util.getWinTop().location.hash;
78055
78072
  if (hash) {
78056
- var len = utils_util.win.top.location.href.indexOf(hash);
78057
- utils_util.win.top.location.href = utils_util.win.location.href.slice(0, len) + '#/login';
78073
+ var len = utils_util.getWinTop().location.href.indexOf(hash);
78074
+ utils_util.getWinTop().location.href = utils_util.win.location.href.slice(0, len) + '#/login';
78058
78075
  } else {
78059
- utils_util.win.top.location.href = '/login.html';
78076
+ utils_util.getWinTop().location.href = '/login.html';
78060
78077
  }
78061
78078
  }
78062
78079
  } catch (error) {}
@@ -78125,8 +78142,8 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
78125
78142
 
78126
78143
  var default_userinfo_component = normalizeComponent(
78127
78144
  src_default_userinfovue_type_script_lang_js_,
78128
- userinfovue_type_template_id_4160a4c1_render,
78129
- userinfovue_type_template_id_4160a4c1_staticRenderFns,
78145
+ userinfovue_type_template_id_d096642a_render,
78146
+ userinfovue_type_template_id_d096642a_staticRenderFns,
78130
78147
  false,
78131
78148
  null,
78132
78149
  null,
@@ -81439,7 +81456,7 @@ function main_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys)
81439
81456
  if (loginPage) {
81440
81457
  var src = void 0;
81441
81458
  if (!utils_util.startWith(loginPage, ['http', '/'], true)) {
81442
- var pathname = utils_util.win.top.location.pathname;
81459
+ var pathname = utils_util.getWinTop().location.pathname;
81443
81460
  if (pathname !== '/') {
81444
81461
  pathname = pathname.split('/');
81445
81462
  pathname.splice(pathname.length - 1);
@@ -81451,16 +81468,16 @@ function main_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys)
81451
81468
  } else {
81452
81469
  src = loginPage;
81453
81470
  }
81454
- utils_util.win.top.location.href = src;
81455
- } else if (utils_util.win.top.location.href.indexOf('main.html') > -1) {
81456
- utils_util.win.top.location.href = './login.html';
81471
+ utils_util.getWinTop().location.href = src;
81472
+ } else if (utils_util.getWinTop().location.href.indexOf('main.html') > -1) {
81473
+ utils_util.getWinTop().location.href = './login.html';
81457
81474
  } else {
81458
- var hash = utils_util.win.top.location.hash;
81475
+ var hash = utils_util.getWinTop().location.hash;
81459
81476
  if (hash) {
81460
- var len = utils_util.win.top.location.href.indexOf(hash);
81461
- utils_util.win.top.location.href = utils_util.win.location.href.slice(0, len) + '#/login';
81477
+ var len = utils_util.getWinTop().location.href.indexOf(hash);
81478
+ utils_util.getWinTop().location.href = utils_util.win.location.href.slice(0, len) + '#/login';
81462
81479
  } else {
81463
- utils_util.win.top.location.href = '/login.html';
81480
+ utils_util.getWinTop().location.href = '/login.html';
81464
81481
  }
81465
81482
  }
81466
81483
  } catch (error) {}
@@ -81547,13 +81564,8 @@ function main_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys)
81547
81564
  if (name) {
81548
81565
  var w = 0;
81549
81566
  var h = 0;
81550
- try {
81551
- w = width ? width : utils_util.win.top.screen.availWidth - 10;
81552
- h = height ? height : utils_util.win.top.screen.availHeight - 60;
81553
- } catch (error) {
81554
- w = width ? width : utils_util.win.screen.availWidth - 10;
81555
- h = height ? height : utils_util.win.screen.availHeight - 60;
81556
- }
81567
+ w = width ? width : utils_util.win.screen.availWidth - 10;
81568
+ h = height ? height : utils_util.win.screen.availHeight - 60;
81557
81569
  return utils_util.win.open(src, name, 'width=' + w + 'px,height=' + h + 'px,resizable=yes,status=yes,menubar=no,scrollbars=yes');
81558
81570
  } else {
81559
81571
  return utils_util.win.open(src);
@@ -81742,8 +81754,8 @@ function main_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys)
81742
81754
 
81743
81755
  var main_src_main_component = normalizeComponent(
81744
81756
  packages_main_src_mainvue_type_script_lang_js_,
81745
- mainvue_type_template_id_d38ebb62_render,
81746
- mainvue_type_template_id_d38ebb62_staticRenderFns,
81757
+ mainvue_type_template_id_4e6a76ca_render,
81758
+ mainvue_type_template_id_4e6a76ca_staticRenderFns,
81747
81759
  false,
81748
81760
  null,
81749
81761
  null,
@@ -83318,8 +83330,8 @@ notify_src_main.install = function (Vue) {
83318
83330
  };
83319
83331
 
83320
83332
  /* harmony default export */ var packages_notify = (notify_src_main);
83321
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/pagination/src/main.vue?vue&type=template&id=4fb5d7d0&
83322
- var mainvue_type_template_id_4fb5d7d0_render = function () {
83333
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/pagination/src/main.vue?vue&type=template&id=bd31c1ba&
83334
+ var mainvue_type_template_id_bd31c1ba_render = function () {
83323
83335
  var _vm = this
83324
83336
  var _h = _vm.$createElement
83325
83337
  var _c = _vm._self._c || _h
@@ -83354,11 +83366,11 @@ var mainvue_type_template_id_4fb5d7d0_render = function () {
83354
83366
  )
83355
83367
  )
83356
83368
  }
83357
- var mainvue_type_template_id_4fb5d7d0_staticRenderFns = []
83358
- mainvue_type_template_id_4fb5d7d0_render._withStripped = true
83369
+ var mainvue_type_template_id_bd31c1ba_staticRenderFns = []
83370
+ mainvue_type_template_id_bd31c1ba_render._withStripped = true
83359
83371
 
83360
83372
 
83361
- // CONCATENATED MODULE: ./packages/pagination/src/main.vue?vue&type=template&id=4fb5d7d0&
83373
+ // CONCATENATED MODULE: ./packages/pagination/src/main.vue?vue&type=template&id=bd31c1ba&
83362
83374
 
83363
83375
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/pagination/src/main.vue?vue&type=script&lang=js&
83364
83376
  //
@@ -83383,7 +83395,7 @@ mainvue_type_template_id_4fb5d7d0_render._withStripped = true
83383
83395
  //
83384
83396
 
83385
83397
 
83386
- var paginationLayout = utils_util.win.top.tableLayout || utils_util.win.tableLayout || 'prev, pager, next, sizes, total';
83398
+ var paginationLayout = utils_util.getWinTop().tableLayout || utils_util.win.tableLayout || 'prev, pager, next, sizes, total';
83387
83399
  /* harmony default export */ var pagination_src_mainvue_type_script_lang_js_ = ({
83388
83400
  name: 'EsPagination',
83389
83401
  inheritAttrs: false,
@@ -83458,8 +83470,8 @@ var paginationLayout = utils_util.win.top.tableLayout || utils_util.win.tableLay
83458
83470
 
83459
83471
  var pagination_src_main_component = normalizeComponent(
83460
83472
  packages_pagination_src_mainvue_type_script_lang_js_,
83461
- mainvue_type_template_id_4fb5d7d0_render,
83462
- mainvue_type_template_id_4fb5d7d0_staticRenderFns,
83473
+ mainvue_type_template_id_bd31c1ba_render,
83474
+ mainvue_type_template_id_bd31c1ba_staticRenderFns,
83463
83475
  false,
83464
83476
  null,
83465
83477
  null,
@@ -84867,8 +84879,8 @@ radio_group_src_main.install = function (Vue) {
84867
84879
  };
84868
84880
 
84869
84881
  /* harmony default export */ var radio_group = (radio_group_src_main);
84870
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/retrial-auth/src/main.vue?vue&type=template&id=95bd3598&
84871
- var mainvue_type_template_id_95bd3598_render = function () {
84882
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/retrial-auth/src/main.vue?vue&type=template&id=61086a74&
84883
+ var mainvue_type_template_id_61086a74_render = function () {
84872
84884
  var _vm = this
84873
84885
  var _h = _vm.$createElement
84874
84886
  var _c = _vm._self._c || _h
@@ -85017,11 +85029,11 @@ var mainvue_type_template_id_95bd3598_render = function () {
85017
85029
  1
85018
85030
  )
85019
85031
  }
85020
- var mainvue_type_template_id_95bd3598_staticRenderFns = []
85021
- mainvue_type_template_id_95bd3598_render._withStripped = true
85032
+ var mainvue_type_template_id_61086a74_staticRenderFns = []
85033
+ mainvue_type_template_id_61086a74_render._withStripped = true
85022
85034
 
85023
85035
 
85024
- // CONCATENATED MODULE: ./packages/retrial-auth/src/main.vue?vue&type=template&id=95bd3598&
85036
+ // CONCATENATED MODULE: ./packages/retrial-auth/src/main.vue?vue&type=template&id=61086a74&
85025
85037
 
85026
85038
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/retrial-auth/src/main.vue?vue&type=script&lang=js&
85027
85039
  //
@@ -85199,9 +85211,9 @@ mainvue_type_template_id_95bd3598_render._withStripped = true
85199
85211
  });
85200
85212
  _this3.msgBox.handleClose();
85201
85213
  try {
85202
- _this3.reload && utils_util.win.top.location.reload();
85214
+ _this3.reload && utils_util.getWinTop().location.reload();
85203
85215
  } catch (error) {
85204
- _this3.reload && utils_util.win.top.postMessage({ type: 3 }, '*');
85216
+ _this3.reload && utils_util.getWinTop().postMessage({ type: 3 }, '*');
85205
85217
  }
85206
85218
  } else {
85207
85219
  _this3.$message({
@@ -85279,9 +85291,9 @@ mainvue_type_template_id_95bd3598_render._withStripped = true
85279
85291
  });
85280
85292
  _this5.msgBox.handleClose();
85281
85293
  try {
85282
- _this5.reload && utils_util.win.top.location.reload();
85294
+ _this5.reload && utils_util.getWinTop().location.reload();
85283
85295
  } catch (error) {
85284
- _this5.reload && utils_util.win.top.postMessage({ type: 3 }, '*');
85296
+ _this5.reload && utils_util.getWinTop().postMessage({ type: 3 }, '*');
85285
85297
  }
85286
85298
  } else {
85287
85299
  _this5.scanCode = setTimeout(function () {
@@ -85313,8 +85325,8 @@ mainvue_type_template_id_95bd3598_render._withStripped = true
85313
85325
 
85314
85326
  var retrial_auth_src_main_component = normalizeComponent(
85315
85327
  packages_retrial_auth_src_mainvue_type_script_lang_js_,
85316
- mainvue_type_template_id_95bd3598_render,
85317
- mainvue_type_template_id_95bd3598_staticRenderFns,
85328
+ mainvue_type_template_id_61086a74_render,
85329
+ mainvue_type_template_id_61086a74_staticRenderFns,
85318
85330
  false,
85319
85331
  null,
85320
85332
  null,
@@ -85897,8 +85909,8 @@ function select_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, key
85897
85909
  if (!this.hide) {
85898
85910
  if (this.readonly) {
85899
85911
  var dom = [];
85900
- var models = JSON.parse(JSON.stringify(this.models));
85901
- if (models.includes(',')) {
85912
+ var models = this.models ? JSON.parse(JSON.stringify(this.models)) : '';
85913
+ if (typeof models === 'string' && models.includes(',')) {
85902
85914
  models = models.split(',');
85903
85915
  }
85904
85916
  if (Array.isArray(models)) {
@@ -94741,8 +94753,8 @@ tree_src_main.install = function (Vue) {
94741
94753
  };
94742
94754
 
94743
94755
  /* harmony default export */ var packages_tree = (tree_src_main);
94744
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=template&id=504a0e1c&
94745
- var mainvue_type_template_id_504a0e1c_render = function () {
94756
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=template&id=6cbe8105&
94757
+ var mainvue_type_template_id_6cbe8105_render = function () {
94746
94758
  var _vm = this
94747
94759
  var _h = _vm.$createElement
94748
94760
  var _c = _vm._self._c || _h
@@ -95105,11 +95117,11 @@ var mainvue_type_template_id_504a0e1c_render = function () {
95105
95117
  2
95106
95118
  )
95107
95119
  }
95108
- var mainvue_type_template_id_504a0e1c_staticRenderFns = []
95109
- mainvue_type_template_id_504a0e1c_render._withStripped = true
95120
+ var mainvue_type_template_id_6cbe8105_staticRenderFns = []
95121
+ mainvue_type_template_id_6cbe8105_render._withStripped = true
95110
95122
 
95111
95123
 
95112
- // CONCATENATED MODULE: ./packages/tree-group/src/main.vue?vue&type=template&id=504a0e1c&
95124
+ // CONCATENATED MODULE: ./packages/tree-group/src/main.vue?vue&type=template&id=6cbe8105&
95113
95125
 
95114
95126
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=script&lang=js&
95115
95127
  var tree_group_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; };
@@ -95300,14 +95312,14 @@ var tree_group_src_mainvue_type_script_lang_js_extends = Object.assign || functi
95300
95312
  //
95301
95313
 
95302
95314
 
95303
- var src_mainvue_type_script_lang_js_systemMode = utils_util.win.top.systemMode || utils_util.win.systemMode || 'default';
95315
+ var mainvue_type_script_lang_js_systemMode = utils_util.getWinTop().systemMode || utils_util.win.systemMode || 'default';
95304
95316
  /* harmony default export */ var tree_group_src_mainvue_type_script_lang_js_ = ({
95305
95317
  name: 'EsTreeGroup',
95306
95318
  inheritAttrs: false,
95307
95319
  props: {
95308
95320
  mode: {
95309
95321
  type: String,
95310
- default: src_mainvue_type_script_lang_js_systemMode
95322
+ default: mainvue_type_script_lang_js_systemMode
95311
95323
  },
95312
95324
  host: {
95313
95325
  type: String,
@@ -95663,8 +95675,8 @@ var src_mainvue_type_script_lang_js_systemMode = utils_util.win.top.systemMode |
95663
95675
 
95664
95676
  var tree_group_src_main_component = normalizeComponent(
95665
95677
  packages_tree_group_src_mainvue_type_script_lang_js_,
95666
- mainvue_type_template_id_504a0e1c_render,
95667
- mainvue_type_template_id_504a0e1c_staticRenderFns,
95678
+ mainvue_type_template_id_6cbe8105_render,
95679
+ mainvue_type_template_id_6cbe8105_staticRenderFns,
95668
95680
  false,
95669
95681
  null,
95670
95682
  null,
@@ -102465,7 +102477,7 @@ if (typeof window !== 'undefined' && window.Vue) {
102465
102477
  }
102466
102478
 
102467
102479
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
102468
- version: '0.7.89',
102480
+ version: '0.7.91',
102469
102481
  install: install,
102470
102482
  Button: packages_button,
102471
102483
  ButtonGroup: button_group,