eoss-ui 0.4.58 → 0.4.60

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 (74) hide show
  1. package/lib/button-group.js +20 -5
  2. package/lib/button.js +20 -5
  3. package/lib/checkbox-group.js +20 -5
  4. package/lib/clients.js +95 -4
  5. package/lib/data-table-form.js +20 -5
  6. package/lib/data-table.js +25 -11
  7. package/lib/date-picker.js +20 -5
  8. package/lib/dialog.js +20 -5
  9. package/lib/eoss-ui.common.js +1400 -1086
  10. package/lib/flow-group.js +929 -860
  11. package/lib/flow-list.js +20 -5
  12. package/lib/flow.js +33 -16
  13. package/lib/form.js +20 -5
  14. package/lib/handle-user.js +20 -5
  15. package/lib/handler.js +41 -15
  16. package/lib/index.js +1 -1
  17. package/lib/input-number.js +20 -5
  18. package/lib/input.js +32 -10
  19. package/lib/login.js +103 -33
  20. package/lib/main.js +85 -38
  21. package/lib/mainComp.js +69 -30
  22. package/lib/nav.js +20 -5
  23. package/lib/page.js +20 -5
  24. package/lib/player.js +20 -5
  25. package/lib/qr-code.js +20 -5
  26. package/lib/radio-group.js +20 -5
  27. package/lib/retrial-auth.js +20 -5
  28. package/lib/select-ganged.js +20 -5
  29. package/lib/select.js +20 -5
  30. package/lib/selector-panel.js +20 -5
  31. package/lib/selector.js +20 -5
  32. package/lib/sizer.js +20 -5
  33. package/lib/steps.js +20 -5
  34. package/lib/switch.js +20 -5
  35. package/lib/table-form.js +27 -11
  36. package/lib/tabs.js +20 -5
  37. package/lib/theme-chalk/clients.css +1 -1
  38. package/lib/theme-chalk/flow-group.css +1 -1
  39. package/lib/theme-chalk/index.css +1 -1
  40. package/lib/theme-chalk/login.css +1 -1
  41. package/lib/tips.js +20 -5
  42. package/lib/toolbar.js +0 -1
  43. package/lib/tree-group.js +20 -5
  44. package/lib/tree.js +20 -5
  45. package/lib/upload.js +91 -52
  46. package/lib/utils/util.js +20 -5
  47. package/lib/wujie.js +20 -5
  48. package/lib/wxlogin.js +20 -5
  49. package/package.json +2 -2
  50. package/packages/clients/src/main.vue +60 -2
  51. package/packages/data-table/src/main.vue +0 -1
  52. package/packages/flow/src/main.vue +1 -0
  53. package/packages/flow/src/startTaskRead.vue +2 -2
  54. package/packages/flow-group/src/main.vue +284 -265
  55. package/packages/form/src/table.vue +3 -2
  56. package/packages/handler/src/main.vue +22 -10
  57. package/packages/input/src/main.vue +7 -2
  58. package/packages/login/src/main.vue +77 -27
  59. package/packages/main/src/main.vue +52 -32
  60. package/packages/main/src/userinfo.vue +22 -9
  61. package/packages/mainComp/src/main.vue +23 -10
  62. package/packages/mainComp/src/userinfo.vue +22 -9
  63. package/packages/theme-chalk/lib/clients.css +1 -1
  64. package/packages/theme-chalk/lib/flow-group.css +1 -1
  65. package/packages/theme-chalk/lib/index.css +1 -1
  66. package/packages/theme-chalk/lib/login.css +1 -1
  67. package/packages/theme-chalk/src/clients.scss +8 -0
  68. package/packages/theme-chalk/src/flow-group.scss +9 -3
  69. package/packages/theme-chalk/src/login.scss +3 -0
  70. package/packages/toolbar/src/main.vue +0 -1
  71. package/packages/upload/src/main.vue +43 -26
  72. package/src/index.js +1 -1
  73. package/src/utils/util.js +22 -10
  74. package/CHANGELOG.md +0 -929
package/lib/flow-group.js CHANGED
@@ -264,20 +264,35 @@ var ajax = function ajax(_ref) {
264
264
  }).then(function () {
265
265
  var loginPage = getStorage('login') || getStorage('loginPage');
266
266
  if (loginPage) {
267
- win.top.location.href = loginPage;
267
+ var src = void 0;
268
+ if (!startWith(loginPage, ['http', '/'])) {
269
+ var pathname = win.top.location.pathname;
270
+ if (pathname !== '/') {
271
+ pathname = pathname.split('/');
272
+ pathname.splice(pathname.length - 1);
273
+ pathname = pathname.join('/');
274
+ src = pathname + loginPage.replace('./', '/');
275
+ } else {
276
+ src = pathname + loginPage.replace('./', '');
277
+ }
278
+ } else {
279
+ src = loginPage;
280
+ }
281
+ win.top.location.href = src;
268
282
  } else if (win.top.location.href.indexOf('main.html') > -1) {
269
283
  win.top.location.href = './login.html';
270
284
  } else {
271
285
  var hash = win.top.location.hash;
272
- if (hash || win.top.location.indexOf('model=') && win.top.location.indexOf('view=') && win.top.location.indexOf('render.html')) {
286
+ if (hash) {
273
287
  var len = win.top.location.href.indexOf(hash);
274
- var href = win.top.location.href.slice(0, len) + '#/login';
275
- win.top.location.href = href;
288
+ win.top.location.href = win.location.href.slice(0, len) + '#/login';
276
289
  } else {
277
290
  win.top.location.href = '/login.html';
278
291
  }
279
292
  }
280
- }).catch(function (e) {});
293
+ }).catch(function (e) {
294
+ sessionStorage.removeItem('remind');
295
+ });
281
296
  }, 1000));
282
297
  }
283
298
  } else if (response.data.rCode === 61) {
@@ -2840,7 +2855,7 @@ module.exports = require("qs");
2840
2855
  // ESM COMPAT FLAG
2841
2856
  __webpack_require__.r(__webpack_exports__);
2842
2857
 
2843
- // 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=40ff417b&
2858
+ // 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=3b17dbd6&
2844
2859
  var render = function () {
2845
2860
  var _vm = this
2846
2861
  var _h = _vm.$createElement
@@ -2850,167 +2865,212 @@ var render = function () {
2850
2865
  { staticClass: "es-flow-group", class: { "is-hide-flow": !_vm.isShow } },
2851
2866
  [
2852
2867
  _c(
2853
- "el-tabs",
2854
- {
2855
- ref: "tabs",
2856
- staticClass: "es-flow-tabs es-tabs",
2857
- attrs: { type: "border-card", "before-leave": _vm.handleBefore },
2858
- model: {
2859
- value: _vm.activeName,
2860
- callback: function ($$v) {
2861
- _vm.activeName = $$v
2862
- },
2863
- expression: "activeName",
2864
- },
2865
- },
2868
+ "div",
2869
+ { staticClass: "es-flow-group-main" },
2866
2870
  [
2867
- _vm._l(_vm.tabs, function (items, indexs) {
2868
- return [
2869
- _vm.handleHide(items.hide)
2870
- ? _c(
2871
- "el-tab-pane",
2872
- {
2873
- key: indexs,
2874
- class: { "es-flex-vertical": items.average },
2875
- attrs: {
2876
- immediate:
2877
- items.label == "流程图" ? false : items.immediate,
2878
- label: items.label,
2879
- name: String(indexs),
2880
- },
2881
- },
2882
- [
2883
- items.title
2884
- ? _c(
2885
- "span",
2886
- { attrs: { slot: "label" }, slot: "label" },
2887
- [
2888
- typeof items.title === "object"
2889
- ? [
2890
- items.title.icon
2891
- ? _c("i", { class: items.title.icon })
2892
- : _vm._e(),
2893
- Object.prototype.hasOwnProperty.call(
2894
- items.title,
2895
- "count"
2896
- )
2897
- ? _c("el-badge", {
2898
- attrs: {
2899
- type: "primary",
2900
- value: items.title.count,
2901
- max: 99,
2902
- },
2903
- })
2904
- : _vm._e(),
2905
- _vm._v(
2906
- "\n " +
2907
- _vm._s(items.title.text) +
2908
- "\n "
2909
- ),
2910
- ]
2911
- : [_vm._v(_vm._s(items.title))],
2912
- ],
2913
- 2
2914
- )
2915
- : _vm._e(),
2916
- items.contents
2917
- ? [
2918
- Array.isArray(items.contents)
2919
- ? [
2920
- _vm._l(
2921
- items.contents,
2922
- function (item, index) {
2923
- return [
2924
- items.average
2925
- ? _c(
2926
- "div",
2927
- {
2928
- key: index,
2929
- staticClass: "es-tab-pane-list",
2871
+ _c(
2872
+ "el-tabs",
2873
+ {
2874
+ ref: "tabs",
2875
+ staticClass: "es-flow-tabs es-tabs",
2876
+ attrs: { type: "border-card", "before-leave": _vm.handleBefore },
2877
+ model: {
2878
+ value: _vm.activeName,
2879
+ callback: function ($$v) {
2880
+ _vm.activeName = $$v
2881
+ },
2882
+ expression: "activeName",
2883
+ },
2884
+ },
2885
+ [
2886
+ _vm._l(_vm.tabs, function (items, indexs) {
2887
+ return [
2888
+ _vm.handleHide(items.hide)
2889
+ ? _c(
2890
+ "el-tab-pane",
2891
+ {
2892
+ key: indexs,
2893
+ class: { "es-flex-vertical": items.average },
2894
+ attrs: {
2895
+ immediate:
2896
+ items.label == "流程图" ? false : items.immediate,
2897
+ label: items.label,
2898
+ name: String(indexs),
2899
+ },
2900
+ },
2901
+ [
2902
+ items.title
2903
+ ? _c(
2904
+ "span",
2905
+ { attrs: { slot: "label" }, slot: "label" },
2906
+ [
2907
+ typeof items.title === "object"
2908
+ ? [
2909
+ items.title.icon
2910
+ ? _c("i", { class: items.title.icon })
2911
+ : _vm._e(),
2912
+ Object.prototype.hasOwnProperty.call(
2913
+ items.title,
2914
+ "count"
2915
+ )
2916
+ ? _c("el-badge", {
2917
+ attrs: {
2918
+ type: "primary",
2919
+ value: items.title.count,
2920
+ max: 99,
2930
2921
  },
2931
- [
2932
- _c(
2922
+ })
2923
+ : _vm._e(),
2924
+ _vm._v(
2925
+ "\n " +
2926
+ _vm._s(items.title.text) +
2927
+ "\n "
2928
+ ),
2929
+ ]
2930
+ : [_vm._v(_vm._s(items.title))],
2931
+ ],
2932
+ 2
2933
+ )
2934
+ : _vm._e(),
2935
+ items.contents
2936
+ ? [
2937
+ Array.isArray(items.contents)
2938
+ ? [
2939
+ _vm._l(
2940
+ items.contents,
2941
+ function (item, index) {
2942
+ return [
2943
+ items.average
2944
+ ? _c(
2933
2945
  "div",
2934
2946
  {
2947
+ key: index,
2935
2948
  staticClass:
2936
- "es-tab-pane-main",
2949
+ "es-tab-pane-list",
2937
2950
  },
2938
2951
  [
2939
- item.type ===
2940
- "data-table" ||
2941
- item.type === "dataTable" ||
2942
- item.type === "flow-list" ||
2943
- item.type === "flowList"
2944
- ? _c(
2945
- "es-data-table",
2946
- _vm._g(
2947
- _vm._b(
2948
- {
2949
- class: {
2950
- "es-flow-group-data-table":
2951
- item.type ===
2952
- "data-table" ||
2953
- item.type ===
2954
- "dataTable",
2955
- "es-flow-list":
2956
- item.type ===
2957
- "flow-list" ||
2958
- item.type ===
2959
- "flowList",
2960
- },
2961
- attrs: {
2962
- appId:
2963
- _vm.taskExamineAppId,
2964
- display:
2965
- _vm.activeName ===
2966
- String(
2967
- indexs
2968
- ),
2969
- },
2970
- },
2952
+ _c(
2953
+ "div",
2954
+ {
2955
+ staticClass:
2956
+ "es-tab-pane-main",
2957
+ },
2958
+ [
2959
+ item.type ===
2960
+ "data-table" ||
2961
+ item.type ===
2962
+ "dataTable" ||
2963
+ item.type ===
2964
+ "flow-list" ||
2965
+ item.type === "flowList"
2966
+ ? _c(
2971
2967
  "es-data-table",
2972
- _vm.handleExclAttribute(
2973
- {
2974
- data: item,
2975
- attrs: [
2976
- "events",
2977
- "visible",
2978
- "type",
2979
- ],
2980
- }
2981
- ),
2982
- false
2983
- ),
2984
- item.events
2985
- ),
2986
- [
2987
- item.dialog
2988
- ? _c(
2989
- "template",
2968
+ _vm._g(
2969
+ _vm._b(
2990
2970
  {
2991
- slot: "dialog",
2971
+ class: {
2972
+ "es-flow-group-data-table":
2973
+ item.type ===
2974
+ "data-table" ||
2975
+ item.type ===
2976
+ "dataTable",
2977
+ "es-flow-list":
2978
+ item.type ===
2979
+ "flow-list" ||
2980
+ item.type ===
2981
+ "flowList",
2982
+ },
2983
+ attrs: {
2984
+ appId:
2985
+ _vm.taskExamineAppId,
2986
+ display:
2987
+ _vm.activeName ===
2988
+ String(
2989
+ indexs
2990
+ ),
2991
+ },
2992
2992
  },
2993
- [
2994
- Array.isArray(
2995
- item.dialog
2996
- )
2997
- ? _vm._l(
2998
- item.dialog,
2999
- function (
3000
- ele,
3001
- ids
3002
- ) {
3003
- return _c(
2993
+ "es-data-table",
2994
+ _vm.handleExclAttribute(
2995
+ {
2996
+ data: item,
2997
+ attrs: [
2998
+ "events",
2999
+ "visible",
3000
+ "type",
3001
+ ],
3002
+ }
3003
+ ),
3004
+ false
3005
+ ),
3006
+ item.events
3007
+ ),
3008
+ [
3009
+ item.dialog
3010
+ ? _c(
3011
+ "template",
3012
+ {
3013
+ slot: "dialog",
3014
+ },
3015
+ [
3016
+ Array.isArray(
3017
+ item.dialog
3018
+ )
3019
+ ? _vm._l(
3020
+ item.dialog,
3021
+ function (
3022
+ ele,
3023
+ ids
3024
+ ) {
3025
+ return _c(
3026
+ "es-dialog",
3027
+ _vm._g(
3028
+ _vm._b(
3029
+ {
3030
+ key: ids,
3031
+ attrs:
3032
+ {
3033
+ isReload: true,
3034
+ visible:
3035
+ ele.visible,
3036
+ },
3037
+ on: {
3038
+ "update:visible":
3039
+ function (
3040
+ $event
3041
+ ) {
3042
+ _vm.$set(
3043
+ ele,
3044
+ "visible",
3045
+ $event
3046
+ )
3047
+ },
3048
+ },
3049
+ },
3050
+ "es-dialog",
3051
+ ele,
3052
+ false
3053
+ ),
3054
+ Object.assign(
3055
+ {},
3056
+ ele.events
3057
+ )
3058
+ )
3059
+ )
3060
+ }
3061
+ )
3062
+ : _c(
3004
3063
  "es-dialog",
3005
3064
  _vm._g(
3006
3065
  _vm._b(
3007
3066
  {
3008
- key: ids,
3009
3067
  attrs:
3010
3068
  {
3011
3069
  isReload: true,
3012
3070
  visible:
3013
- ele.visible,
3071
+ item
3072
+ .dialog
3073
+ .visible,
3014
3074
  },
3015
3075
  on: {
3016
3076
  "update:visible":
@@ -3018,7 +3078,7 @@ var render = function () {
3018
3078
  $event
3019
3079
  ) {
3020
3080
  _vm.$set(
3021
- ele,
3081
+ item.dialog,
3022
3082
  "visible",
3023
3083
  $event
3024
3084
  )
@@ -3026,304 +3086,316 @@ var render = function () {
3026
3086
  },
3027
3087
  },
3028
3088
  "es-dialog",
3029
- ele,
3089
+ item.dialog,
3030
3090
  false
3031
3091
  ),
3032
3092
  Object.assign(
3033
3093
  {},
3034
- ele.events
3094
+ item
3095
+ .dialog
3096
+ .events
3035
3097
  )
3036
3098
  )
3037
- )
3038
- }
3039
- )
3040
- : _c(
3041
- "es-dialog",
3042
- _vm._g(
3043
- _vm._b(
3044
- {
3045
- attrs:
3046
- {
3047
- isReload: true,
3048
- visible:
3049
- item
3050
- .dialog
3051
- .visible,
3052
- },
3053
- on: {
3054
- "update:visible":
3055
- function (
3056
- $event
3057
- ) {
3058
- _vm.$set(
3059
- item.dialog,
3060
- "visible",
3061
- $event
3062
- )
3063
- },
3064
- },
3065
- },
3066
- "es-dialog",
3067
- item.dialog,
3068
- false
3069
3099
  ),
3070
- Object.assign(
3071
- {},
3072
- item
3073
- .dialog
3074
- .events
3075
- )
3076
- )
3100
+ ],
3101
+ 2
3102
+ )
3103
+ : _vm._e(),
3104
+ ],
3105
+ 2
3106
+ )
3107
+ : _vm._e(),
3108
+ item.type ===
3109
+ "tree-group" ||
3110
+ item.type ===
3111
+ "treeGroup"
3112
+ ? _c(
3113
+ "es-tree-group",
3114
+ _vm._g(
3115
+ _vm._b(
3116
+ {
3117
+ attrs: {
3118
+ appId:
3119
+ _vm.taskExamineAppId,
3120
+ display:
3121
+ _vm.activeName ===
3122
+ String(
3123
+ indexs
3077
3124
  ),
3078
- ],
3079
- 2
3125
+ },
3126
+ },
3127
+ "es-tree-group",
3128
+ _vm.handleExclAttribute(
3129
+ {
3130
+ data: item,
3131
+ attrs: [
3132
+ "events",
3133
+ "visible",
3134
+ "type",
3135
+ ],
3136
+ }
3137
+ ),
3138
+ false
3139
+ ),
3140
+ Object.assign(
3141
+ {},
3142
+ item.events
3080
3143
  )
3081
- : _vm._e(),
3082
- ],
3083
- 2
3084
- )
3085
- : _vm._e(),
3086
- item.type ===
3087
- "tree-group" ||
3088
- item.type === "treeGroup"
3089
- ? _c(
3090
- "es-tree-group",
3091
- _vm._g(
3092
- _vm._b(
3093
- {
3094
- attrs: {
3095
- appId:
3096
- _vm.taskExamineAppId,
3097
- display:
3098
- _vm.activeName ===
3099
- String(
3100
- indexs
3101
- ),
3102
- },
3144
+ )
3145
+ )
3146
+ : _vm._e(),
3147
+ item.type ===
3148
+ "iframe" &&
3149
+ !item.blank
3150
+ ? _c("iframe", {
3151
+ attrs: {
3152
+ id:
3153
+ item.id ||
3154
+ item.name,
3155
+ name: item.name,
3156
+ frameborder:
3157
+ "0",
3158
+ width: "100%",
3159
+ height: "100%",
3160
+ src: _vm.handleUrlJoinParams(
3161
+ item
3162
+ ),
3103
3163
  },
3104
- "es-tree-group",
3105
- _vm.handleExclAttribute(
3106
- {
3107
- data: item,
3108
- attrs: [
3109
- "events",
3110
- "visible",
3111
- "type",
3112
- ],
3113
- }
3114
- ),
3115
- false
3116
- ),
3117
- Object.assign(
3118
- {},
3119
- item.events
3164
+ })
3165
+ : _vm._e(),
3166
+ item.type ===
3167
+ "attachment"
3168
+ ? _c(
3169
+ "es-upload",
3170
+ _vm._g(
3171
+ _vm._b(
3172
+ {
3173
+ staticClass:
3174
+ "es-attachment",
3175
+ attrs: {
3176
+ "file-count":
3177
+ items
3178
+ .title
3179
+ .count,
3180
+ height:
3181
+ "auto",
3182
+ ownId:
3183
+ _vm.businessId,
3184
+ display:
3185
+ _vm.activeName ===
3186
+ String(
3187
+ indexs
3188
+ ),
3189
+ },
3190
+ on: {
3191
+ "update:fileCount":
3192
+ function (
3193
+ $event
3194
+ ) {
3195
+ _vm.$set(
3196
+ items.title,
3197
+ "count",
3198
+ $event
3199
+ )
3200
+ },
3201
+ },
3202
+ },
3203
+ "es-upload",
3204
+ _vm.handleExclAttribute(
3205
+ {
3206
+ data: item,
3207
+ attrs: [
3208
+ "events",
3209
+ "type",
3210
+ ],
3211
+ }
3212
+ ),
3213
+ false
3214
+ ),
3215
+ Object.assign(
3216
+ {},
3217
+ item.events
3218
+ )
3219
+ )
3120
3220
  )
3121
- )
3122
- )
3123
- : _vm._e(),
3124
- item.type === "iframe" &&
3125
- !item.blank
3126
- ? _c("iframe", {
3127
- attrs: {
3128
- id:
3129
- item.id ||
3130
- item.name,
3131
- name: item.name,
3132
- frameborder: "0",
3133
- width: "100%",
3134
- height: "100%",
3135
- src: _vm.handleUrlJoinParams(
3136
- item
3137
- ),
3138
- },
3139
- })
3140
- : _vm._e(),
3141
- item.type === "attachment"
3142
- ? _c(
3143
- "es-upload",
3144
- _vm._g(
3145
- _vm._b(
3146
- {
3147
- staticClass:
3148
- "es-attachment",
3149
- attrs: {
3150
- "file-count":
3151
- items.title
3152
- .count,
3153
- height:
3154
- "auto",
3155
- ownId:
3156
- _vm.businessId,
3157
- display:
3158
- _vm.activeName ===
3159
- String(
3160
- indexs
3161
- ),
3162
- },
3163
- on: {
3164
- "update:fileCount":
3165
- function (
3221
+ : _vm._e(),
3222
+ ],
3223
+ 1
3224
+ ),
3225
+ ]
3226
+ )
3227
+ : [
3228
+ item.type === "form"
3229
+ ? _c(
3230
+ "es-form",
3231
+ _vm._g(
3232
+ _vm._b(
3233
+ {
3234
+ key: index,
3235
+ ref: "esFlowForm",
3236
+ refInFor: true,
3237
+ attrs: {
3238
+ showMsg:
3239
+ _vm.showMsg,
3240
+ full: "",
3241
+ autoId: true,
3242
+ "show-button": false,
3243
+ closeDialog: false,
3244
+ display:
3245
+ _vm.activeName ===
3246
+ String(
3247
+ indexs
3248
+ ),
3249
+ model:
3250
+ item.model,
3251
+ businessId:
3252
+ _vm.businessId,
3253
+ },
3254
+ on: {
3255
+ "update:businessId":
3256
+ function (
3257
+ $event
3258
+ ) {
3259
+ _vm.businessId =
3166
3260
  $event
3167
- ) {
3168
- _vm.$set(
3169
- items.title,
3170
- "count",
3171
- $event
3172
- )
3173
- },
3174
- },
3261
+ },
3175
3262
  },
3176
- "es-upload",
3177
- _vm.handleExclAttribute(
3178
- {
3179
- data: item,
3180
- attrs: [
3181
- "events",
3182
- "type",
3183
- ],
3184
- }
3185
- ),
3186
- false
3263
+ },
3264
+ "es-form",
3265
+ _vm.handleExclAttribute(
3266
+ {
3267
+ data: item,
3268
+ attrs: [
3269
+ "events",
3270
+ "visible",
3271
+ "type",
3272
+ "model",
3273
+ "ref",
3274
+ ],
3275
+ }
3187
3276
  ),
3188
- Object.assign(
3189
- {},
3190
- item.events
3191
- )
3277
+ false
3278
+ ),
3279
+ Object.assign(
3280
+ {},
3281
+ item.events
3192
3282
  )
3193
3283
  )
3194
- : _vm._e(),
3195
- ],
3196
- 1
3197
- ),
3198
- ]
3199
- )
3200
- : [
3201
- item.type === "form"
3202
- ? _c(
3203
- "es-form",
3204
- _vm._g(
3205
- _vm._b(
3206
- {
3207
- key: index,
3208
- ref: "esFlowForm",
3209
- refInFor: true,
3210
- attrs: {
3211
- showMsg:
3212
- _vm.showMsg,
3213
- full: "",
3214
- autoId: true,
3215
- "show-button": false,
3216
- closeDialog: false,
3217
- display:
3218
- _vm.activeName ===
3219
- String(indexs),
3220
- model: item.model,
3221
- businessId:
3222
- _vm.businessId,
3223
- },
3224
- on: {
3225
- "update:businessId":
3226
- function (
3227
- $event
3228
- ) {
3229
- _vm.businessId =
3230
- $event
3231
- },
3232
- },
3233
- },
3234
- "es-form",
3235
- _vm.handleExclAttribute(
3236
- {
3237
- data: item,
3238
- attrs: [
3239
- "events",
3240
- "visible",
3241
- "type",
3242
- "model",
3243
- "ref",
3244
- ],
3245
- }
3246
- ),
3247
- false
3248
- ),
3249
- Object.assign(
3250
- {},
3251
- item.events
3252
3284
  )
3253
- )
3254
- )
3255
- : _vm._e(),
3256
- item.type === "data-table" ||
3257
- item.type === "dataTable" ||
3258
- item.type === "flow-list" ||
3259
- item.type === "flowList"
3260
- ? _c(
3261
- "es-data-table",
3262
- _vm._g(
3263
- _vm._b(
3264
- {
3265
- key: index,
3266
- class: {
3267
- "es-flow-group-data-table":
3268
- item.type ===
3269
- "data-table" ||
3270
- item.type ===
3271
- "dataTable",
3272
- "es-flow-list":
3273
- item.type ===
3274
- "flow-list" ||
3275
- item.type ===
3276
- "flowList",
3277
- },
3278
- attrs: {
3279
- appId:
3280
- _vm.taskExamineAppId,
3281
- display:
3282
- _vm.activeName ===
3283
- String(indexs),
3284
- },
3285
- },
3285
+ : _vm._e(),
3286
+ item.type === "data-table" ||
3287
+ item.type === "dataTable" ||
3288
+ item.type === "flow-list" ||
3289
+ item.type === "flowList"
3290
+ ? _c(
3286
3291
  "es-data-table",
3287
- _vm.handleExclAttribute(
3288
- {
3289
- data: item,
3290
- attrs: [
3291
- "events",
3292
- "visible",
3293
- "type",
3294
- ],
3295
- }
3292
+ _vm._g(
3293
+ _vm._b(
3294
+ {
3295
+ key: index,
3296
+ class: {
3297
+ "es-flow-group-data-table":
3298
+ item.type ===
3299
+ "data-table" ||
3300
+ item.type ===
3301
+ "dataTable",
3302
+ "es-flow-list":
3303
+ item.type ===
3304
+ "flow-list" ||
3305
+ item.type ===
3306
+ "flowList",
3307
+ },
3308
+ attrs: {
3309
+ appId:
3310
+ _vm.taskExamineAppId,
3311
+ display:
3312
+ _vm.activeName ===
3313
+ String(
3314
+ indexs
3315
+ ),
3316
+ },
3317
+ },
3318
+ "es-data-table",
3319
+ _vm.handleExclAttribute(
3320
+ {
3321
+ data: item,
3322
+ attrs: [
3323
+ "events",
3324
+ "visible",
3325
+ "type",
3326
+ ],
3327
+ }
3328
+ ),
3329
+ false
3330
+ ),
3331
+ item.events
3296
3332
  ),
3297
- false
3298
- ),
3299
- item.events
3300
- ),
3301
- [
3302
- item.dialog
3303
- ? _c(
3304
- "template",
3305
- { slot: "dialog" },
3306
- [
3307
- Array.isArray(
3308
- item.dialog
3309
- )
3310
- ? _vm._l(
3311
- item.dialog,
3312
- function (
3313
- ele,
3314
- ids
3315
- ) {
3316
- return _c(
3333
+ [
3334
+ item.dialog
3335
+ ? _c(
3336
+ "template",
3337
+ {
3338
+ slot: "dialog",
3339
+ },
3340
+ [
3341
+ Array.isArray(
3342
+ item.dialog
3343
+ )
3344
+ ? _vm._l(
3345
+ item.dialog,
3346
+ function (
3347
+ ele,
3348
+ ids
3349
+ ) {
3350
+ return _c(
3351
+ "es-dialog",
3352
+ _vm._g(
3353
+ _vm._b(
3354
+ {
3355
+ key: ids,
3356
+ attrs:
3357
+ {
3358
+ isReload: true,
3359
+ visible:
3360
+ ele.visible,
3361
+ },
3362
+ on: {
3363
+ "update:visible":
3364
+ function (
3365
+ $event
3366
+ ) {
3367
+ _vm.$set(
3368
+ ele,
3369
+ "visible",
3370
+ $event
3371
+ )
3372
+ },
3373
+ },
3374
+ },
3375
+ "es-dialog",
3376
+ ele,
3377
+ false
3378
+ ),
3379
+ Object.assign(
3380
+ {},
3381
+ ele.events
3382
+ )
3383
+ )
3384
+ )
3385
+ }
3386
+ )
3387
+ : _c(
3317
3388
  "es-dialog",
3318
3389
  _vm._g(
3319
3390
  _vm._b(
3320
3391
  {
3321
- key: ids,
3322
3392
  attrs:
3323
3393
  {
3324
3394
  isReload: true,
3325
3395
  visible:
3326
- ele.visible,
3396
+ item
3397
+ .dialog
3398
+ .visible,
3327
3399
  },
3328
3400
  on: {
3329
3401
  "update:visible":
@@ -3331,7 +3403,7 @@ var render = function () {
3331
3403
  $event
3332
3404
  ) {
3333
3405
  _vm.$set(
3334
- ele,
3406
+ item.dialog,
3335
3407
  "visible",
3336
3408
  $event
3337
3409
  )
@@ -3339,357 +3411,148 @@ var render = function () {
3339
3411
  },
3340
3412
  },
3341
3413
  "es-dialog",
3342
- ele,
3414
+ item.dialog,
3343
3415
  false
3344
3416
  ),
3345
3417
  Object.assign(
3346
3418
  {},
3347
- ele.events
3419
+ item
3420
+ .dialog
3421
+ .events
3348
3422
  )
3349
3423
  )
3350
- )
3351
- }
3352
- )
3353
- : _c(
3354
- "es-dialog",
3355
- _vm._g(
3356
- _vm._b(
3357
- {
3358
- attrs:
3359
- {
3360
- isReload: true,
3361
- visible:
3362
- item
3363
- .dialog
3364
- .visible,
3365
- },
3366
- on: {
3367
- "update:visible":
3368
- function (
3369
- $event
3370
- ) {
3371
- _vm.$set(
3372
- item.dialog,
3373
- "visible",
3374
- $event
3375
- )
3376
- },
3377
- },
3378
- },
3379
- "es-dialog",
3380
- item.dialog,
3381
- false
3382
3424
  ),
3383
- Object.assign(
3384
- {},
3385
- item
3386
- .dialog
3387
- .events
3388
- )
3389
- )
3425
+ ],
3426
+ 2
3427
+ )
3428
+ : _vm._e(),
3429
+ ],
3430
+ 2
3431
+ )
3432
+ : _vm._e(),
3433
+ item.type === "tree-group" ||
3434
+ item.type === "treeGroup"
3435
+ ? _c(
3436
+ "es-tree-group",
3437
+ _vm._g(
3438
+ _vm._b(
3439
+ {
3440
+ key: index,
3441
+ attrs: {
3442
+ appId:
3443
+ _vm.taskExamineAppId,
3444
+ display:
3445
+ _vm.activeName ===
3446
+ String(
3447
+ indexs
3390
3448
  ),
3391
- ],
3392
- 2
3449
+ },
3450
+ },
3451
+ "es-tree-group",
3452
+ _vm.handleExclAttribute(
3453
+ {
3454
+ data: item,
3455
+ attrs: [
3456
+ "events",
3457
+ "visible",
3458
+ "type",
3459
+ ],
3460
+ }
3461
+ ),
3462
+ false
3463
+ ),
3464
+ Object.assign(
3465
+ {},
3466
+ item.events
3393
3467
  )
3394
- : _vm._e(),
3395
- ],
3396
- 2
3397
- )
3398
- : _vm._e(),
3399
- item.type === "tree-group" ||
3400
- item.type === "treeGroup"
3401
- ? _c(
3402
- "es-tree-group",
3403
- _vm._g(
3404
- _vm._b(
3405
- {
3406
- key: index,
3407
- attrs: {
3408
- appId:
3409
- _vm.taskExamineAppId,
3410
- display:
3411
- _vm.activeName ===
3412
- String(indexs),
3413
- },
3414
- },
3415
- "es-tree-group",
3416
- _vm.handleExclAttribute(
3417
- {
3418
- data: item,
3419
- attrs: [
3420
- "events",
3421
- "visible",
3422
- "type",
3423
- ],
3424
- }
3425
- ),
3426
- false
3427
- ),
3428
- Object.assign(
3429
- {},
3430
- item.events
3468
+ )
3431
3469
  )
3432
- )
3433
- )
3434
- : _vm._e(),
3435
- item.type === "iframe" &&
3436
- !item.blank
3437
- ? _c("iframe", {
3438
- key: index,
3439
- attrs: {
3440
- frameborder: "0",
3441
- width: "100%",
3442
- height: "100%",
3443
- id: item.id || item.name,
3444
- name: item.name,
3445
- src: _vm.handleUrlJoinParams(
3446
- item
3447
- ),
3448
- },
3449
- })
3450
- : _vm._e(),
3451
- item.type === "attachment"
3452
- ? _c(
3453
- "es-upload",
3454
- _vm._g(
3455
- _vm._b(
3456
- {
3457
- key: index,
3458
- staticClass:
3459
- "es-attachment",
3460
- attrs: {
3461
- height: "auto",
3462
- ownId:
3463
- _vm.businessId,
3464
- "file-count":
3465
- items.title.count,
3466
- display:
3467
- _vm.activeName ===
3468
- String(indexs),
3469
- },
3470
- on: {
3471
- "update:fileCount":
3472
- function (
3473
- $event
3474
- ) {
3475
- _vm.$set(
3476
- items.title,
3477
- "count",
3478
- $event
3479
- )
3480
- },
3481
- },
3470
+ : _vm._e(),
3471
+ item.type === "iframe" &&
3472
+ !item.blank
3473
+ ? _c("iframe", {
3474
+ key: index,
3475
+ attrs: {
3476
+ frameborder: "0",
3477
+ width: "100%",
3478
+ height: "100%",
3479
+ id:
3480
+ item.id ||
3481
+ item.name,
3482
+ name: item.name,
3483
+ src: _vm.handleUrlJoinParams(
3484
+ item
3485
+ ),
3482
3486
  },
3487
+ })
3488
+ : _vm._e(),
3489
+ item.type === "attachment"
3490
+ ? _c(
3483
3491
  "es-upload",
3484
- _vm.handleExclAttribute(
3485
- {
3486
- data: item,
3487
- attrs: [
3488
- "events",
3489
- "type",
3490
- ],
3491
- }
3492
- ),
3493
- false
3494
- ),
3495
- Object.assign(
3496
- {},
3497
- item.events
3498
- )
3499
- )
3500
- )
3501
- : _vm._e(),
3502
- item.type === "dialog" &&
3503
- _vm.activeName === String(indexs)
3504
- ? _c(
3505
- "es-dialog",
3506
- _vm._g(
3507
- _vm._b(
3508
- {
3509
- key: index,
3510
- attrs: {
3511
- isReload: true,
3512
- visible:
3513
- item.visible,
3514
- },
3515
- on: {
3516
- "update:visible":
3517
- function (
3518
- $event
3519
- ) {
3520
- _vm.$set(
3521
- item,
3522
- "visible",
3523
- $event
3524
- )
3492
+ _vm._g(
3493
+ _vm._b(
3494
+ {
3495
+ key: index,
3496
+ staticClass:
3497
+ "es-attachment",
3498
+ attrs: {
3499
+ height: "auto",
3500
+ ownId:
3501
+ _vm.businessId,
3502
+ "file-count":
3503
+ items.title
3504
+ .count,
3505
+ display:
3506
+ _vm.activeName ===
3507
+ String(
3508
+ indexs
3509
+ ),
3525
3510
  },
3526
- },
3527
- },
3528
- "es-dialog",
3529
- item,
3530
- false
3531
- ),
3532
- Object.assign(
3533
- {},
3534
- item.events
3535
- )
3536
- )
3537
- )
3538
- : _vm._e(),
3539
- ],
3540
- ]
3541
- }
3542
- ),
3543
- ]
3544
- : [
3545
- items.contents.type === "form"
3546
- ? _c(
3547
- "es-form",
3548
- _vm._g(
3549
- _vm._b(
3550
- {
3551
- ref: "esFlowForm",
3552
- refInFor: true,
3553
- attrs: {
3554
- "show-button": false,
3555
- showMsg: _vm.showMsg,
3556
- full: "",
3557
- autoId: true,
3558
- businessId: _vm.businessId,
3559
- closeDialog: false,
3560
- display:
3561
- _vm.activeName ===
3562
- String(indexs),
3563
- model: items.contents.model,
3564
- },
3565
- on: {
3566
- "update:businessId": function (
3567
- $event
3568
- ) {
3569
- _vm.businessId = $event
3570
- },
3571
- },
3572
- },
3573
- "es-form",
3574
- _vm.handleExclAttribute({
3575
- data: items.contents,
3576
- attrs: [
3577
- "events",
3578
- "visible",
3579
- "type",
3580
- "model",
3581
- "ref",
3582
- ],
3583
- }),
3584
- false
3585
- ),
3586
- Object.assign(
3587
- {},
3588
- items.contents.events
3589
- )
3590
- )
3591
- )
3592
- : _vm._e(),
3593
- items.contents.type === "data-table" ||
3594
- items.contents.type === "dataTable" ||
3595
- items.contents.type === "flow-list" ||
3596
- items.contents.type === "flowList"
3597
- ? _c(
3598
- "es-data-table",
3599
- _vm._g(
3600
- _vm._b(
3601
- {
3602
- class: {
3603
- "es-flow-group-data-table":
3604
- items.contents.type ===
3605
- "data-table" ||
3606
- items.contents.type ===
3607
- "dataTable",
3608
- "es-flow-list":
3609
- items.contents.type ===
3610
- "flow-list" ||
3611
- items.contents.type ===
3612
- "flowList",
3613
- },
3614
- attrs: {
3615
- appId: _vm.taskExamineAppId,
3616
- display:
3617
- _vm.activeName ===
3618
- String(indexs),
3619
- },
3620
- },
3621
- "es-data-table",
3622
- _vm.handleExclAttribute({
3623
- data: items.contents,
3624
- attrs: [
3625
- "events",
3626
- "visible",
3627
- "type",
3628
- ],
3629
- }),
3630
- false
3631
- ),
3632
- items.contents.events
3633
- ),
3634
- [
3635
- items.contents.dialog
3636
- ? _c(
3637
- "template",
3638
- { slot: "dialog" },
3639
- [
3640
- Array.isArray(
3641
- items.contents.dialog
3642
- )
3643
- ? _vm._l(
3644
- items.contents.dialog,
3645
- function (ele, ids) {
3646
- return _c(
3647
- "es-dialog",
3648
- _vm._g(
3649
- _vm._b(
3650
- {
3651
- key: ids,
3652
- attrs: {
3653
- isReload: true,
3654
- visible:
3655
- ele.visible,
3656
- },
3657
- on: {
3658
- "update:visible":
3659
- function (
3660
- $event
3661
- ) {
3662
- _vm.$set(
3663
- ele,
3664
- "visible",
3665
- $event
3666
- )
3667
- },
3511
+ on: {
3512
+ "update:fileCount":
3513
+ function (
3514
+ $event
3515
+ ) {
3516
+ _vm.$set(
3517
+ items.title,
3518
+ "count",
3519
+ $event
3520
+ )
3668
3521
  },
3669
- },
3670
- "es-dialog",
3671
- ele,
3672
- false
3673
- ),
3674
- Object.assign(
3675
- {},
3676
- ele.events
3677
- )
3678
- )
3522
+ },
3523
+ },
3524
+ "es-upload",
3525
+ _vm.handleExclAttribute(
3526
+ {
3527
+ data: item,
3528
+ attrs: [
3529
+ "events",
3530
+ "type",
3531
+ ],
3532
+ }
3533
+ ),
3534
+ false
3535
+ ),
3536
+ Object.assign(
3537
+ {},
3538
+ item.events
3679
3539
  )
3680
- }
3540
+ )
3681
3541
  )
3682
- : _c(
3542
+ : _vm._e(),
3543
+ item.type === "dialog" &&
3544
+ _vm.activeName ===
3545
+ String(indexs)
3546
+ ? _c(
3683
3547
  "es-dialog",
3684
3548
  _vm._g(
3685
3549
  _vm._b(
3686
3550
  {
3551
+ key: index,
3687
3552
  attrs: {
3688
3553
  isReload: true,
3689
3554
  visible:
3690
- items.contents
3691
- .dialog
3692
- .visible,
3555
+ item.visible,
3693
3556
  },
3694
3557
  on: {
3695
3558
  "update:visible":
@@ -3697,9 +3560,7 @@ var render = function () {
3697
3560
  $event
3698
3561
  ) {
3699
3562
  _vm.$set(
3700
- items
3701
- .contents
3702
- .dialog,
3563
+ item,
3703
3564
  "visible",
3704
3565
  $event
3705
3566
  )
@@ -3707,126 +3568,314 @@ var render = function () {
3707
3568
  },
3708
3569
  },
3709
3570
  "es-dialog",
3710
- items.contents
3711
- .dialog,
3571
+ item,
3712
3572
  false
3713
3573
  ),
3714
3574
  Object.assign(
3715
3575
  {},
3716
- items.contents
3717
- .dialog.events
3576
+ item.events
3718
3577
  )
3719
3578
  )
3720
- ),
3579
+ )
3580
+ : _vm._e(),
3721
3581
  ],
3722
- 2
3582
+ ]
3583
+ }
3584
+ ),
3585
+ ]
3586
+ : [
3587
+ items.contents.type === "form"
3588
+ ? _c(
3589
+ "es-form",
3590
+ _vm._g(
3591
+ _vm._b(
3592
+ {
3593
+ ref: "esFlowForm",
3594
+ refInFor: true,
3595
+ attrs: {
3596
+ "show-button": false,
3597
+ showMsg: _vm.showMsg,
3598
+ full: "",
3599
+ autoId: true,
3600
+ businessId: _vm.businessId,
3601
+ closeDialog: false,
3602
+ display:
3603
+ _vm.activeName ===
3604
+ String(indexs),
3605
+ model: items.contents.model,
3606
+ },
3607
+ on: {
3608
+ "update:businessId":
3609
+ function ($event) {
3610
+ _vm.businessId = $event
3611
+ },
3612
+ },
3613
+ },
3614
+ "es-form",
3615
+ _vm.handleExclAttribute({
3616
+ data: items.contents,
3617
+ attrs: [
3618
+ "events",
3619
+ "visible",
3620
+ "type",
3621
+ "model",
3622
+ "ref",
3623
+ ],
3624
+ }),
3625
+ false
3626
+ ),
3627
+ Object.assign(
3628
+ {},
3629
+ items.contents.events
3723
3630
  )
3724
- : _vm._e(),
3725
- ],
3726
- 2
3727
- )
3728
- : _vm._e(),
3729
- items.contents.type === "tree-group" ||
3730
- items.contents.type === "treeGroup"
3731
- ? _c(
3732
- "es-tree-group",
3733
- _vm._g(
3734
- _vm._b(
3735
- {
3736
- attrs: {
3737
- appId: _vm.taskExamineAppId,
3738
- display:
3739
- _vm.activeName ===
3740
- String(indexs),
3741
- },
3742
- },
3743
- "es-tree-group",
3744
- _vm.handleExclAttribute({
3745
- data: items.contents,
3746
- attrs: [
3747
- "events",
3748
- "visible",
3749
- "type",
3750
- ],
3751
- }),
3752
- false
3753
- ),
3754
- Object.assign(
3755
- {},
3756
- items.contents.events
3631
+ )
3757
3632
  )
3758
- )
3759
- )
3760
- : _vm._e(),
3761
- items.contents.type === "iframe" &&
3762
- !items.contents.blank
3763
- ? _c("iframe", {
3764
- attrs: {
3765
- id:
3766
- items.contents.id ||
3767
- items.contents.name,
3768
- name: items.contents.name,
3769
- frameborder: "0",
3770
- width: "100%",
3771
- height: "100%",
3772
- src: _vm.handleUrlJoinParams(
3773
- items.contents
3774
- ),
3775
- },
3776
- })
3777
- : _vm._e(),
3778
- items.contents.type === "attachment"
3779
- ? _c(
3780
- "es-upload",
3781
- _vm._g(
3782
- _vm._b(
3783
- {
3784
- staticClass: "es-attachment",
3785
- attrs: {
3786
- ownId: _vm.businessId,
3787
- "file-count": items.title.count,
3788
- display:
3789
- _vm.activeName ===
3790
- String(indexs),
3791
- height: "auto",
3792
- },
3793
- on: {
3794
- "update:fileCount": function (
3795
- $event
3796
- ) {
3797
- _vm.$set(
3798
- items.title,
3799
- "count",
3800
- $event
3633
+ : _vm._e(),
3634
+ items.contents.type === "data-table" ||
3635
+ items.contents.type === "dataTable" ||
3636
+ items.contents.type === "flow-list" ||
3637
+ items.contents.type === "flowList"
3638
+ ? _c(
3639
+ "es-data-table",
3640
+ _vm._g(
3641
+ _vm._b(
3642
+ {
3643
+ class: {
3644
+ "es-flow-group-data-table":
3645
+ items.contents.type ===
3646
+ "data-table" ||
3647
+ items.contents.type ===
3648
+ "dataTable",
3649
+ "es-flow-list":
3650
+ items.contents.type ===
3651
+ "flow-list" ||
3652
+ items.contents.type ===
3653
+ "flowList",
3654
+ },
3655
+ attrs: {
3656
+ appId: _vm.taskExamineAppId,
3657
+ display:
3658
+ _vm.activeName ===
3659
+ String(indexs),
3660
+ },
3661
+ },
3662
+ "es-data-table",
3663
+ _vm.handleExclAttribute({
3664
+ data: items.contents,
3665
+ attrs: [
3666
+ "events",
3667
+ "visible",
3668
+ "type",
3669
+ ],
3670
+ }),
3671
+ false
3672
+ ),
3673
+ items.contents.events
3674
+ ),
3675
+ [
3676
+ items.contents.dialog
3677
+ ? _c(
3678
+ "template",
3679
+ { slot: "dialog" },
3680
+ [
3681
+ Array.isArray(
3682
+ items.contents.dialog
3683
+ )
3684
+ ? _vm._l(
3685
+ items.contents
3686
+ .dialog,
3687
+ function (
3688
+ ele,
3689
+ ids
3690
+ ) {
3691
+ return _c(
3692
+ "es-dialog",
3693
+ _vm._g(
3694
+ _vm._b(
3695
+ {
3696
+ key: ids,
3697
+ attrs: {
3698
+ isReload: true,
3699
+ visible:
3700
+ ele.visible,
3701
+ },
3702
+ on: {
3703
+ "update:visible":
3704
+ function (
3705
+ $event
3706
+ ) {
3707
+ _vm.$set(
3708
+ ele,
3709
+ "visible",
3710
+ $event
3711
+ )
3712
+ },
3713
+ },
3714
+ },
3715
+ "es-dialog",
3716
+ ele,
3717
+ false
3718
+ ),
3719
+ Object.assign(
3720
+ {},
3721
+ ele.events
3722
+ )
3723
+ )
3724
+ )
3725
+ }
3726
+ )
3727
+ : _c(
3728
+ "es-dialog",
3729
+ _vm._g(
3730
+ _vm._b(
3731
+ {
3732
+ attrs: {
3733
+ isReload: true,
3734
+ visible:
3735
+ items
3736
+ .contents
3737
+ .dialog
3738
+ .visible,
3739
+ },
3740
+ on: {
3741
+ "update:visible":
3742
+ function (
3743
+ $event
3744
+ ) {
3745
+ _vm.$set(
3746
+ items
3747
+ .contents
3748
+ .dialog,
3749
+ "visible",
3750
+ $event
3751
+ )
3752
+ },
3753
+ },
3754
+ },
3755
+ "es-dialog",
3756
+ items.contents
3757
+ .dialog,
3758
+ false
3759
+ ),
3760
+ Object.assign(
3761
+ {},
3762
+ items.contents
3763
+ .dialog.events
3764
+ )
3765
+ )
3766
+ ),
3767
+ ],
3768
+ 2
3801
3769
  )
3770
+ : _vm._e(),
3771
+ ],
3772
+ 2
3773
+ )
3774
+ : _vm._e(),
3775
+ items.contents.type === "tree-group" ||
3776
+ items.contents.type === "treeGroup"
3777
+ ? _c(
3778
+ "es-tree-group",
3779
+ _vm._g(
3780
+ _vm._b(
3781
+ {
3782
+ attrs: {
3783
+ appId: _vm.taskExamineAppId,
3784
+ display:
3785
+ _vm.activeName ===
3786
+ String(indexs),
3787
+ },
3802
3788
  },
3803
- },
3789
+ "es-tree-group",
3790
+ _vm.handleExclAttribute({
3791
+ data: items.contents,
3792
+ attrs: [
3793
+ "events",
3794
+ "visible",
3795
+ "type",
3796
+ ],
3797
+ }),
3798
+ false
3799
+ ),
3800
+ Object.assign(
3801
+ {},
3802
+ items.contents.events
3803
+ )
3804
+ )
3805
+ )
3806
+ : _vm._e(),
3807
+ items.contents.type === "iframe" &&
3808
+ !items.contents.blank
3809
+ ? _c("iframe", {
3810
+ attrs: {
3811
+ id:
3812
+ items.contents.id ||
3813
+ items.contents.name,
3814
+ name: items.contents.name,
3815
+ frameborder: "0",
3816
+ width: "100%",
3817
+ height: "100%",
3818
+ src: _vm.handleUrlJoinParams(
3819
+ items.contents
3820
+ ),
3804
3821
  },
3822
+ })
3823
+ : _vm._e(),
3824
+ items.contents.type === "attachment"
3825
+ ? _c(
3805
3826
  "es-upload",
3806
- _vm.handleExclAttribute({
3807
- data: items.contents,
3808
- attrs: ["events", "type"],
3809
- }),
3810
- false
3811
- ),
3812
- Object.assign(
3813
- {},
3814
- items.contents.events
3827
+ _vm._g(
3828
+ _vm._b(
3829
+ {
3830
+ staticClass: "es-attachment",
3831
+ attrs: {
3832
+ ownId: _vm.businessId,
3833
+ "file-count":
3834
+ items.title.count,
3835
+ display:
3836
+ _vm.activeName ===
3837
+ String(indexs),
3838
+ height: "auto",
3839
+ },
3840
+ on: {
3841
+ "update:fileCount":
3842
+ function ($event) {
3843
+ _vm.$set(
3844
+ items.title,
3845
+ "count",
3846
+ $event
3847
+ )
3848
+ },
3849
+ },
3850
+ },
3851
+ "es-upload",
3852
+ _vm.handleExclAttribute({
3853
+ data: items.contents,
3854
+ attrs: ["events", "type"],
3855
+ }),
3856
+ false
3857
+ ),
3858
+ Object.assign(
3859
+ {},
3860
+ items.contents.events
3861
+ )
3862
+ )
3815
3863
  )
3816
- )
3817
- )
3818
- : _vm._e(),
3819
- ],
3820
- ]
3821
- : _vm._e(),
3822
- ],
3823
- 2
3824
- )
3825
- : _vm._e(),
3826
- ]
3827
- }),
3864
+ : _vm._e(),
3865
+ ],
3866
+ ]
3867
+ : _vm._e(),
3868
+ ],
3869
+ 2
3870
+ )
3871
+ : _vm._e(),
3872
+ ]
3873
+ }),
3874
+ ],
3875
+ 2
3876
+ ),
3828
3877
  ],
3829
- 2
3878
+ 1
3830
3879
  ),
3831
3880
  _vm.isShow
3832
3881
  ? _c(
@@ -3834,6 +3883,7 @@ var render = function () {
3834
3883
  _vm._b(
3835
3884
  {
3836
3885
  staticClass: "es-group-flow",
3886
+ style: { width: _vm._width },
3837
3887
  attrs: {
3838
3888
  "before-submit": _vm.handleSubmit,
3839
3889
  businessId: _vm.businessId,
@@ -3859,7 +3909,7 @@ var staticRenderFns = []
3859
3909
  render._withStripped = true
3860
3910
 
3861
3911
 
3862
- // CONCATENATED MODULE: ./packages/flow-group/src/main.vue?vue&type=template&id=40ff417b&
3912
+ // CONCATENATED MODULE: ./packages/flow-group/src/main.vue?vue&type=template&id=3b17dbd6&
3863
3913
 
3864
3914
  // EXTERNAL MODULE: ./src/utils/util.js
3865
3915
  var util = __webpack_require__(0);
@@ -4236,6 +4286,18 @@ var util = __webpack_require__(0);
4236
4286
  //
4237
4287
  //
4238
4288
  //
4289
+ //
4290
+ //
4291
+ //
4292
+ //
4293
+ //
4294
+ //
4295
+ //
4296
+ //
4297
+ //
4298
+ //
4299
+ //
4300
+ //
4239
4301
 
4240
4302
 
4241
4303
  /* harmony default export */ var mainvue_type_script_lang_js_ = ({
@@ -4277,7 +4339,11 @@ var util = __webpack_require__(0);
4277
4339
  default: true
4278
4340
  },
4279
4341
  appId: String,
4280
- zoom: false
4342
+ zoom: false,
4343
+ width: {
4344
+ type: String,
4345
+ default: '360px'
4346
+ }
4281
4347
  },
4282
4348
  data: function data() {
4283
4349
  return {
@@ -4301,6 +4367,9 @@ var util = __webpack_require__(0);
4301
4367
  return false;
4302
4368
  }
4303
4369
  return this.show;
4370
+ },
4371
+ _width: function _width() {
4372
+ return parseInt(this.width, 10) + 'px';
4304
4373
  }
4305
4374
  },
4306
4375
  watch: {