eoss-ui 0.4.58 → 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 (71) hide show
  1. package/lib/button-group.js +18 -5
  2. package/lib/button.js +18 -5
  3. package/lib/checkbox-group.js +18 -5
  4. package/lib/clients.js +95 -4
  5. package/lib/data-table-form.js +18 -5
  6. package/lib/data-table.js +23 -11
  7. package/lib/date-picker.js +18 -5
  8. package/lib/dialog.js +18 -5
  9. package/lib/eoss-ui.common.js +1322 -1049
  10. package/lib/flow-group.js +927 -860
  11. package/lib/flow-list.js +18 -5
  12. package/lib/flow.js +31 -16
  13. package/lib/form.js +18 -5
  14. package/lib/handle-user.js +18 -5
  15. package/lib/handler.js +37 -15
  16. package/lib/index.js +1 -1
  17. package/lib/input-number.js +18 -5
  18. package/lib/input.js +30 -10
  19. package/lib/login.js +101 -33
  20. package/lib/main.js +62 -30
  21. package/lib/mainComp.js +18 -5
  22. package/lib/nav.js +18 -5
  23. package/lib/page.js +18 -5
  24. package/lib/player.js +18 -5
  25. package/lib/qr-code.js +18 -5
  26. package/lib/radio-group.js +18 -5
  27. package/lib/retrial-auth.js +18 -5
  28. package/lib/select-ganged.js +18 -5
  29. package/lib/select.js +18 -5
  30. package/lib/selector-panel.js +18 -5
  31. package/lib/selector.js +18 -5
  32. package/lib/sizer.js +18 -5
  33. package/lib/steps.js +18 -5
  34. package/lib/switch.js +18 -5
  35. package/lib/table-form.js +25 -11
  36. package/lib/tabs.js +18 -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 +18 -5
  42. package/lib/toolbar.js +0 -1
  43. package/lib/tree-group.js +18 -5
  44. package/lib/tree.js +18 -5
  45. package/lib/upload.js +89 -52
  46. package/lib/utils/util.js +18 -5
  47. package/lib/wujie.js +18 -5
  48. package/lib/wxlogin.js +18 -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 +20 -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 +20 -10
  60. package/packages/main/src/userinfo.vue +20 -9
  61. package/packages/theme-chalk/lib/clients.css +1 -1
  62. package/packages/theme-chalk/lib/flow-group.css +1 -1
  63. package/packages/theme-chalk/lib/index.css +1 -1
  64. package/packages/theme-chalk/lib/login.css +1 -1
  65. package/packages/theme-chalk/src/clients.scss +8 -0
  66. package/packages/theme-chalk/src/flow-group.scss +9 -3
  67. package/packages/theme-chalk/src/login.scss +3 -0
  68. package/packages/toolbar/src/main.vue +0 -1
  69. package/packages/upload/src/main.vue +43 -27
  70. package/src/index.js +1 -1
  71. package/src/utils/util.js +20 -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) {
@@ -2840,7 +2853,7 @@ module.exports = require("qs");
2840
2853
  // ESM COMPAT FLAG
2841
2854
  __webpack_require__.r(__webpack_exports__);
2842
2855
 
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&
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&
2844
2857
  var render = function () {
2845
2858
  var _vm = this
2846
2859
  var _h = _vm.$createElement
@@ -2850,167 +2863,212 @@ var render = function () {
2850
2863
  { staticClass: "es-flow-group", class: { "is-hide-flow": !_vm.isShow } },
2851
2864
  [
2852
2865
  _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
- },
2866
+ "div",
2867
+ { staticClass: "es-flow-group-main" },
2866
2868
  [
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",
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,
2930
2919
  },
2931
- [
2932
- _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(
2933
2943
  "div",
2934
2944
  {
2945
+ key: index,
2935
2946
  staticClass:
2936
- "es-tab-pane-main",
2947
+ "es-tab-pane-list",
2937
2948
  },
2938
2949
  [
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
- },
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(
2971
2965
  "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",
2966
+ _vm._g(
2967
+ _vm._b(
2990
2968
  {
2991
- 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
+ },
2992
2990
  },
2993
- [
2994
- Array.isArray(
2995
- item.dialog
2996
- )
2997
- ? _vm._l(
2998
- item.dialog,
2999
- function (
3000
- ele,
3001
- ids
3002
- ) {
3003
- 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(
3004
3061
  "es-dialog",
3005
3062
  _vm._g(
3006
3063
  _vm._b(
3007
3064
  {
3008
- key: ids,
3009
3065
  attrs:
3010
3066
  {
3011
3067
  isReload: true,
3012
3068
  visible:
3013
- ele.visible,
3069
+ item
3070
+ .dialog
3071
+ .visible,
3014
3072
  },
3015
3073
  on: {
3016
3074
  "update:visible":
@@ -3018,7 +3076,7 @@ var render = function () {
3018
3076
  $event
3019
3077
  ) {
3020
3078
  _vm.$set(
3021
- ele,
3079
+ item.dialog,
3022
3080
  "visible",
3023
3081
  $event
3024
3082
  )
@@ -3026,304 +3084,316 @@ var render = function () {
3026
3084
  },
3027
3085
  },
3028
3086
  "es-dialog",
3029
- ele,
3087
+ item.dialog,
3030
3088
  false
3031
3089
  ),
3032
3090
  Object.assign(
3033
3091
  {},
3034
- ele.events
3092
+ item
3093
+ .dialog
3094
+ .events
3035
3095
  )
3036
3096
  )
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
3097
  ),
3070
- Object.assign(
3071
- {},
3072
- item
3073
- .dialog
3074
- .events
3075
- )
3076
- )
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
3077
3122
  ),
3078
- ],
3079
- 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
3080
3141
  )
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
- },
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
+ ),
3103
3161
  },
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
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
+ )
3120
3218
  )
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 (
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 =
3166
3258
  $event
3167
- ) {
3168
- _vm.$set(
3169
- items.title,
3170
- "count",
3171
- $event
3172
- )
3173
- },
3174
- },
3259
+ },
3175
3260
  },
3176
- "es-upload",
3177
- _vm.handleExclAttribute(
3178
- {
3179
- data: item,
3180
- attrs: [
3181
- "events",
3182
- "type",
3183
- ],
3184
- }
3185
- ),
3186
- 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
+ }
3187
3274
  ),
3188
- Object.assign(
3189
- {},
3190
- item.events
3191
- )
3275
+ false
3276
+ ),
3277
+ Object.assign(
3278
+ {},
3279
+ item.events
3192
3280
  )
3193
3281
  )
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
3282
  )
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
- },
3283
+ : _vm._e(),
3284
+ item.type === "data-table" ||
3285
+ item.type === "dataTable" ||
3286
+ item.type === "flow-list" ||
3287
+ item.type === "flowList"
3288
+ ? _c(
3286
3289
  "es-data-table",
3287
- _vm.handleExclAttribute(
3288
- {
3289
- data: item,
3290
- attrs: [
3291
- "events",
3292
- "visible",
3293
- "type",
3294
- ],
3295
- }
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
3296
3330
  ),
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(
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(
3317
3386
  "es-dialog",
3318
3387
  _vm._g(
3319
3388
  _vm._b(
3320
3389
  {
3321
- key: ids,
3322
3390
  attrs:
3323
3391
  {
3324
3392
  isReload: true,
3325
3393
  visible:
3326
- ele.visible,
3394
+ item
3395
+ .dialog
3396
+ .visible,
3327
3397
  },
3328
3398
  on: {
3329
3399
  "update:visible":
@@ -3331,7 +3401,7 @@ var render = function () {
3331
3401
  $event
3332
3402
  ) {
3333
3403
  _vm.$set(
3334
- ele,
3404
+ item.dialog,
3335
3405
  "visible",
3336
3406
  $event
3337
3407
  )
@@ -3339,357 +3409,148 @@ var render = function () {
3339
3409
  },
3340
3410
  },
3341
3411
  "es-dialog",
3342
- ele,
3412
+ item.dialog,
3343
3413
  false
3344
3414
  ),
3345
3415
  Object.assign(
3346
3416
  {},
3347
- ele.events
3417
+ item
3418
+ .dialog
3419
+ .events
3348
3420
  )
3349
3421
  )
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
3422
  ),
3383
- Object.assign(
3384
- {},
3385
- item
3386
- .dialog
3387
- .events
3388
- )
3389
- )
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
3390
3446
  ),
3391
- ],
3392
- 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
3393
3465
  )
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
3466
+ )
3431
3467
  )
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
- },
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
+ ),
3482
3484
  },
3485
+ })
3486
+ : _vm._e(),
3487
+ item.type === "attachment"
3488
+ ? _c(
3483
3489
  "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
- )
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
+ ),
3525
3508
  },
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
- },
3509
+ on: {
3510
+ "update:fileCount":
3511
+ function (
3512
+ $event
3513
+ ) {
3514
+ _vm.$set(
3515
+ items.title,
3516
+ "count",
3517
+ $event
3518
+ )
3668
3519
  },
3669
- },
3670
- "es-dialog",
3671
- ele,
3672
- false
3673
- ),
3674
- Object.assign(
3675
- {},
3676
- ele.events
3677
- )
3678
- )
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
3679
3537
  )
3680
- }
3538
+ )
3681
3539
  )
3682
- : _c(
3540
+ : _vm._e(),
3541
+ item.type === "dialog" &&
3542
+ _vm.activeName ===
3543
+ String(indexs)
3544
+ ? _c(
3683
3545
  "es-dialog",
3684
3546
  _vm._g(
3685
3547
  _vm._b(
3686
3548
  {
3549
+ key: index,
3687
3550
  attrs: {
3688
3551
  isReload: true,
3689
3552
  visible:
3690
- items.contents
3691
- .dialog
3692
- .visible,
3553
+ item.visible,
3693
3554
  },
3694
3555
  on: {
3695
3556
  "update:visible":
@@ -3697,9 +3558,7 @@ var render = function () {
3697
3558
  $event
3698
3559
  ) {
3699
3560
  _vm.$set(
3700
- items
3701
- .contents
3702
- .dialog,
3561
+ item,
3703
3562
  "visible",
3704
3563
  $event
3705
3564
  )
@@ -3707,126 +3566,314 @@ var render = function () {
3707
3566
  },
3708
3567
  },
3709
3568
  "es-dialog",
3710
- items.contents
3711
- .dialog,
3569
+ item,
3712
3570
  false
3713
3571
  ),
3714
3572
  Object.assign(
3715
3573
  {},
3716
- items.contents
3717
- .dialog.events
3574
+ item.events
3718
3575
  )
3719
3576
  )
3720
- ),
3577
+ )
3578
+ : _vm._e(),
3721
3579
  ],
3722
- 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
3723
3628
  )
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
3629
+ )
3757
3630
  )
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
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
3801
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
+ },
3802
3786
  },
3803
- },
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
+ ),
3804
3819
  },
3820
+ })
3821
+ : _vm._e(),
3822
+ items.contents.type === "attachment"
3823
+ ? _c(
3805
3824
  "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
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
+ )
3815
3861
  )
3816
- )
3817
- )
3818
- : _vm._e(),
3819
- ],
3820
- ]
3821
- : _vm._e(),
3822
- ],
3823
- 2
3824
- )
3825
- : _vm._e(),
3826
- ]
3827
- }),
3862
+ : _vm._e(),
3863
+ ],
3864
+ ]
3865
+ : _vm._e(),
3866
+ ],
3867
+ 2
3868
+ )
3869
+ : _vm._e(),
3870
+ ]
3871
+ }),
3872
+ ],
3873
+ 2
3874
+ ),
3828
3875
  ],
3829
- 2
3876
+ 1
3830
3877
  ),
3831
3878
  _vm.isShow
3832
3879
  ? _c(
@@ -3834,6 +3881,7 @@ var render = function () {
3834
3881
  _vm._b(
3835
3882
  {
3836
3883
  staticClass: "es-group-flow",
3884
+ style: { width: _vm._width },
3837
3885
  attrs: {
3838
3886
  "before-submit": _vm.handleSubmit,
3839
3887
  businessId: _vm.businessId,
@@ -3859,7 +3907,7 @@ var staticRenderFns = []
3859
3907
  render._withStripped = true
3860
3908
 
3861
3909
 
3862
- // 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&
3863
3911
 
3864
3912
  // EXTERNAL MODULE: ./src/utils/util.js
3865
3913
  var util = __webpack_require__(0);
@@ -4236,6 +4284,18 @@ var util = __webpack_require__(0);
4236
4284
  //
4237
4285
  //
4238
4286
  //
4287
+ //
4288
+ //
4289
+ //
4290
+ //
4291
+ //
4292
+ //
4293
+ //
4294
+ //
4295
+ //
4296
+ //
4297
+ //
4298
+ //
4239
4299
 
4240
4300
 
4241
4301
  /* harmony default export */ var mainvue_type_script_lang_js_ = ({
@@ -4277,7 +4337,11 @@ var util = __webpack_require__(0);
4277
4337
  default: true
4278
4338
  },
4279
4339
  appId: String,
4280
- zoom: false
4340
+ zoom: false,
4341
+ width: {
4342
+ type: String,
4343
+ default: '360px'
4344
+ }
4281
4345
  },
4282
4346
  data: function data() {
4283
4347
  return {
@@ -4301,6 +4365,9 @@ var util = __webpack_require__(0);
4301
4365
  return false;
4302
4366
  }
4303
4367
  return this.show;
4368
+ },
4369
+ _width: function _width() {
4370
+ return parseInt(this.width, 10) + 'px';
4304
4371
  }
4305
4372
  },
4306
4373
  watch: {