eoss-ui 0.8.24 → 0.8.26

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 (106) hide show
  1. package/lib/button-group.js +2 -2
  2. package/lib/calendar.js +2 -2
  3. package/lib/calogin.js +3 -2
  4. package/lib/card.js +2 -2
  5. package/lib/checkbox-group.js +3 -2
  6. package/lib/clients.js +2 -2
  7. package/lib/dialog.js +2 -2
  8. package/lib/enable-drag.js +2 -2
  9. package/lib/enterprise.js +2 -2
  10. package/lib/eoss-ui.common.js +603 -151
  11. package/lib/error-page.js +2 -2
  12. package/lib/flow-list.js +96 -96
  13. package/lib/flow.js +37 -37
  14. package/lib/form.js +566 -105
  15. package/lib/index.js +1 -1
  16. package/lib/layout.js +2 -2
  17. package/lib/login.js +3 -2
  18. package/lib/main.js +5 -5
  19. package/lib/theme-chalk/form.css +1 -1
  20. package/lib/theme-chalk/index.css +1 -1
  21. package/lib/theme-chalk/login.css +1 -1
  22. package/lib/upload.js +3 -2
  23. package/package.json +1 -1
  24. package/packages/button-group/src/main.vue +346 -346
  25. package/packages/calogin/src/main.vue +412 -412
  26. package/packages/clients/src/main.vue +151 -151
  27. package/packages/flow/src/component/CommonOpinions.vue +376 -376
  28. package/packages/flow/src/component/FileList.vue +97 -97
  29. package/packages/flow/src/component/SendMsg.vue +242 -242
  30. package/packages/flow/src/component/SortFlow.vue +110 -110
  31. package/packages/flow/src/form.vue +123 -123
  32. package/packages/flow/src/main.vue +1 -1
  33. package/packages/flow/src/table.vue +58 -58
  34. package/packages/flow-list/src/main.vue +2337 -2337
  35. package/packages/form/src/1.json +17 -0
  36. package/packages/form/src/form-tab-item-render.vue +145 -0
  37. package/packages/form/src/main.vue +46 -0
  38. package/packages/form/src/table.vue +1512 -1512
  39. package/packages/icon/src/main.vue +104 -104
  40. package/packages/login/src/resetPassword.vue +557 -557
  41. package/packages/main/src/public/online.vue +89 -89
  42. package/packages/main/src/public/search.vue +464 -464
  43. package/packages/main/src/public/settings.vue +273 -273
  44. package/packages/main/src/simplicity/apps.vue +388 -388
  45. package/packages/main/src/simplicity/avatar.vue +82 -82
  46. package/packages/main/src/simplicity/handler.vue +158 -158
  47. package/packages/main/src/simplicity/menu-list.vue +135 -135
  48. package/packages/main/src/simplicity/message.vue +293 -293
  49. package/packages/main/src/simplicity/notice.vue +222 -222
  50. package/packages/main/src/simplicity/sub-menu.vue +276 -276
  51. package/packages/main/src/simplicity/user.vue +259 -259
  52. package/packages/main/src/simplicityTop/apps.vue +388 -388
  53. package/packages/main/src/simplicityTop/avatar.vue +82 -82
  54. package/packages/main/src/simplicityTop/handler.vue +215 -215
  55. package/packages/main/src/simplicityTop/lists.vue +84 -84
  56. package/packages/main/src/simplicityTop/menu-list.vue +135 -135
  57. package/packages/main/src/simplicityTop/message.vue +293 -293
  58. package/packages/main/src/simplicityTop/notice.vue +222 -222
  59. package/packages/main/src/simplicityTop/router-page.vue +45 -45
  60. package/packages/main/src/simplicityTop/sub-menu.vue +274 -274
  61. package/packages/main/src/simplicityTop/user.vue +259 -259
  62. package/packages/nav/src/main.vue +351 -351
  63. package/packages/selector/src/main.vue +761 -761
  64. package/packages/selector-panel/src/main.vue +1036 -1036
  65. package/packages/selector-panel/src/selection.vue +174 -174
  66. package/packages/switch/src/main.vue +170 -170
  67. package/packages/theme-chalk/lib/form.css +1 -1
  68. package/packages/theme-chalk/lib/index.css +1 -1
  69. package/packages/theme-chalk/lib/login.css +1 -1
  70. package/packages/theme-chalk/src/data-table.scss +297 -297
  71. package/packages/theme-chalk/src/flow-list.scss +55 -55
  72. package/packages/theme-chalk/src/form.scss +504 -501
  73. package/packages/theme-chalk/src/handler.scss +148 -148
  74. package/packages/theme-chalk/src/icon.scss +3452 -3452
  75. package/packages/theme-chalk/src/login.scss +1006 -1006
  76. package/packages/theme-chalk/src/main.scss +664 -664
  77. package/packages/theme-chalk/src/menu.scss +224 -224
  78. package/packages/theme-chalk/src/selector.scss +114 -114
  79. package/packages/theme-chalk/src/simplicity-top.scss +1845 -1845
  80. package/packages/theme-chalk/src/simplicity.scss +1403 -1403
  81. package/packages/theme-chalk/src/upload.scss +172 -172
  82. package/packages/tips/src/main.vue +141 -141
  83. package/packages/wujie/src/main.vue +146 -146
  84. package/src/index.js +163 -163
  85. package/src/utils/rules.js +18 -18
  86. package/packages/.DS_Store +0 -0
  87. package/packages/calogin/.DS_Store +0 -0
  88. package/packages/date-picker/.DS_Store +0 -0
  89. package/packages/date-picker/src/.DS_Store +0 -0
  90. package/packages/dialog/.DS_Store +0 -0
  91. package/packages/flow/.DS_Store +0 -0
  92. package/packages/flow/src/.DS_Store +0 -0
  93. package/packages/flow-list/.DS_Store +0 -0
  94. package/packages/form/.DS_Store +0 -0
  95. package/packages/icon/.DS_Store +0 -0
  96. package/packages/login/.DS_Store +0 -0
  97. package/packages/main/.DS_Store +0 -0
  98. package/packages/main/src/.DS_Store +0 -0
  99. package/packages/menu/.DS_Store +0 -0
  100. package/packages/select/.DS_Store +0 -0
  101. package/packages/selector/.DS_Store +0 -0
  102. package/packages/selector-panel/.DS_Store +0 -0
  103. package/packages/theme-chalk/src/.DS_Store +0 -0
  104. package/packages/upload/.DS_Store +0 -0
  105. package/src/.DS_Store +0 -0
  106. package/src/utils/.DS_Store +0 -0
@@ -259,7 +259,7 @@ module.exports = require("lodash");
259
259
 
260
260
  exports = module.exports = __webpack_require__(25)(false);
261
261
  // Module
262
- 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", ""]);
262
+ 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", ""]);
263
263
 
264
264
 
265
265
 
@@ -18264,8 +18264,8 @@ error_page_src_main.install = function (Vue) {
18264
18264
  };
18265
18265
 
18266
18266
  /* harmony default export */ var error_page = (error_page_src_main);
18267
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=26e121c2&
18268
- var mainvue_type_template_id_26e121c2_render = function () {
18267
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=2523114d&
18268
+ var mainvue_type_template_id_2523114d_render = function () {
18269
18269
  var _vm = this
18270
18270
  var _h = _vm.$createElement
18271
18271
  var _c = _vm._self._c || _h
@@ -20174,6 +20174,52 @@ var mainvue_type_template_id_26e121c2_render = function () {
20174
20174
  item.events
20175
20175
  )
20176
20176
  )
20177
+ : item.type ===
20178
+ "tabs"
20179
+ ? _c(
20180
+ "form-item-renderer",
20181
+ {
20182
+ attrs: {
20183
+ items:
20184
+ item,
20185
+ models:
20186
+ _vm.models,
20187
+ readonly:
20188
+ _vm.readonly,
20189
+ "show-label":
20190
+ _vm.showLabel,
20191
+ "label-width":
20192
+ _vm.labelWidth,
20193
+ hides:
20194
+ _vm.hides,
20195
+ "handle-excl-attribute":
20196
+ _vm.handleExclAttribute,
20197
+ "get-label":
20198
+ _vm.getLabel,
20199
+ "get-rules":
20200
+ _vm.getRules,
20201
+ "get-style":
20202
+ _vm.getStyle,
20203
+ "handle-blur":
20204
+ _vm.handleBlur,
20205
+ "handle-focus":
20206
+ _vm.handleFocus,
20207
+ "handle-change":
20208
+ _vm.handleChange,
20209
+ "handle-click":
20210
+ _vm.handleClick,
20211
+ "handle-data-change":
20212
+ _vm.handleDataChange,
20213
+ },
20214
+ on: {
20215
+ change:
20216
+ _vm.handleChange,
20217
+ blur: _vm.handleBlur,
20218
+ focus:
20219
+ _vm.handleFocus,
20220
+ },
20221
+ }
20222
+ )
20177
20223
  : _c(
20178
20224
  "es-input",
20179
20225
  _vm._b(
@@ -22898,6 +22944,39 @@ var mainvue_type_template_id_26e121c2_render = function () {
22898
22944
  item.events
22899
22945
  )
22900
22946
  )
22947
+ : item.type === "tabs"
22948
+ ? _c("form-item-renderer", {
22949
+ attrs: {
22950
+ items: item.contents,
22951
+ models: _vm.models,
22952
+ readonly: _vm.readonly,
22953
+ "show-label":
22954
+ _vm.showLabel,
22955
+ "label-width":
22956
+ _vm.labelWidth,
22957
+ hides: _vm.hides,
22958
+ "handle-excl-attribute":
22959
+ _vm.handleExclAttribute,
22960
+ "get-label": _vm.getLabel,
22961
+ "get-rules": _vm.getRules,
22962
+ "get-style": _vm.getStyle,
22963
+ "handle-blur":
22964
+ _vm.handleBlur,
22965
+ "handle-focus":
22966
+ _vm.handleFocus,
22967
+ "handle-change":
22968
+ _vm.handleChange,
22969
+ "handle-click":
22970
+ _vm.handleClick,
22971
+ "handle-data-change":
22972
+ _vm.handleDataChange,
22973
+ },
22974
+ on: {
22975
+ change: _vm.handleChange,
22976
+ blur: _vm.handleBlur,
22977
+ focus: _vm.handleFocus,
22978
+ },
22979
+ })
22901
22980
  : _c(
22902
22981
  "es-input",
22903
22982
  _vm._b(
@@ -24547,11 +24626,11 @@ var mainvue_type_template_id_26e121c2_render = function () {
24547
24626
  )
24548
24627
  : _vm._e()
24549
24628
  }
24550
- var mainvue_type_template_id_26e121c2_staticRenderFns = []
24551
- mainvue_type_template_id_26e121c2_render._withStripped = true
24629
+ var mainvue_type_template_id_2523114d_staticRenderFns = []
24630
+ mainvue_type_template_id_2523114d_render._withStripped = true
24552
24631
 
24553
24632
 
24554
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=26e121c2&
24633
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=2523114d&
24555
24634
 
24556
24635
  // CONCATENATED MODULE: ./src/utils/rules.js
24557
24636
  // 手机号
@@ -24572,6 +24651,333 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
24572
24651
  ip: ip,
24573
24652
  bankCard: bankCard
24574
24653
  });
24654
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/form-tab-item-render.vue?vue&type=template&id=1601dce4&
24655
+ var form_tab_item_rendervue_type_template_id_1601dce4_render = function () {
24656
+ var _vm = this
24657
+ var _h = _vm.$createElement
24658
+ var _c = _vm._self._c || _h
24659
+ return _c(
24660
+ "el-tabs",
24661
+ _vm._b(
24662
+ {
24663
+ staticClass: "es-form-tabs",
24664
+ model: {
24665
+ value: _vm.activeName,
24666
+ callback: function ($$v) {
24667
+ _vm.activeName = $$v
24668
+ },
24669
+ expression: "activeName",
24670
+ },
24671
+ },
24672
+ "el-tabs",
24673
+ _vm.$attrs,
24674
+ false
24675
+ ),
24676
+ _vm._l(_vm.items, function (tab, index) {
24677
+ return _c(
24678
+ "el-tab-pane",
24679
+ { key: tab.name || index, attrs: { label: tab.title, name: tab.name } },
24680
+ [
24681
+ _vm._l(tab.contents, function (item, subIndex) {
24682
+ return [
24683
+ item.type === "caption" && !item.hide
24684
+ ? _c(
24685
+ "div",
24686
+ {
24687
+ key: "caption-" + subIndex,
24688
+ staticClass: "es-form-item-caption",
24689
+ },
24690
+ [_vm._v("\n " + _vm._s(item.text) + "\n ")]
24691
+ )
24692
+ : !item.hide
24693
+ ? _c(
24694
+ "el-form-item",
24695
+ {
24696
+ key: item.name || subIndex,
24697
+ style: _vm.getStyle ? _vm.getStyle(item) : {},
24698
+ attrs: {
24699
+ "label-width": _vm.getItemLabelWidth(item),
24700
+ prop: item.name,
24701
+ rules: _vm.getRules ? _vm.getRules(item) : [],
24702
+ },
24703
+ },
24704
+ [
24705
+ _vm.shouldShowLabel(item)
24706
+ ? _c(
24707
+ "es-label",
24708
+ _vm._b(
24709
+ { attrs: { slot: "label" }, slot: "label" },
24710
+ "es-label",
24711
+ _vm.getLabel ? _vm.getLabel(item.label) : {},
24712
+ false
24713
+ )
24714
+ )
24715
+ : _vm._e(),
24716
+ item.type == "table"
24717
+ ? _c(
24718
+ "es-data-table",
24719
+ _vm._g(
24720
+ _vm._b(
24721
+ {
24722
+ attrs: {
24723
+ data: _vm.models[item.name],
24724
+ full:
24725
+ item.height != undefined ||
24726
+ item.height != null,
24727
+ readonly:
24728
+ item.readonly !== undefined
24729
+ ? item.readonly
24730
+ : _vm.readonly,
24731
+ },
24732
+ on: {
24733
+ blur: function (val, data) {
24734
+ _vm.handleBlur(item, val, data)
24735
+ },
24736
+ focus: function (val, data) {
24737
+ _vm.handleFocus(item, val, data)
24738
+ },
24739
+ edit: function (val, data) {
24740
+ _vm.handleChange(item, val, data)
24741
+ },
24742
+ btnClick: _vm.handleClick,
24743
+ dataChange: _vm.handleDataChange,
24744
+ },
24745
+ },
24746
+ "es-data-table",
24747
+ _vm.handleExclAttribute({
24748
+ data: item,
24749
+ attrs: ["value", "events"],
24750
+ }),
24751
+ false
24752
+ ),
24753
+ item.events
24754
+ )
24755
+ )
24756
+ : _c(
24757
+ _vm.getComponentName(item.type),
24758
+ _vm._g(
24759
+ _vm._b(
24760
+ {
24761
+ tag: "component",
24762
+ attrs: {
24763
+ readonly:
24764
+ item.readonly !== undefined
24765
+ ? item.readonly
24766
+ : _vm.readonly,
24767
+ },
24768
+ on: {
24769
+ change: function (val) {
24770
+ return _vm.$emit("change", item, val)
24771
+ },
24772
+ },
24773
+ model: {
24774
+ value: _vm.models[item.name],
24775
+ callback: function ($$v) {
24776
+ _vm.$set(_vm.models, item.name, $$v)
24777
+ },
24778
+ expression: "models[item.name]",
24779
+ },
24780
+ },
24781
+ "component",
24782
+ _vm.handleExclAttribute
24783
+ ? _vm.handleExclAttribute({
24784
+ data: item,
24785
+ attrs: ["value", "events"],
24786
+ })
24787
+ : {},
24788
+ false
24789
+ ),
24790
+ item.events
24791
+ )
24792
+ ),
24793
+ ],
24794
+ 1
24795
+ )
24796
+ : _vm._e(),
24797
+ ]
24798
+ }),
24799
+ ],
24800
+ 2
24801
+ )
24802
+ }),
24803
+ 1
24804
+ )
24805
+ }
24806
+ var form_tab_item_rendervue_type_template_id_1601dce4_staticRenderFns = []
24807
+ form_tab_item_rendervue_type_template_id_1601dce4_render._withStripped = true
24808
+
24809
+
24810
+ // CONCATENATED MODULE: ./packages/form/src/form-tab-item-render.vue?vue&type=template&id=1601dce4&
24811
+
24812
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/form-tab-item-render.vue?vue&type=script&lang=js&
24813
+ //
24814
+ //
24815
+ //
24816
+ //
24817
+ //
24818
+ //
24819
+ //
24820
+ //
24821
+ //
24822
+ //
24823
+ //
24824
+ //
24825
+ //
24826
+ //
24827
+ //
24828
+ //
24829
+ //
24830
+ //
24831
+ //
24832
+ //
24833
+ //
24834
+ //
24835
+ //
24836
+ //
24837
+ //
24838
+ //
24839
+ //
24840
+ //
24841
+ //
24842
+ //
24843
+ //
24844
+ //
24845
+ //
24846
+ //
24847
+ //
24848
+ //
24849
+ //
24850
+ //
24851
+ //
24852
+ //
24853
+ //
24854
+ //
24855
+ //
24856
+ //
24857
+ //
24858
+ //
24859
+ //
24860
+ //
24861
+ //
24862
+ //
24863
+ //
24864
+ //
24865
+ //
24866
+ //
24867
+ //
24868
+ //
24869
+ //
24870
+ //
24871
+ //
24872
+ //
24873
+ //
24874
+ //
24875
+ //
24876
+ //
24877
+ //
24878
+ //
24879
+ //
24880
+ //
24881
+ //
24882
+ //
24883
+ //
24884
+ //
24885
+ //
24886
+ //
24887
+ //
24888
+ //
24889
+ //
24890
+ //
24891
+ //
24892
+ //
24893
+ //
24894
+ //
24895
+ //
24896
+ //
24897
+
24898
+ /* harmony default export */ var form_tab_item_rendervue_type_script_lang_js_ = ({
24899
+ name: 'FormTabItemRender',
24900
+ inheritAttrs: false, // 允许将 el-tabs 的属性透传
24901
+ props: {
24902
+ // 这里的 items 对应 JSON 中的 contents 数组,即 Tab Pane 列表
24903
+ items: { type: Array, default: function _default() {
24904
+ return [];
24905
+ } },
24906
+ models: { type: Object, default: function _default() {
24907
+ return {};
24908
+ } },
24909
+ readonly: Boolean,
24910
+ showLabel: Boolean,
24911
+ labelWidth: String,
24912
+ hides: { type: Array, default: function _default() {
24913
+ return [];
24914
+ } },
24915
+ // 工具方法
24916
+ handleExclAttribute: Function,
24917
+ getLabel: Function,
24918
+ getRules: Function,
24919
+ handleBlur: Function,
24920
+ handleFocus: Function,
24921
+ handleChange: Function,
24922
+ handleClick: Function,
24923
+ handleDataChange: Function,
24924
+ getStyle: Function
24925
+ },
24926
+ data: function data() {
24927
+ return {
24928
+ activeName: ''
24929
+ };
24930
+ },
24931
+ mounted: function mounted() {
24932
+ console.log('this.items', this.items);
24933
+ this.activeName = this.items[0].name;
24934
+ console.log('active', this.activeName);
24935
+ },
24936
+
24937
+ methods: {
24938
+ getComponentName: function getComponentName(type) {
24939
+ var map = {
24940
+ input: 'es-input',
24941
+ select: 'es-select',
24942
+ number: 'es-input-number',
24943
+ radio: 'es-radio-group',
24944
+ checkbox: 'es-checkbox-group',
24945
+ date: 'es-date-picker',
24946
+ table: 'es-data-table',
24947
+ textarea: 'es-input' // 假设 textarea 也是 es-input 带 type="textarea"
24948
+ };
24949
+ return map[type] || 'es-input';
24950
+ },
24951
+ shouldShowLabel: function shouldShowLabel(item) {
24952
+ return item.showLabel !== false && item.label && !item.labelHide && this.showLabel;
24953
+ },
24954
+ getItemLabelWidth: function getItemLabelWidth(item) {
24955
+ return this.shouldShowLabel(item) ? this.labelWidth : '0';
24956
+ }
24957
+ }
24958
+ });
24959
+ // CONCATENATED MODULE: ./packages/form/src/form-tab-item-render.vue?vue&type=script&lang=js&
24960
+ /* harmony default export */ var src_form_tab_item_rendervue_type_script_lang_js_ = (form_tab_item_rendervue_type_script_lang_js_);
24961
+ // CONCATENATED MODULE: ./packages/form/src/form-tab-item-render.vue
24962
+
24963
+
24964
+
24965
+
24966
+
24967
+ /* normalize component */
24968
+
24969
+ var form_tab_item_render_component = normalizeComponent(
24970
+ src_form_tab_item_rendervue_type_script_lang_js_,
24971
+ form_tab_item_rendervue_type_template_id_1601dce4_render,
24972
+ form_tab_item_rendervue_type_template_id_1601dce4_staticRenderFns,
24973
+ false,
24974
+ null,
24975
+ null,
24976
+ null
24977
+
24978
+ )
24979
+
24980
+ /* harmony default export */ var form_tab_item_render = (form_tab_item_render_component.exports);
24575
24981
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=script&lang=js&
24576
24982
 
24577
24983
 
@@ -27043,12 +27449,57 @@ function form_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
27043
27449
  //
27044
27450
  //
27045
27451
  //
27452
+ //
27453
+ //
27454
+ //
27455
+ //
27456
+ //
27457
+ //
27458
+ //
27459
+ //
27460
+ //
27461
+ //
27462
+ //
27463
+ //
27464
+ //
27465
+ //
27466
+ //
27467
+ //
27468
+ //
27469
+ //
27470
+ //
27471
+ //
27472
+ //
27473
+ //
27474
+ //
27475
+ //
27476
+ //
27477
+ //
27478
+ //
27479
+ //
27480
+ //
27481
+ //
27482
+ //
27483
+ //
27484
+ //
27485
+ //
27486
+ //
27487
+ //
27488
+ //
27489
+ //
27490
+ //
27491
+ //
27492
+ //
27493
+ //
27494
+ //
27495
+ //
27046
27496
 
27047
27497
 
27048
27498
 
27049
27499
 
27050
27500
 
27051
27501
  var mainvue_type_script_lang_js_pageView = utils_util.getParams('pageView');
27502
+
27052
27503
  /* harmony default export */ var form_src_mainvue_type_script_lang_js_ = ({
27053
27504
  name: 'EsForm',
27054
27505
  inheritAttrs: false,
@@ -27072,6 +27523,7 @@ var mainvue_type_script_lang_js_pageView = utils_util.getParams('pageView');
27072
27523
  default: ''
27073
27524
  }
27074
27525
  },
27526
+ components: { FormItemRenderer: form_tab_item_render },
27075
27527
  props: {
27076
27528
  viewCode: {
27077
27529
  type: String,
@@ -28415,8 +28867,8 @@ var mainvue_type_script_lang_js_pageView = utils_util.getParams('pageView');
28415
28867
 
28416
28868
  var form_src_main_component = normalizeComponent(
28417
28869
  packages_form_src_mainvue_type_script_lang_js_,
28418
- mainvue_type_template_id_26e121c2_render,
28419
- mainvue_type_template_id_26e121c2_staticRenderFns,
28870
+ mainvue_type_template_id_2523114d_render,
28871
+ mainvue_type_template_id_2523114d_staticRenderFns,
28420
28872
  false,
28421
28873
  null,
28422
28874
  null,
@@ -28433,8 +28885,8 @@ form_src_main.install = function (Vue) {
28433
28885
  };
28434
28886
 
28435
28887
  /* harmony default export */ var packages_form = (form_src_main);
28436
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=59cacbe1&
28437
- var mainvue_type_template_id_59cacbe1_render = function () {
28888
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=accd59de&
28889
+ var mainvue_type_template_id_accd59de_render = function () {
28438
28890
  var _vm = this
28439
28891
  var _h = _vm.$createElement
28440
28892
  var _c = _vm._self._c || _h
@@ -31513,11 +31965,11 @@ var mainvue_type_template_id_59cacbe1_render = function () {
31513
31965
  )
31514
31966
  : _vm._e()
31515
31967
  }
31516
- var mainvue_type_template_id_59cacbe1_staticRenderFns = []
31517
- mainvue_type_template_id_59cacbe1_render._withStripped = true
31968
+ var mainvue_type_template_id_accd59de_staticRenderFns = []
31969
+ mainvue_type_template_id_accd59de_render._withStripped = true
31518
31970
 
31519
31971
 
31520
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=59cacbe1&
31972
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=accd59de&
31521
31973
 
31522
31974
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=7b4f1542&
31523
31975
  var CommonOpinionsvue_type_template_id_7b4f1542_render = function () {
@@ -32372,21 +32824,21 @@ var CommonOpinionsvue_type_script_lang_js_components;
32372
32824
  return validSate;
32373
32825
  },
32374
32826
 
32375
- /**
32376
- * changeOpinion
32377
- * @desc:监听意见变化
32378
- * @author liufan
32379
- * @date 2022年10月28日
32827
+ /**
32828
+ * changeOpinion
32829
+ * @desc:监听意见变化
32830
+ * @author liufan
32831
+ * @date 2022年10月28日
32380
32832
  **/
32381
32833
  changeOpinion: function changeOpinion() {
32382
32834
  this.$emit('change', this.form.value);
32383
32835
  },
32384
32836
 
32385
- /**
32386
- * getCommonOpion
32387
- * @desc:获取意见
32388
- * @author liufan
32389
- * @date 2022年5月25日
32837
+ /**
32838
+ * getCommonOpion
32839
+ * @desc:获取意见
32840
+ * @author liufan
32841
+ * @date 2022年5月25日
32390
32842
  **/
32391
32843
  getCommonOpion: function getCommonOpion() {
32392
32844
  var _this = this;
@@ -32415,24 +32867,24 @@ var CommonOpinionsvue_type_script_lang_js_components;
32415
32867
  });
32416
32868
  },
32417
32869
 
32418
- /**
32419
- * upDate
32420
- * @desc:修改常用语
32421
- * @author liufan
32422
- * @param {Object} val 修改值
32423
- * @date 2022年5月25日
32870
+ /**
32871
+ * upDate
32872
+ * @desc:修改常用语
32873
+ * @author liufan
32874
+ * @param {Object} val 修改值
32875
+ * @date 2022年5月25日
32424
32876
  **/
32425
32877
  upDate: function upDate(val) {
32426
32878
  this.FormData.id = val.id;
32427
32879
  this.addVisible = true;
32428
32880
  },
32429
32881
 
32430
- /**
32431
- * selectChange
32432
- * @desc:常用语选择
32433
- * @author liufan
32434
- * @param {String} val 选中值
32435
- * @date 2022年5月25日
32882
+ /**
32883
+ * selectChange
32884
+ * @desc:常用语选择
32885
+ * @author liufan
32886
+ * @param {String} val 选中值
32887
+ * @date 2022年5月25日
32436
32888
  **/
32437
32889
  selectChange: function selectChange(val) {
32438
32890
  var _this2 = this;
@@ -32451,12 +32903,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
32451
32903
  });
32452
32904
  },
32453
32905
 
32454
- /**
32455
- * del
32456
- * @desc:删除常用语
32457
- * @author liufan
32458
- * @param {Object} val 删除的数据
32459
- * @date 2022年5月25日
32906
+ /**
32907
+ * del
32908
+ * @desc:删除常用语
32909
+ * @author liufan
32910
+ * @param {Object} val 删除的数据
32911
+ * @date 2022年5月25日
32460
32912
  **/
32461
32913
  del: function del(val) {
32462
32914
  var _this3 = this;
@@ -32498,12 +32950,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
32498
32950
  }).catch(function (e) {});
32499
32951
  },
32500
32952
 
32501
- /**
32502
- * submit
32503
- * @desc:新增/编辑意见保存
32504
- * @author liufan
32505
- * @param {Object} val 保存数据
32506
- * @date 2022年5月25日
32953
+ /**
32954
+ * submit
32955
+ * @desc:新增/编辑意见保存
32956
+ * @author liufan
32957
+ * @param {Object} val 保存数据
32958
+ * @date 2022年5月25日
32507
32959
  **/
32508
32960
  submit: function submit(val) {
32509
32961
  var _this4 = this;
@@ -51395,7 +51847,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
51395
51847
  if (!_this32.isFlow) _this32.getFile(_this32.pendingId, attachedCode);
51396
51848
  if (nextNodeList && nextNodeList.length != 0) {
51397
51849
  _this32.nextNodeList = nextNodeList;
51398
- if (nextNodeList[0].nodeType === 'endEvent') {
51850
+ if (nextNodeList[0].nodeType === 'endEvent' && nextNodeList.length == 1) {
51399
51851
  _this32.isNextUser = nextNodeList[0].nodeType != 'endEvent';
51400
51852
  nextNodeList[0].nodeType === 'endEvent' ? _this32.endFlow = true : '';
51401
51853
  }
@@ -52246,8 +52698,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
52246
52698
 
52247
52699
  var flow_src_main_component = normalizeComponent(
52248
52700
  packages_flow_src_mainvue_type_script_lang_js_,
52249
- mainvue_type_template_id_59cacbe1_render,
52250
- mainvue_type_template_id_59cacbe1_staticRenderFns,
52701
+ mainvue_type_template_id_accd59de_render,
52702
+ mainvue_type_template_id_accd59de_staticRenderFns,
52251
52703
  false,
52252
52704
  null,
52253
52705
  null,
@@ -56080,11 +56532,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56080
56532
 
56081
56533
 
56082
56534
  methods: {
56083
- /**
56084
- * handleBatchDelete
56085
- * @desc:批量删除
56086
- * @author liufan
56087
- * @date 2025年12月31日
56535
+ /**
56536
+ * handleBatchDelete
56537
+ * @desc:批量删除
56538
+ * @author liufan
56539
+ * @date 2025年12月31日
56088
56540
  **/
56089
56541
  handleBatchDelete: function handleBatchDelete() {
56090
56542
  var _this6 = this;
@@ -56381,12 +56833,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56381
56833
  }
56382
56834
  },
56383
56835
 
56384
- /**
56385
- * handleFormSubmit
56386
- * @desc:删除节点点击事件
56387
- * @param {Object} formData 点击删除的form数据
56388
- * @author liufan
56389
- * @date 2022年11月29日
56836
+ /**
56837
+ * handleFormSubmit
56838
+ * @desc:删除节点点击事件
56839
+ * @param {Object} formData 点击删除的form数据
56840
+ * @author liufan
56841
+ * @date 2022年11月29日
56390
56842
  **/
56391
56843
  handleFormSubmit: function handleFormSubmit(formData) {
56392
56844
  var _this12 = this;
@@ -56422,12 +56874,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56422
56874
  });
56423
56875
  },
56424
56876
 
56425
- /**
56426
- * del
56427
- * @desc:展示删除弹窗
56428
- * @param {String} id 当前点击数据id
56429
- * @author liufan
56430
- * @date 2022年11月29日
56877
+ /**
56878
+ * del
56879
+ * @desc:展示删除弹窗
56880
+ * @param {String} id 当前点击数据id
56881
+ * @author liufan
56882
+ * @date 2022年11月29日
56431
56883
  **/
56432
56884
  del: function del(id, type) {
56433
56885
  this.modalType = type;
@@ -56435,12 +56887,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56435
56887
  this.showDel = true;
56436
56888
  },
56437
56889
 
56438
- /**
56439
- * handleCurrentChange
56440
- * @desc:监听页码变化
56441
- * @param {String} val 当前页
56442
- * @author liufan
56443
- * @date 2022年11月29日
56890
+ /**
56891
+ * handleCurrentChange
56892
+ * @desc:监听页码变化
56893
+ * @param {String} val 当前页
56894
+ * @author liufan
56895
+ * @date 2022年11月29日
56444
56896
  **/
56445
56897
  handleCurrentChange: function handleCurrentChange(val, type) {
56446
56898
  this.currentPage = val;
@@ -56449,12 +56901,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56449
56901
  }
56450
56902
  },
56451
56903
 
56452
- /**
56453
- * handleSizeChange
56454
- * @desc:监听每页数据显示数量变化
56455
- * @param {String} val 每页展示数量
56456
- * @author liufan
56457
- * @date 2022年11月29日
56904
+ /**
56905
+ * handleSizeChange
56906
+ * @desc:监听每页数据显示数量变化
56907
+ * @param {String} val 每页展示数量
56908
+ * @author liufan
56909
+ * @date 2022年11月29日
56458
56910
  **/
56459
56911
  handleSizeChange: function handleSizeChange(val) {
56460
56912
  this.pageSize = val;
@@ -56463,12 +56915,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56463
56915
  }
56464
56916
  },
56465
56917
 
56466
- /**
56467
- * sortChange
56468
- * @desc:监听排序变化
56469
- * @param {Object} info 需要排序的字段及排序方式
56470
- * @author liufan
56471
- * @date 2022年11月29日
56918
+ /**
56919
+ * sortChange
56920
+ * @desc:监听排序变化
56921
+ * @param {Object} info 需要排序的字段及排序方式
56922
+ * @author liufan
56923
+ * @date 2022年11月29日
56472
56924
  **/
56473
56925
  sortChange: function sortChange(info, type) {
56474
56926
  var prop = info.prop;
@@ -56484,11 +56936,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56484
56936
  }
56485
56937
  },
56486
56938
 
56487
- /**
56488
- * getDeletList
56489
- * @desc:删除列表数据
56490
- * @author liufan
56491
- * @date 2025年12月30日
56939
+ /**
56940
+ * getDeletList
56941
+ * @desc:删除列表数据
56942
+ * @author liufan
56943
+ * @date 2025年12月30日
56492
56944
  **/
56493
56945
  getDeletList: function getDeletList() {
56494
56946
  var _this13 = this;
@@ -56517,11 +56969,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56517
56969
  });
56518
56970
  },
56519
56971
 
56520
- /**
56521
- * getResetList
56522
- * @desc:重设列表数据
56523
- * @author liufan
56524
- * @date 2025年12月30日
56972
+ /**
56973
+ * getResetList
56974
+ * @desc:重设列表数据
56975
+ * @author liufan
56976
+ * @date 2025年12月30日
56525
56977
  **/
56526
56978
  getResetList: function getResetList() {
56527
56979
  var _this14 = this;
@@ -56551,11 +57003,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56551
57003
  });
56552
57004
  },
56553
57005
 
56554
- /**
56555
- * getPressList
56556
- * @desc:催办列表数据
56557
- * @author liufan
56558
- * @date 2022年11月29日
57006
+ /**
57007
+ * getPressList
57008
+ * @desc:催办列表数据
57009
+ * @author liufan
57010
+ * @date 2022年11月29日
56559
57011
  **/
56560
57012
  getPressList: function getPressList() {
56561
57013
  var _this15 = this;
@@ -56585,12 +57037,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56585
57037
  });
56586
57038
  },
56587
57039
 
56588
- /**
56589
- * goPress
56590
- * @desc:催办列表查看
56591
- * @param {String} id 催办列表id
56592
- * @author liufan
56593
- * @date 2022年11月29日
57040
+ /**
57041
+ * goPress
57042
+ * @desc:催办列表查看
57043
+ * @param {String} id 催办列表id
57044
+ * @author liufan
57045
+ * @date 2022年11月29日
56594
57046
  **/
56595
57047
  goPress: function goPress(id) {
56596
57048
  this.historyId = id;
@@ -56598,23 +57050,23 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56598
57050
  this.getPressList();
56599
57051
  },
56600
57052
 
56601
- /**
56602
- * showFile
56603
- * @desc:附件查看
56604
- * @param {String} ownId 附件id
56605
- * @author liufan
56606
- * @date 2022年11月29日
57053
+ /**
57054
+ * showFile
57055
+ * @desc:附件查看
57056
+ * @param {String} ownId 附件id
57057
+ * @author liufan
57058
+ * @date 2022年11月29日
56607
57059
  **/
56608
57060
  showFile: function showFile(ownId) {
56609
57061
  this.wfpendingid = ownId;
56610
57062
  this.showFileList = true;
56611
57063
  },
56612
57064
 
56613
- /**
56614
- * handleChange
56615
- * @desc:切换排序方式
56616
- * @author liufan
56617
- * @date 2022年11月22日
57065
+ /**
57066
+ * handleChange
57067
+ * @desc:切换排序方式
57068
+ * @author liufan
57069
+ * @date 2022年11月22日
56618
57070
  **/
56619
57071
  handleChange: function handleChange(key, value) {
56620
57072
  if (value) {
@@ -56664,11 +57116,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56664
57116
  }))();
56665
57117
  },
56666
57118
 
56667
- /**
56668
- * getFlowList
56669
- * @desc:获取流程列表
56670
- * @author liufan
56671
- * @date 2022年11月22日
57119
+ /**
57120
+ * getFlowList
57121
+ * @desc:获取流程列表
57122
+ * @author liufan
57123
+ * @date 2022年11月22日
56672
57124
  **/
56673
57125
  getFlowList: function getFlowList(type) {
56674
57126
  var _this17 = this;
@@ -56748,12 +57200,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56748
57200
  });
56749
57201
  },
56750
57202
 
56751
- /**
56752
- * handleClick
56753
- * @desc:表单点击事件
56754
- * @param {Object} val 当前点击行数据及按钮
56755
- * @author liufan
56756
- * @date 2022年11月10日
57203
+ /**
57204
+ * handleClick
57205
+ * @desc:表单点击事件
57206
+ * @param {Object} val 当前点击行数据及按钮
57207
+ * @author liufan
57208
+ * @date 2022年11月10日
56757
57209
  **/
56758
57210
  handleClick: function handleClick(val) {
56759
57211
  var _this18 = this;
@@ -56799,13 +57251,13 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56799
57251
  }
56800
57252
  },
56801
57253
 
56802
- /**
56803
- * getCodeValue
56804
- * @desc:获取代码表过滤后的值
56805
- * @param {String} value 展示数据的代码值
56806
- * @param {String} type 代码表类型
56807
- * @author liufan
56808
- * @date 2022年11月10日
57254
+ /**
57255
+ * getCodeValue
57256
+ * @desc:获取代码表过滤后的值
57257
+ * @param {String} value 展示数据的代码值
57258
+ * @param {String} type 代码表类型
57259
+ * @author liufan
57260
+ * @date 2022年11月10日
56809
57261
  **/
56810
57262
  getCodeValue: function getCodeValue(value, type) {
56811
57263
  var val = this[type].filter(function (item) {
@@ -56814,12 +57266,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56814
57266
  return val[0].shortName;
56815
57267
  },
56816
57268
 
56817
- /**
56818
- * getSysInfo
56819
- * @desc:获取代码表
56820
- * @param {String} code 编码code值
56821
- * @author liufan
56822
- * @date 2022年11月10日
57269
+ /**
57270
+ * getSysInfo
57271
+ * @desc:获取代码表
57272
+ * @param {String} code 编码code值
57273
+ * @author liufan
57274
+ * @date 2022年11月10日
56823
57275
  **/
56824
57276
  getSysInfo: function getSysInfo(code) {
56825
57277
  var _this19 = this;
@@ -56841,11 +57293,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
56841
57293
  }).catch(function (e) {});
56842
57294
  },
56843
57295
 
56844
- /**
56845
- * getListInfo
56846
- * @desc:获取预设列表数据
56847
- * @author liufan
56848
- * @date 2022年11月10日
57296
+ /**
57297
+ * getListInfo
57298
+ * @desc:获取预设列表数据
57299
+ * @author liufan
57300
+ * @date 2022年11月10日
56849
57301
  **/
56850
57302
  getListInfo: function getListInfo() {
56851
57303
  var _this20 = this;
@@ -66359,10 +66811,10 @@ appsvue_type_template_id_f094d33e_scoped_true_render._withStripped = true
66359
66811
  this.$emit('click', res);
66360
66812
  },
66361
66813
 
66362
- /**
66363
- * @desc:获取气泡提醒
66364
- * @author huangbo
66365
- * @date 2024年9月7日
66814
+ /**
66815
+ * @desc:获取气泡提醒
66816
+ * @author huangbo
66817
+ * @date 2024年9月7日
66366
66818
  **/
66367
66819
  getBadge: function getBadge(res) {
66368
66820
  var num = res.tips || 0;
@@ -103690,7 +104142,7 @@ if (typeof window !== 'undefined' && window.Vue) {
103690
104142
  }
103691
104143
 
103692
104144
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
103693
- version: '0.8.24',
104145
+ version: '0.8.26',
103694
104146
  install: install,
103695
104147
  Button: packages_button,
103696
104148
  ButtonGroup: button_group,