eoss-ui 0.4.57 → 0.4.59

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