hy-logic-flow 1.0.4 → 1.0.6
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.
- package/README.md +100 -110
- package/lib/hy-logic-flow-mini.common.js +553 -311
- package/lib/hy-logic-flow-mini.css +39 -40
- package/lib/hy-logic-flow-mini.umd.js +553 -311
- package/lib/hy-logic-flow-mini.umd.min.js +8 -8
- package/lib/hy-logic-flow.common.js +553 -311
- package/lib/hy-logic-flow.css +39 -40
- package/lib/hy-logic-flow.umd.js +553 -311
- package/lib/hy-logic-flow.umd.min.js +8 -8
- package/package.json +1 -1
- package/styles/smart-flow-design.less +3 -3
package/lib/hy-logic-flow.umd.js
CHANGED
|
@@ -8033,6 +8033,54 @@ function baseGetTag(value) {
|
|
|
8033
8033
|
module.exports = baseGetTag;
|
|
8034
8034
|
|
|
8035
8035
|
|
|
8036
|
+
/***/ }),
|
|
8037
|
+
|
|
8038
|
+
/***/ 2568:
|
|
8039
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__) {
|
|
8040
|
+
|
|
8041
|
+
"use strict";
|
|
8042
|
+
/* harmony default export */ __webpack_exports__.A = ({
|
|
8043
|
+
components: {
|
|
8044
|
+
// 定义一个函数式组件作为占位符
|
|
8045
|
+
VnodeContent: {
|
|
8046
|
+
functional: true,
|
|
8047
|
+
props: ['vnode', 'value', 'name'],
|
|
8048
|
+
render(h, ctx) {
|
|
8049
|
+
const {
|
|
8050
|
+
vnode,
|
|
8051
|
+
value,
|
|
8052
|
+
name
|
|
8053
|
+
} = ctx.props;
|
|
8054
|
+
if (!vnode) return null;
|
|
8055
|
+
|
|
8056
|
+
// 深度克隆或直接修改 VNode 的 data(Vue 2 允许在渲染前微调)
|
|
8057
|
+
const data = vnode.data || (vnode.data = {});
|
|
8058
|
+
|
|
8059
|
+
// 1. 注入 Props (对应 v-model 的 value 和 sync 的 name)
|
|
8060
|
+
data.props = {
|
|
8061
|
+
...data.props,
|
|
8062
|
+
value: value,
|
|
8063
|
+
name: name
|
|
8064
|
+
};
|
|
8065
|
+
|
|
8066
|
+
// 2. 注入事件 (监听 input 和 update:name)
|
|
8067
|
+
const listeners = data.on || (data.on = {});
|
|
8068
|
+
|
|
8069
|
+
// 捕获 input 事件,触发父级的 v-model
|
|
8070
|
+
listeners.input = val => {
|
|
8071
|
+
ctx.listeners.input && ctx.listeners.input(val);
|
|
8072
|
+
};
|
|
8073
|
+
|
|
8074
|
+
// 捕获 update:name 事件,触发父级的 .sync
|
|
8075
|
+
listeners['update:name'] = val => {
|
|
8076
|
+
ctx.listeners['update:name'] && ctx.listeners['update:name'](val);
|
|
8077
|
+
};
|
|
8078
|
+
return vnode;
|
|
8079
|
+
}
|
|
8080
|
+
}
|
|
8081
|
+
}
|
|
8082
|
+
});
|
|
8083
|
+
|
|
8036
8084
|
/***/ }),
|
|
8037
8085
|
|
|
8038
8086
|
/***/ 2572:
|
|
@@ -11665,7 +11713,7 @@ var render = function render() {
|
|
|
11665
11713
|
var staticRenderFns = [];
|
|
11666
11714
|
|
|
11667
11715
|
// EXTERNAL MODULE: ./packages/Component/FlowSimpleSelect.vue + 3 modules
|
|
11668
|
-
var FlowSimpleSelect = __webpack_require__(
|
|
11716
|
+
var FlowSimpleSelect = __webpack_require__(9440);
|
|
11669
11717
|
// EXTERNAL MODULE: ./packages/mixins/flowDrawerMixin.js
|
|
11670
11718
|
var flowDrawerMixin = __webpack_require__(8787);
|
|
11671
11719
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/DesignForm.vue?vue&type=script&lang=js
|
|
@@ -22652,7 +22700,7 @@ module.exports = findIndex;
|
|
|
22652
22700
|
drawerWidth() {
|
|
22653
22701
|
return width => {
|
|
22654
22702
|
if (!width) {
|
|
22655
|
-
width = '
|
|
22703
|
+
width = '45%';
|
|
22656
22704
|
}
|
|
22657
22705
|
return _util_deviceUtil__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .A.isMobile() ? '100%' : width;
|
|
22658
22706
|
};
|
|
@@ -49480,6 +49528,8 @@ __webpack_require__(2500)(String, 'String', function (iterated) {
|
|
|
49480
49528
|
/* harmony import */ var _flowMethodsMixin__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9106);
|
|
49481
49529
|
/* harmony import */ var _flowComputedMixin__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4725);
|
|
49482
49530
|
/* harmony import */ var _flowBaseDataMixin__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9471);
|
|
49531
|
+
/* harmony import */ var _flowComponentsMixin__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(2568);
|
|
49532
|
+
|
|
49483
49533
|
|
|
49484
49534
|
|
|
49485
49535
|
|
|
@@ -49517,9 +49567,11 @@ __webpack_require__(2500)(String, 'String', function (iterated) {
|
|
|
49517
49567
|
height: 'calc(100vh - 114px)',
|
|
49518
49568
|
'overflow-y': 'auto'
|
|
49519
49569
|
},
|
|
49570
|
+
drawerStyle: {},
|
|
49520
49571
|
..._flowBaseDataMixin__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .A.data()
|
|
49521
49572
|
};
|
|
49522
49573
|
},
|
|
49574
|
+
..._flowComponentsMixin__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .A,
|
|
49523
49575
|
..._flowComputedMixin__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .A,
|
|
49524
49576
|
..._flowMethodsMixin__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .A
|
|
49525
49577
|
});
|
|
@@ -51193,6 +51245,173 @@ module.exports = toNumber;
|
|
|
51193
51245
|
})));
|
|
51194
51246
|
|
|
51195
51247
|
|
|
51248
|
+
/***/ }),
|
|
51249
|
+
|
|
51250
|
+
/***/ 9440:
|
|
51251
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
51252
|
+
|
|
51253
|
+
"use strict";
|
|
51254
|
+
|
|
51255
|
+
// EXPORTS
|
|
51256
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
51257
|
+
A: function() { return /* binding */ FlowSimpleSelect; }
|
|
51258
|
+
});
|
|
51259
|
+
|
|
51260
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSimpleSelect.vue?vue&type=template&id=495492bc
|
|
51261
|
+
var render = function render() {
|
|
51262
|
+
var _vm = this,
|
|
51263
|
+
_c = _vm._self._c;
|
|
51264
|
+
return _c('a-select', {
|
|
51265
|
+
staticClass: "w-fill",
|
|
51266
|
+
attrs: {
|
|
51267
|
+
"size": _vm.size,
|
|
51268
|
+
"show-search": "",
|
|
51269
|
+
"filter-option": _vm.filterOption,
|
|
51270
|
+
"allowClear": "",
|
|
51271
|
+
"getPopupContainer": triggerNode => triggerNode.parentNode,
|
|
51272
|
+
"placeholder": _vm.placeholder
|
|
51273
|
+
},
|
|
51274
|
+
on: {
|
|
51275
|
+
"change": _vm.onChange
|
|
51276
|
+
},
|
|
51277
|
+
model: {
|
|
51278
|
+
value: _vm.currentValue,
|
|
51279
|
+
callback: function ($$v) {
|
|
51280
|
+
_vm.currentValue = $$v;
|
|
51281
|
+
},
|
|
51282
|
+
expression: "currentValue"
|
|
51283
|
+
}
|
|
51284
|
+
}, [_vm._l(_vm.datas, function (data, i) {
|
|
51285
|
+
return [_vm.dynamicChild(data)?.length > 0 ? _c('a-select-opt-group', {
|
|
51286
|
+
key: 'group_' + data[_vm.labelName],
|
|
51287
|
+
attrs: {
|
|
51288
|
+
"label": data[_vm.labelName]
|
|
51289
|
+
}
|
|
51290
|
+
}, _vm._l(_vm.dynamicChild(data), function (childData, j) {
|
|
51291
|
+
return _c('a-select-option', {
|
|
51292
|
+
key: childData[_vm.labelName] + j,
|
|
51293
|
+
attrs: {
|
|
51294
|
+
"value": childData[_vm.valueName],
|
|
51295
|
+
"title": childData[_vm.labelName]
|
|
51296
|
+
}
|
|
51297
|
+
}, [_vm._v(_vm._s(childData[_vm.labelName]))]);
|
|
51298
|
+
}), 1) : _c('a-select-option', {
|
|
51299
|
+
key: data[_vm.labelName] + i,
|
|
51300
|
+
attrs: {
|
|
51301
|
+
"value": data[_vm.valueName],
|
|
51302
|
+
"title": data[_vm.labelName]
|
|
51303
|
+
}
|
|
51304
|
+
}, [_vm._v(" " + _vm._s(data[_vm.labelName]) + " ")])];
|
|
51305
|
+
})], 2);
|
|
51306
|
+
};
|
|
51307
|
+
var staticRenderFns = [];
|
|
51308
|
+
|
|
51309
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
51310
|
+
/* harmony default export */ var FlowSimpleSelectvue_type_script_lang_js = ({
|
|
51311
|
+
name: 'FlowSimpleSelect',
|
|
51312
|
+
props: {
|
|
51313
|
+
datas: {
|
|
51314
|
+
type: Array,
|
|
51315
|
+
required: false,
|
|
51316
|
+
default: () => []
|
|
51317
|
+
},
|
|
51318
|
+
valueName: {
|
|
51319
|
+
type: String,
|
|
51320
|
+
required: false,
|
|
51321
|
+
default: 'value'
|
|
51322
|
+
},
|
|
51323
|
+
labelName: {
|
|
51324
|
+
type: String,
|
|
51325
|
+
required: false,
|
|
51326
|
+
default: 'name'
|
|
51327
|
+
},
|
|
51328
|
+
size: {
|
|
51329
|
+
type: String,
|
|
51330
|
+
required: false,
|
|
51331
|
+
default: 'large'
|
|
51332
|
+
},
|
|
51333
|
+
placeholder: {
|
|
51334
|
+
type: String,
|
|
51335
|
+
required: false,
|
|
51336
|
+
default: '请选择'
|
|
51337
|
+
},
|
|
51338
|
+
value: {
|
|
51339
|
+
type: [Number, String],
|
|
51340
|
+
required: false,
|
|
51341
|
+
default: undefined
|
|
51342
|
+
}
|
|
51343
|
+
},
|
|
51344
|
+
data() {
|
|
51345
|
+
return {
|
|
51346
|
+
currentValue: undefined
|
|
51347
|
+
};
|
|
51348
|
+
},
|
|
51349
|
+
watch: {
|
|
51350
|
+
value(curVal, oldVal) {
|
|
51351
|
+
this.initData(curVal);
|
|
51352
|
+
}
|
|
51353
|
+
},
|
|
51354
|
+
mounted() {
|
|
51355
|
+
this.initData(this.value);
|
|
51356
|
+
},
|
|
51357
|
+
methods: {
|
|
51358
|
+
dynamicChild(item) {
|
|
51359
|
+
return item?.children || item?.child;
|
|
51360
|
+
},
|
|
51361
|
+
initData(value) {
|
|
51362
|
+
if (typeof value !== 'undefined') {
|
|
51363
|
+
this.currentValue = value;
|
|
51364
|
+
} else {
|
|
51365
|
+
this.currentValue = undefined;
|
|
51366
|
+
}
|
|
51367
|
+
},
|
|
51368
|
+
onChange(value, option) {
|
|
51369
|
+
this.$emit('input', value);
|
|
51370
|
+
let datas = this.datas.map(item => {
|
|
51371
|
+
return Array.isArray(this.dynamicChild(item)) ? this.dynamicChild(item) : item;
|
|
51372
|
+
}).flat();
|
|
51373
|
+
this.$emit('update:name', datas.filter(data => data[this.valueName] == value).map(data => data[this.labelName])[0]);
|
|
51374
|
+
this.$emit('change', value, datas.filter(data => data[this.valueName] == value)[0]);
|
|
51375
|
+
},
|
|
51376
|
+
filterOption(input, option) {
|
|
51377
|
+
let optionText = option.componentOptions.children[0]?.text ?? '';
|
|
51378
|
+
// 如果当前节点是分组(a-select-optgroup)
|
|
51379
|
+
if (option.data && option.data.attrs && option.data.attrs.role === 'optgroup') {
|
|
51380
|
+
// 确保当前是具体的选项节点,再进行文本匹配
|
|
51381
|
+
// 这里使用 option.componentOptions.children[0].text 获取选项的显示文本
|
|
51382
|
+
optionText = option.componentOptions && option.componentOptions.children && option.componentOptions.children.length > 0 ? option.componentOptions.children[0].text : '';
|
|
51383
|
+
}
|
|
51384
|
+
|
|
51385
|
+
// 进行大小写不敏感的模糊匹配
|
|
51386
|
+
return optionText.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
51387
|
+
}
|
|
51388
|
+
}
|
|
51389
|
+
});
|
|
51390
|
+
;// ./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
51391
|
+
/* harmony default export */ var Component_FlowSimpleSelectvue_type_script_lang_js = (FlowSimpleSelectvue_type_script_lang_js);
|
|
51392
|
+
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
51393
|
+
var componentNormalizer = __webpack_require__(1656);
|
|
51394
|
+
;// ./packages/Component/FlowSimpleSelect.vue
|
|
51395
|
+
|
|
51396
|
+
|
|
51397
|
+
|
|
51398
|
+
|
|
51399
|
+
|
|
51400
|
+
/* normalize component */
|
|
51401
|
+
;
|
|
51402
|
+
var component = (0,componentNormalizer/* default */.A)(
|
|
51403
|
+
Component_FlowSimpleSelectvue_type_script_lang_js,
|
|
51404
|
+
render,
|
|
51405
|
+
staticRenderFns,
|
|
51406
|
+
false,
|
|
51407
|
+
null,
|
|
51408
|
+
null,
|
|
51409
|
+
null
|
|
51410
|
+
|
|
51411
|
+
)
|
|
51412
|
+
|
|
51413
|
+
/* harmony default export */ var FlowSimpleSelect = (component.exports);
|
|
51414
|
+
|
|
51196
51415
|
/***/ }),
|
|
51197
51416
|
|
|
51198
51417
|
/***/ 9471:
|
|
@@ -51824,156 +52043,6 @@ module.exports = cloneArrayBuffer;
|
|
|
51824
52043
|
})));
|
|
51825
52044
|
|
|
51826
52045
|
|
|
51827
|
-
/***/ }),
|
|
51828
|
-
|
|
51829
|
-
/***/ 9745:
|
|
51830
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
51831
|
-
|
|
51832
|
-
"use strict";
|
|
51833
|
-
|
|
51834
|
-
// EXPORTS
|
|
51835
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
51836
|
-
A: function() { return /* binding */ FlowSimpleSelect; }
|
|
51837
|
-
});
|
|
51838
|
-
|
|
51839
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSimpleSelect.vue?vue&type=template&id=68aca4c4
|
|
51840
|
-
var render = function render() {
|
|
51841
|
-
var _vm = this,
|
|
51842
|
-
_c = _vm._self._c;
|
|
51843
|
-
return _c('a-select', {
|
|
51844
|
-
staticClass: "w-fill",
|
|
51845
|
-
attrs: {
|
|
51846
|
-
"size": _vm.size,
|
|
51847
|
-
"show-search": "",
|
|
51848
|
-
"allowClear": "",
|
|
51849
|
-
"placeholder": _vm.placeholder
|
|
51850
|
-
},
|
|
51851
|
-
on: {
|
|
51852
|
-
"change": _vm.onChange
|
|
51853
|
-
},
|
|
51854
|
-
model: {
|
|
51855
|
-
value: _vm.currentValue,
|
|
51856
|
-
callback: function ($$v) {
|
|
51857
|
-
_vm.currentValue = $$v;
|
|
51858
|
-
},
|
|
51859
|
-
expression: "currentValue"
|
|
51860
|
-
}
|
|
51861
|
-
}, [_vm._l(_vm.datas, function (data, i) {
|
|
51862
|
-
return [data.children?.length > 0 ? _c('a-select-opt-group', {
|
|
51863
|
-
key: 'group_' + data[_vm.labelName],
|
|
51864
|
-
attrs: {
|
|
51865
|
-
"label": data[_vm.labelName]
|
|
51866
|
-
}
|
|
51867
|
-
}, _vm._l(data.children, function (childData, j) {
|
|
51868
|
-
return _c('a-select-option', {
|
|
51869
|
-
key: childData[_vm.labelName] + j,
|
|
51870
|
-
attrs: {
|
|
51871
|
-
"value": childData[_vm.valueName],
|
|
51872
|
-
"title": childData[_vm.labelName]
|
|
51873
|
-
}
|
|
51874
|
-
}, [_vm._v(_vm._s(childData[_vm.labelName]))]);
|
|
51875
|
-
}), 1) : _c('a-select-option', {
|
|
51876
|
-
key: data[_vm.labelName] + i,
|
|
51877
|
-
attrs: {
|
|
51878
|
-
"value": data[_vm.valueName],
|
|
51879
|
-
"title": data[_vm.labelName]
|
|
51880
|
-
}
|
|
51881
|
-
}, [_vm._v(" " + _vm._s(data[_vm.labelName]) + " ")])];
|
|
51882
|
-
})], 2);
|
|
51883
|
-
};
|
|
51884
|
-
var staticRenderFns = [];
|
|
51885
|
-
|
|
51886
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
51887
|
-
/* harmony default export */ var FlowSimpleSelectvue_type_script_lang_js = ({
|
|
51888
|
-
name: 'FlowSimpleSelect',
|
|
51889
|
-
props: {
|
|
51890
|
-
datas: {
|
|
51891
|
-
type: Array,
|
|
51892
|
-
required: false,
|
|
51893
|
-
default: () => []
|
|
51894
|
-
},
|
|
51895
|
-
valueName: {
|
|
51896
|
-
type: String,
|
|
51897
|
-
required: false,
|
|
51898
|
-
default: 'value'
|
|
51899
|
-
},
|
|
51900
|
-
labelName: {
|
|
51901
|
-
type: String,
|
|
51902
|
-
required: false,
|
|
51903
|
-
default: 'name'
|
|
51904
|
-
},
|
|
51905
|
-
size: {
|
|
51906
|
-
type: String,
|
|
51907
|
-
required: false,
|
|
51908
|
-
default: 'large'
|
|
51909
|
-
},
|
|
51910
|
-
placeholder: {
|
|
51911
|
-
type: String,
|
|
51912
|
-
required: false,
|
|
51913
|
-
default: '请选择'
|
|
51914
|
-
},
|
|
51915
|
-
value: {
|
|
51916
|
-
type: [Number, String],
|
|
51917
|
-
required: false,
|
|
51918
|
-
default: undefined
|
|
51919
|
-
}
|
|
51920
|
-
},
|
|
51921
|
-
data() {
|
|
51922
|
-
return {
|
|
51923
|
-
currentValue: undefined
|
|
51924
|
-
};
|
|
51925
|
-
},
|
|
51926
|
-
watch: {
|
|
51927
|
-
value(curVal, oldVal) {
|
|
51928
|
-
this.initData(curVal);
|
|
51929
|
-
}
|
|
51930
|
-
},
|
|
51931
|
-
mounted() {
|
|
51932
|
-
this.initData(this.value);
|
|
51933
|
-
},
|
|
51934
|
-
methods: {
|
|
51935
|
-
initData(value) {
|
|
51936
|
-
if (typeof value !== 'undefined') {
|
|
51937
|
-
this.currentValue = value;
|
|
51938
|
-
} else {
|
|
51939
|
-
this.currentValue = undefined;
|
|
51940
|
-
}
|
|
51941
|
-
},
|
|
51942
|
-
onChange(value, option) {
|
|
51943
|
-
this.$emit('input', value);
|
|
51944
|
-
let datas = this.datas.map(item => {
|
|
51945
|
-
return Array.isArray(item.children) ? item.children : item;
|
|
51946
|
-
}).flat();
|
|
51947
|
-
this.$emit('update:name', datas.filter(data => data[this.valueName] == value).map(data => data[this.labelName])[0]);
|
|
51948
|
-
this.$emit('change', value, datas.filter(data => data[this.valueName] == value)[0]);
|
|
51949
|
-
}
|
|
51950
|
-
}
|
|
51951
|
-
});
|
|
51952
|
-
;// ./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
51953
|
-
/* harmony default export */ var Component_FlowSimpleSelectvue_type_script_lang_js = (FlowSimpleSelectvue_type_script_lang_js);
|
|
51954
|
-
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
51955
|
-
var componentNormalizer = __webpack_require__(1656);
|
|
51956
|
-
;// ./packages/Component/FlowSimpleSelect.vue
|
|
51957
|
-
|
|
51958
|
-
|
|
51959
|
-
|
|
51960
|
-
|
|
51961
|
-
|
|
51962
|
-
/* normalize component */
|
|
51963
|
-
;
|
|
51964
|
-
var component = (0,componentNormalizer/* default */.A)(
|
|
51965
|
-
Component_FlowSimpleSelectvue_type_script_lang_js,
|
|
51966
|
-
render,
|
|
51967
|
-
staticRenderFns,
|
|
51968
|
-
false,
|
|
51969
|
-
null,
|
|
51970
|
-
null,
|
|
51971
|
-
null
|
|
51972
|
-
|
|
51973
|
-
)
|
|
51974
|
-
|
|
51975
|
-
/* harmony default export */ var FlowSimpleSelect = (component.exports);
|
|
51976
|
-
|
|
51977
52046
|
/***/ }),
|
|
51978
52047
|
|
|
51979
52048
|
/***/ 9756:
|
|
@@ -110192,25 +110261,33 @@ external_Vue_default().use(list);
|
|
|
110192
110261
|
(external_Vue_default()).prototype.$confirm = modal.confirm;
|
|
110193
110262
|
(external_Vue_default()).prototype.$warning = modal.warning;
|
|
110194
110263
|
(external_Vue_default()).prototype.$message = message;
|
|
110195
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDesign/index.vue?vue&type=template&id=
|
|
110264
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDesign/index.vue?vue&type=template&id=33f6e767&scoped=true
|
|
110196
110265
|
var render = function render() {
|
|
110197
110266
|
var _vm = this,
|
|
110198
110267
|
_c = _vm._self._c;
|
|
110199
110268
|
return _c('div', {
|
|
110200
|
-
staticClass: "designer-wrap"
|
|
110201
|
-
|
|
110202
|
-
|
|
110203
|
-
"navItems": _vm.navMenu,
|
|
110204
|
-
"currentNav": 3
|
|
110205
|
-
},
|
|
110206
|
-
on: {
|
|
110207
|
-
"click": _vm.publish,
|
|
110208
|
-
"change": _vm.change
|
|
110269
|
+
staticClass: "designer-wrap",
|
|
110270
|
+
style: {
|
|
110271
|
+
height: _vm.height || '100vh'
|
|
110209
110272
|
}
|
|
110210
|
-
}
|
|
110273
|
+
}, [_vm._t("nav", function () {
|
|
110274
|
+
return [_vm.navable && !_vm.readable ? _c('FlowNav', {
|
|
110275
|
+
attrs: {
|
|
110276
|
+
"navItems": _vm.navMenu,
|
|
110277
|
+
"currentNav": 3
|
|
110278
|
+
},
|
|
110279
|
+
on: {
|
|
110280
|
+
"click": _vm.publish,
|
|
110281
|
+
"change": _vm.change
|
|
110282
|
+
}
|
|
110283
|
+
}) : _vm._e()];
|
|
110284
|
+
}, {
|
|
110285
|
+
"navItems": _vm.navMenu,
|
|
110286
|
+
"currentNav": 3
|
|
110287
|
+
}), _c('div', {
|
|
110211
110288
|
staticClass: "designer-content-box",
|
|
110212
110289
|
style: {
|
|
110213
|
-
height: _vm.readable ? '100vh' : 'calc(100vh - 50px)'
|
|
110290
|
+
height: !_vm.readable ? _vm.height || '100vh' : 'calc(' + (_vm.height || '100vh') + ' - 50px)'
|
|
110214
110291
|
}
|
|
110215
110292
|
}, [_vm.lf ? _c('NodePanel', {
|
|
110216
110293
|
attrs: {
|
|
@@ -110231,18 +110308,18 @@ var render = function render() {
|
|
|
110231
110308
|
}) : _vm._e(), _c('div', {
|
|
110232
110309
|
ref: "designContainer",
|
|
110233
110310
|
staticClass: "flow-design-wrap logic-panel"
|
|
110234
|
-
})], 1)],
|
|
110311
|
+
})], 1)], 2);
|
|
110235
110312
|
};
|
|
110236
110313
|
var staticRenderFns = [];
|
|
110237
110314
|
|
|
110238
|
-
// EXTERNAL MODULE: ./packages/util/deviceUtil.js
|
|
110239
|
-
var deviceUtil = __webpack_require__(4121);
|
|
110240
110315
|
// EXTERNAL MODULE: ./packages/mixins/flowMethodsMixin.js
|
|
110241
110316
|
var flowMethodsMixin = __webpack_require__(9106);
|
|
110242
110317
|
// EXTERNAL MODULE: ./packages/mixins/flowBaseDataMixin.js
|
|
110243
110318
|
var flowBaseDataMixin = __webpack_require__(9471);
|
|
110244
110319
|
// EXTERNAL MODULE: ./packages/mixins/flowComputedMixin.js
|
|
110245
110320
|
var flowComputedMixin = __webpack_require__(4725);
|
|
110321
|
+
// EXTERNAL MODULE: ./packages/mixins/flowComponentsMixin.js
|
|
110322
|
+
var flowComponentsMixin = __webpack_require__(2568);
|
|
110246
110323
|
;// ./packages/mixins/flowMixin.js
|
|
110247
110324
|
|
|
110248
110325
|
|
|
@@ -110445,6 +110522,7 @@ const flowMixin = {
|
|
|
110445
110522
|
...flowBaseDataMixin/* default */.A.data()
|
|
110446
110523
|
};
|
|
110447
110524
|
},
|
|
110525
|
+
...flowComponentsMixin/* default */.A,
|
|
110448
110526
|
...flowComputedMixin/* default */.A,
|
|
110449
110527
|
...flowMethodsMixin/* default */.A
|
|
110450
110528
|
};
|
|
@@ -173507,8 +173585,8 @@ var component = (0,componentNormalizer/* default */.A)(
|
|
|
173507
173585
|
/* harmony default export */ var FlowNav = (component.exports);
|
|
173508
173586
|
// EXTERNAL MODULE: ./packages/util/constant.js
|
|
173509
173587
|
var util_constant = __webpack_require__(299);
|
|
173510
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowNode/baseNode.vue?vue&type=template&id=
|
|
173511
|
-
var
|
|
173588
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowNode/baseNode.vue?vue&type=template&id=55b34434&scoped=true
|
|
173589
|
+
var baseNodevue_type_template_id_55b34434_scoped_true_render = function render() {
|
|
173512
173590
|
var _vm = this,
|
|
173513
173591
|
_c = _vm._self._c;
|
|
173514
173592
|
return _c('div', {
|
|
@@ -173717,13 +173795,32 @@ var baseNodevue_type_template_id_4086fdcf_scoped_true_render = function render()
|
|
|
173717
173795
|
"handleUserSelect": handleUserSelect
|
|
173718
173796
|
})];
|
|
173719
173797
|
}
|
|
173798
|
+
}, {
|
|
173799
|
+
key: "conditionComponent",
|
|
173800
|
+
fn: function ({
|
|
173801
|
+
value,
|
|
173802
|
+
selectItem,
|
|
173803
|
+
datas,
|
|
173804
|
+
type,
|
|
173805
|
+
field,
|
|
173806
|
+
showValue
|
|
173807
|
+
}) {
|
|
173808
|
+
return [_vm._t("conditionComponent", null, {
|
|
173809
|
+
"value": value,
|
|
173810
|
+
"selectItem": selectItem,
|
|
173811
|
+
"datas": datas,
|
|
173812
|
+
"type": type,
|
|
173813
|
+
"field": field,
|
|
173814
|
+
"showValue": showValue
|
|
173815
|
+
})];
|
|
173816
|
+
}
|
|
173720
173817
|
}], null, true)
|
|
173721
173818
|
}) : _vm._e()], 1);
|
|
173722
173819
|
};
|
|
173723
|
-
var
|
|
173820
|
+
var baseNodevue_type_template_id_55b34434_scoped_true_staticRenderFns = [];
|
|
173724
173821
|
|
|
173725
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Approver/index.vue?vue&type=template&id=
|
|
173726
|
-
var
|
|
173822
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Approver/index.vue?vue&type=template&id=69a89c58
|
|
173823
|
+
var Approvervue_type_template_id_69a89c58_render = function render() {
|
|
173727
173824
|
var _vm = this,
|
|
173728
173825
|
_c = _vm._self._c;
|
|
173729
173826
|
return _vm.node.approverGroups ? _c('a-drawer', {
|
|
@@ -173984,13 +174081,7 @@ var Approvervue_type_template_id_15804922_render = function render() {
|
|
|
173984
174081
|
"type": "question-circle"
|
|
173985
174082
|
}
|
|
173986
174083
|
})], 2) : _vm._e()], 1);
|
|
173987
|
-
}), 1)], 1), _c('
|
|
173988
|
-
staticClass: "flow-setting-item"
|
|
173989
|
-
}, [_c('p', {
|
|
173990
|
-
staticClass: "flow-setting-item-title"
|
|
173991
|
-
}, [_vm._v("提示:")]), _c('div', {
|
|
173992
|
-
staticClass: "hint-info"
|
|
173993
|
-
}, [_vm.node.type == 6 ? _c('p', [_vm._v("办理人不涉及审批人去重设置,不同节点相同的办理人仍需要执行。")]) : _vm._e(), _c('p', [_vm._v("若审批人离职,会自动转交给审批人的上级代为处理")]), _c('p', [_vm._v("抄送的人数最多支持100人以内")])])])], 2)]), _c('a-tab-pane', {
|
|
174084
|
+
}), 1)], 1)], 2)]), _c('a-tab-pane', {
|
|
173994
174085
|
key: "2",
|
|
173995
174086
|
attrs: {
|
|
173996
174087
|
"tab": "表单权限"
|
|
@@ -174033,7 +174124,7 @@ var Approvervue_type_template_id_15804922_render = function render() {
|
|
|
174033
174124
|
}
|
|
174034
174125
|
})], 2) : _vm._e();
|
|
174035
174126
|
};
|
|
174036
|
-
var
|
|
174127
|
+
var Approvervue_type_template_id_69a89c58_staticRenderFns = [];
|
|
174037
174128
|
|
|
174038
174129
|
// EXTERNAL MODULE: ./packages/mixins/flowDrawerMixin.js
|
|
174039
174130
|
var flowDrawerMixin = __webpack_require__(8787);
|
|
@@ -174066,6 +174157,8 @@ var DrawerFootervue_type_template_id_5348482a_render = function render() {
|
|
|
174066
174157
|
};
|
|
174067
174158
|
var DrawerFootervue_type_template_id_5348482a_staticRenderFns = [];
|
|
174068
174159
|
|
|
174160
|
+
// EXTERNAL MODULE: ./packages/util/deviceUtil.js
|
|
174161
|
+
var deviceUtil = __webpack_require__(4121);
|
|
174069
174162
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/DrawerFooter.vue?vue&type=script&lang=js
|
|
174070
174163
|
|
|
174071
174164
|
|
|
@@ -174115,9 +174208,9 @@ var DrawerFooter_component = (0,componentNormalizer/* default */.A)(
|
|
|
174115
174208
|
|
|
174116
174209
|
/* harmony default export */ var DrawerFooter = (DrawerFooter_component.exports);
|
|
174117
174210
|
// EXTERNAL MODULE: ./packages/Component/FlowSimpleSelect.vue + 3 modules
|
|
174118
|
-
var FlowSimpleSelect = __webpack_require__(
|
|
174119
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Approver/Approval.vue?vue&type=template&id=
|
|
174120
|
-
var
|
|
174211
|
+
var FlowSimpleSelect = __webpack_require__(9440);
|
|
174212
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Approver/Approval.vue?vue&type=template&id=70f0872c
|
|
174213
|
+
var Approvalvue_type_template_id_70f0872c_render = function render() {
|
|
174121
174214
|
var _vm = this,
|
|
174122
174215
|
_c = _vm._self._c;
|
|
174123
174216
|
return _c('a-space', {
|
|
@@ -174177,7 +174270,7 @@ var Approvalvue_type_template_id_70d99796_render = function render() {
|
|
|
174177
174270
|
return _vm.sortUpGroup('down', k);
|
|
174178
174271
|
}
|
|
174179
174272
|
}
|
|
174180
|
-
})], 2)], 1)], 1)], 1), _c('a-col', [
|
|
174273
|
+
})], 2)], 1)], 1)], 1), _c('a-col', [_vm.sortedGroups.length > 1 ? _c('a-icon', {
|
|
174181
174274
|
staticClass: "del-icon",
|
|
174182
174275
|
attrs: {
|
|
174183
174276
|
"type": "delete"
|
|
@@ -174883,20 +174976,22 @@ var Approvalvue_type_template_id_70d99796_render = function render() {
|
|
|
174883
174976
|
}
|
|
174884
174977
|
}, [_vm._v("添加" + _vm._s(_vm.title))]) : _vm._e()], 2);
|
|
174885
174978
|
};
|
|
174886
|
-
var
|
|
174979
|
+
var Approvalvue_type_template_id_70f0872c_staticRenderFns = [];
|
|
174887
174980
|
|
|
174888
174981
|
// EXTERNAL MODULE: ./packages/util/nodeUtil.js + 13 modules
|
|
174889
174982
|
var util_nodeUtil = __webpack_require__(6362);
|
|
174890
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSelect.vue?vue&type=template&id=
|
|
174891
|
-
var
|
|
174983
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSelect.vue?vue&type=template&id=21c3729b
|
|
174984
|
+
var FlowSelectvue_type_template_id_21c3729b_render = function render() {
|
|
174892
174985
|
var _vm = this,
|
|
174893
174986
|
_c = _vm._self._c;
|
|
174894
174987
|
return _c('a-select', {
|
|
174895
174988
|
staticClass: "w-fill",
|
|
174896
174989
|
attrs: {
|
|
174897
174990
|
"size": _vm.size,
|
|
174991
|
+
"filter-option": _vm.filterOption,
|
|
174898
174992
|
"show-search": "",
|
|
174899
174993
|
"mode": _vm.mode,
|
|
174994
|
+
"getPopupContainer": triggerNode => triggerNode.parentNode,
|
|
174900
174995
|
"allowClear": "",
|
|
174901
174996
|
"placeholder": _vm.placeholder
|
|
174902
174997
|
},
|
|
@@ -174911,12 +175006,12 @@ var FlowSelectvue_type_template_id_6f308b30_render = function render() {
|
|
|
174911
175006
|
expression: "currentValue"
|
|
174912
175007
|
}
|
|
174913
175008
|
}, [_vm._l(_vm.datas, function (data, i) {
|
|
174914
|
-
return [data
|
|
175009
|
+
return [_vm.dynamicChild(data)?.length > 0 ? _c('a-select-opt-group', {
|
|
174915
175010
|
key: 'group_' + data[_vm.labelName],
|
|
174916
175011
|
attrs: {
|
|
174917
175012
|
"label": data[_vm.labelName]
|
|
174918
175013
|
}
|
|
174919
|
-
}, _vm._l(data
|
|
175014
|
+
}, _vm._l(_vm.dynamicChild(data), function (childData, j) {
|
|
174920
175015
|
return _c('a-select-option', {
|
|
174921
175016
|
key: childData[_vm.labelName] + j,
|
|
174922
175017
|
attrs: {
|
|
@@ -174933,7 +175028,7 @@ var FlowSelectvue_type_template_id_6f308b30_render = function render() {
|
|
|
174933
175028
|
}, [_vm._v(" " + _vm._s(data[_vm.labelName]) + " ")])];
|
|
174934
175029
|
})], 2);
|
|
174935
175030
|
};
|
|
174936
|
-
var
|
|
175031
|
+
var FlowSelectvue_type_template_id_21c3729b_staticRenderFns = [];
|
|
174937
175032
|
|
|
174938
175033
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSelect.vue?vue&type=script&lang=js
|
|
174939
175034
|
/* harmony default export */ var FlowSelectvue_type_script_lang_js = ({
|
|
@@ -174989,6 +175084,9 @@ var FlowSelectvue_type_template_id_6f308b30_staticRenderFns = [];
|
|
|
174989
175084
|
this.initData(this.value);
|
|
174990
175085
|
},
|
|
174991
175086
|
methods: {
|
|
175087
|
+
dynamicChild(item) {
|
|
175088
|
+
return item?.children || item?.child;
|
|
175089
|
+
},
|
|
174992
175090
|
initData(value) {
|
|
174993
175091
|
if (value && value.length > 0 && this.mode == 'default') {
|
|
174994
175092
|
this.currentValue = value[0];
|
|
@@ -175001,10 +175099,22 @@ var FlowSelectvue_type_template_id_6f308b30_staticRenderFns = [];
|
|
|
175001
175099
|
onChange(value, option) {
|
|
175002
175100
|
this.$emit('input', this.mode == 'multiple' ? value : [value]);
|
|
175003
175101
|
let datas = this.datas.map(item => {
|
|
175004
|
-
return Array.isArray(item
|
|
175102
|
+
return Array.isArray(this.dynamicChild(item)) ? this.dynamicChild(item) : item;
|
|
175005
175103
|
}).flat().filter(data => this.mode == 'multiple' ? value.includes(data[this.valueName]) : data[this.valueName] == value).map(data => data[this.labelName]);
|
|
175006
|
-
this.$emit('update:name', this.mode == 'multiple' ? datas : datas[0]);
|
|
175104
|
+
this.$emit('update:name', this.mode == 'multiple' ? datas.join(', ') : datas[0]);
|
|
175007
175105
|
this.$emit('change', value, datas.filter(data => data[this.valueName] == value));
|
|
175106
|
+
},
|
|
175107
|
+
filterOption(input, option) {
|
|
175108
|
+
let optionText = option.componentOptions.children[0]?.text ?? '';
|
|
175109
|
+
// 如果当前节点是分组(a-select-optgroup)
|
|
175110
|
+
if (option.data && option.data.attrs && option.data.attrs.role === 'optgroup') {
|
|
175111
|
+
// 确保当前是具体的选项节点,再进行文本匹配
|
|
175112
|
+
// 这里使用 option.componentOptions.children[0].text 获取选项的显示文本
|
|
175113
|
+
optionText = option.componentOptions && option.componentOptions.children && option.componentOptions.children.length > 0 ? option.componentOptions.children[0].text : '';
|
|
175114
|
+
}
|
|
175115
|
+
|
|
175116
|
+
// 进行大小写不敏感的模糊匹配
|
|
175117
|
+
return optionText.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
175008
175118
|
}
|
|
175009
175119
|
}
|
|
175010
175120
|
});
|
|
@@ -175020,8 +175130,8 @@ var FlowSelectvue_type_template_id_6f308b30_staticRenderFns = [];
|
|
|
175020
175130
|
;
|
|
175021
175131
|
var FlowSelect_component = (0,componentNormalizer/* default */.A)(
|
|
175022
175132
|
Component_FlowSelectvue_type_script_lang_js,
|
|
175023
|
-
|
|
175024
|
-
|
|
175133
|
+
FlowSelectvue_type_template_id_21c3729b_render,
|
|
175134
|
+
FlowSelectvue_type_template_id_21c3729b_staticRenderFns,
|
|
175025
175135
|
false,
|
|
175026
175136
|
null,
|
|
175027
175137
|
null,
|
|
@@ -175448,34 +175558,34 @@ var FlowInput_component = (0,componentNormalizer/* default */.A)(
|
|
|
175448
175558
|
}],
|
|
175449
175559
|
// 上级层级
|
|
175450
175560
|
higherLevels: this.$store.state.flow.nodeConfigs?.superiorLevels ?? [],
|
|
175451
|
-
//
|
|
175561
|
+
// 组织负责人方式
|
|
175452
175562
|
departmentHeadModes: [{
|
|
175453
|
-
name: '
|
|
175563
|
+
name: '自下而上(以发起人的直接组织负责人为第一级)',
|
|
175454
175564
|
value: 1,
|
|
175455
175565
|
popovers: [{
|
|
175456
|
-
title: '
|
|
175457
|
-
content: '
|
|
175566
|
+
title: '什么是组织负责人 - 自下而上?',
|
|
175567
|
+
content: '以发起人的直接组织负责人为第一级,向更高管理层级递增'
|
|
175458
175568
|
}, {
|
|
175459
|
-
content: '
|
|
175569
|
+
content: '图示:若小王为发起人,则小张是小王的“直接组织负责人”,小李是小王的“第二级组织负责人”'
|
|
175460
175570
|
}]
|
|
175461
175571
|
}, {
|
|
175462
|
-
name: '
|
|
175572
|
+
name: '自下而上(以上一个节点的审批人的直接组织负责人为第一级)',
|
|
175463
175573
|
value: 2,
|
|
175464
175574
|
popovers: [{
|
|
175465
|
-
title: '
|
|
175466
|
-
content: '
|
|
175575
|
+
title: '什么是组织负责人 - 自下而上?',
|
|
175576
|
+
content: '以上一个节点的审批人的直接组织负责人为第一级,向更高管理层级递增'
|
|
175467
175577
|
}, {
|
|
175468
|
-
content: '
|
|
175578
|
+
content: '图示:若小王为上一个节点的审批人,则小张是小王的“直接组织负责人”,小李是小王的“第二级组织负责人”'
|
|
175469
175579
|
}]
|
|
175470
175580
|
}, {
|
|
175471
|
-
name: '
|
|
175581
|
+
name: '自上而下(以公司的最高组织负责人为第一级)',
|
|
175472
175582
|
code: 'higherLevel',
|
|
175473
175583
|
value: 3,
|
|
175474
175584
|
popovers: [{
|
|
175475
|
-
title: '
|
|
175476
|
-
content: '
|
|
175585
|
+
title: '什么是组织负责人 - 自上而下?',
|
|
175586
|
+
content: '以公司组织架构中的最高组织负责人为第一级,向更低管理层级递增'
|
|
175477
175587
|
}, {
|
|
175478
|
-
content: '
|
|
175588
|
+
content: '图示:若小王为发起人,则小赵是小王的“最高组织负责人”,小周是小王的“第二级组织负责人”'
|
|
175479
175589
|
}]
|
|
175480
175590
|
}],
|
|
175481
175591
|
// 部门负责人层级
|
|
@@ -175653,8 +175763,8 @@ var FlowInput_component = (0,componentNormalizer/* default */.A)(
|
|
|
175653
175763
|
;
|
|
175654
175764
|
var Approval_component = (0,componentNormalizer/* default */.A)(
|
|
175655
175765
|
Approver_Approvalvue_type_script_lang_js,
|
|
175656
|
-
|
|
175657
|
-
|
|
175766
|
+
Approvalvue_type_template_id_70f0872c_render,
|
|
175767
|
+
Approvalvue_type_template_id_70f0872c_staticRenderFns,
|
|
175658
175768
|
false,
|
|
175659
175769
|
null,
|
|
175660
175770
|
null,
|
|
@@ -176053,8 +176163,8 @@ var EditName_component = (0,componentNormalizer/* default */.A)(
|
|
|
176053
176163
|
)
|
|
176054
176164
|
|
|
176055
176165
|
/* harmony default export */ var EditName = (EditName_component.exports);
|
|
176056
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/AuthForm.vue?vue&type=template&id=
|
|
176057
|
-
var
|
|
176166
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/AuthForm.vue?vue&type=template&id=2f522221
|
|
176167
|
+
var AuthFormvue_type_template_id_2f522221_render = function render() {
|
|
176058
176168
|
var _vm = this,
|
|
176059
176169
|
_c = _vm._self._c;
|
|
176060
176170
|
return _c('div', {
|
|
@@ -176102,7 +176212,7 @@ var AuthFormvue_type_template_id_040acf86_render = function render() {
|
|
|
176102
176212
|
"checked": _vm.hidableChecked
|
|
176103
176213
|
},
|
|
176104
176214
|
on: {
|
|
176105
|
-
"change": _vm.
|
|
176215
|
+
"change": _vm.onAllHidableChange
|
|
176106
176216
|
}
|
|
176107
176217
|
}, [_vm._v(" 隐藏 ")])], 1), _vm.readable ? _c('div', {
|
|
176108
176218
|
class: {
|
|
@@ -176192,7 +176302,7 @@ var AuthFormvue_type_template_id_040acf86_render = function render() {
|
|
|
176192
176302
|
}, [_vm._v(" 必填 ")])], 1) : _vm._e()])]);
|
|
176193
176303
|
}), 0)]);
|
|
176194
176304
|
};
|
|
176195
|
-
var
|
|
176305
|
+
var AuthFormvue_type_template_id_2f522221_staticRenderFns = [];
|
|
176196
176306
|
|
|
176197
176307
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/AuthForm.vue?vue&type=script&lang=js
|
|
176198
176308
|
|
|
@@ -176219,7 +176329,7 @@ var AuthFormvue_type_template_id_040acf86_staticRenderFns = [];
|
|
|
176219
176329
|
},
|
|
176220
176330
|
data() {
|
|
176221
176331
|
return {
|
|
176222
|
-
fields: this.value
|
|
176332
|
+
fields: this.value.filter(item => item?.form_name)
|
|
176223
176333
|
};
|
|
176224
176334
|
},
|
|
176225
176335
|
computed: {
|
|
@@ -176268,7 +176378,7 @@ var AuthFormvue_type_template_id_040acf86_staticRenderFns = [];
|
|
|
176268
176378
|
* 全选隐藏
|
|
176269
176379
|
* @param {*} e
|
|
176270
176380
|
*/
|
|
176271
|
-
|
|
176381
|
+
onAllHidableChange(e) {
|
|
176272
176382
|
this.fields.forEach((item, i) => {
|
|
176273
176383
|
this.hidableChange(e, item, i);
|
|
176274
176384
|
});
|
|
@@ -176360,8 +176470,8 @@ var AuthFormvue_type_template_id_040acf86_staticRenderFns = [];
|
|
|
176360
176470
|
;
|
|
176361
176471
|
var AuthForm_component = (0,componentNormalizer/* default */.A)(
|
|
176362
176472
|
Common_AuthFormvue_type_script_lang_js,
|
|
176363
|
-
|
|
176364
|
-
|
|
176473
|
+
AuthFormvue_type_template_id_2f522221_render,
|
|
176474
|
+
AuthFormvue_type_template_id_2f522221_staticRenderFns,
|
|
176365
176475
|
false,
|
|
176366
176476
|
null,
|
|
176367
176477
|
null,
|
|
@@ -176575,8 +176685,8 @@ var AuthForm_component = (0,componentNormalizer/* default */.A)(
|
|
|
176575
176685
|
;
|
|
176576
176686
|
var Approver_component = (0,componentNormalizer/* default */.A)(
|
|
176577
176687
|
FlowDrawer_Approvervue_type_script_lang_js,
|
|
176578
|
-
|
|
176579
|
-
|
|
176688
|
+
Approvervue_type_template_id_69a89c58_render,
|
|
176689
|
+
Approvervue_type_template_id_69a89c58_staticRenderFns,
|
|
176580
176690
|
false,
|
|
176581
176691
|
null,
|
|
176582
176692
|
null,
|
|
@@ -176585,13 +176695,13 @@ var Approver_component = (0,componentNormalizer/* default */.A)(
|
|
|
176585
176695
|
)
|
|
176586
176696
|
|
|
176587
176697
|
/* harmony default export */ var Approver = (Approver_component.exports);
|
|
176588
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Condition/index.vue?vue&type=template&id=
|
|
176589
|
-
var
|
|
176698
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Condition/index.vue?vue&type=template&id=559606a9
|
|
176699
|
+
var Conditionvue_type_template_id_559606a9_render = function render() {
|
|
176590
176700
|
var _vm = this,
|
|
176591
176701
|
_c = _vm._self._c;
|
|
176592
176702
|
return _vm.node.attr ? _c('a-drawer', {
|
|
176593
176703
|
attrs: {
|
|
176594
|
-
"width": _vm.drawerWidth(),
|
|
176704
|
+
"width": _vm.drawerWidth('45vw'),
|
|
176595
176705
|
"headerStyle": _vm.headerStyle,
|
|
176596
176706
|
"bodyStyle": _vm.bodyStyle,
|
|
176597
176707
|
"placement": "right",
|
|
@@ -176695,7 +176805,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176695
176805
|
"update:name": function ($event) {
|
|
176696
176806
|
return _vm.$set(condition, "columnName", $event);
|
|
176697
176807
|
},
|
|
176698
|
-
"change": _vm.handleColumnFieldChange
|
|
176808
|
+
"change": (value, option) => _vm.handleColumnFieldChange(value, option, group, condition)
|
|
176699
176809
|
},
|
|
176700
176810
|
model: {
|
|
176701
176811
|
value: condition.columnValue,
|
|
@@ -176749,10 +176859,32 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176749
176859
|
}
|
|
176750
176860
|
}), _c('div', {
|
|
176751
176861
|
staticClass: "flow-setting-condition-value"
|
|
176752
|
-
}, [condition.valueType == 2 ? _c(
|
|
176862
|
+
}, [condition.valueType == 2 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _c(_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.renderObject, {
|
|
176863
|
+
tag: "component",
|
|
176864
|
+
attrs: {
|
|
176865
|
+
"name": condition.conditionValueName,
|
|
176866
|
+
"datas": condition.conditionValueDatas
|
|
176867
|
+
},
|
|
176868
|
+
on: {
|
|
176869
|
+
"update:name": function ($event) {
|
|
176870
|
+
return _vm.$set(condition, "conditionValueName", $event);
|
|
176871
|
+
},
|
|
176872
|
+
"update:datas": function ($event) {
|
|
176873
|
+
return _vm.$set(condition, "conditionValueDatas", $event);
|
|
176874
|
+
}
|
|
176875
|
+
},
|
|
176876
|
+
model: {
|
|
176877
|
+
value: condition.conditionValue,
|
|
176878
|
+
callback: function ($$v) {
|
|
176879
|
+
_vm.$set(condition, "conditionValue", $$v);
|
|
176880
|
+
},
|
|
176881
|
+
expression: "condition.conditionValue"
|
|
176882
|
+
}
|
|
176883
|
+
}) : _c('FlowSelect', {
|
|
176753
176884
|
attrs: {
|
|
176754
176885
|
"name": condition.conditionValueName,
|
|
176755
176886
|
"datas": _vm.optionValueTypes,
|
|
176887
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
176756
176888
|
"labelName": "label"
|
|
176757
176889
|
},
|
|
176758
176890
|
on: {
|
|
@@ -176767,7 +176899,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176767
176899
|
},
|
|
176768
176900
|
expression: "condition.conditionValue"
|
|
176769
176901
|
}
|
|
176770
|
-
}) : condition.valueType == 3 ? _c('FlowSelect', {
|
|
176902
|
+
})] : condition.valueType == 3 ? _c('FlowSelect', {
|
|
176771
176903
|
attrs: {
|
|
176772
176904
|
"name": condition.conditionValueName,
|
|
176773
176905
|
"datas": _vm.flowValueTypes,
|
|
@@ -176785,10 +176917,32 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176785
176917
|
},
|
|
176786
176918
|
expression: "condition.conditionValue"
|
|
176787
176919
|
}
|
|
176788
|
-
}) : condition.valueType == 4 ? _c(
|
|
176920
|
+
}) : condition.valueType == 4 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _c(_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.renderObject, {
|
|
176921
|
+
tag: "component",
|
|
176922
|
+
attrs: {
|
|
176923
|
+
"name": condition.conditionValueName,
|
|
176924
|
+
"datas": condition.conditionValueDatas
|
|
176925
|
+
},
|
|
176926
|
+
on: {
|
|
176927
|
+
"update:name": function ($event) {
|
|
176928
|
+
return _vm.$set(condition, "conditionValueName", $event);
|
|
176929
|
+
},
|
|
176930
|
+
"update:datas": function ($event) {
|
|
176931
|
+
return _vm.$set(condition, "conditionValueDatas", $event);
|
|
176932
|
+
}
|
|
176933
|
+
},
|
|
176934
|
+
model: {
|
|
176935
|
+
value: condition.conditionValue,
|
|
176936
|
+
callback: function ($$v) {
|
|
176937
|
+
_vm.$set(condition, "conditionValue", $$v);
|
|
176938
|
+
},
|
|
176939
|
+
expression: "condition.conditionValue"
|
|
176940
|
+
}
|
|
176941
|
+
}) : _c('FlowSelect', {
|
|
176789
176942
|
attrs: {
|
|
176790
176943
|
"name": condition.conditionValueName,
|
|
176791
176944
|
"datas": _vm.dataSourceOptions,
|
|
176945
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
176792
176946
|
"labelName": "label"
|
|
176793
176947
|
},
|
|
176794
176948
|
on: {
|
|
@@ -176803,7 +176957,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176803
176957
|
},
|
|
176804
176958
|
expression: "condition.conditionValue"
|
|
176805
176959
|
}
|
|
176806
|
-
}) : _c('FlowInput', {
|
|
176960
|
+
})] : _c('FlowInput', {
|
|
176807
176961
|
attrs: {
|
|
176808
176962
|
"name": condition.conditionValueName,
|
|
176809
176963
|
"size": _vm.size
|
|
@@ -176820,7 +176974,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176820
176974
|
},
|
|
176821
176975
|
expression: "condition.conditionValue"
|
|
176822
176976
|
}
|
|
176823
|
-
})],
|
|
176977
|
+
})], 2)], 1), _c('div', {
|
|
176824
176978
|
staticClass: "flow-setting-condition-del",
|
|
176825
176979
|
on: {
|
|
176826
176980
|
"click": function ($event) {
|
|
@@ -176964,7 +177118,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176964
177118
|
}
|
|
176965
177119
|
})], 2) : _vm._e();
|
|
176966
177120
|
};
|
|
176967
|
-
var
|
|
177121
|
+
var Conditionvue_type_template_id_559606a9_staticRenderFns = [];
|
|
176968
177122
|
|
|
176969
177123
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Condition/index.vue?vue&type=script&lang=js
|
|
176970
177124
|
|
|
@@ -177046,6 +177200,12 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177046
177200
|
}, {
|
|
177047
177201
|
label: '小于等于',
|
|
177048
177202
|
value: 'lte'
|
|
177203
|
+
}, {
|
|
177204
|
+
label: '包含(属于)',
|
|
177205
|
+
value: 'contains'
|
|
177206
|
+
}, {
|
|
177207
|
+
label: '不包含(不属于)',
|
|
177208
|
+
value: 'not_contains'
|
|
177049
177209
|
}
|
|
177050
177210
|
/* { label: '为空', value: '7' },
|
|
177051
177211
|
{ label: '不为空', value: '8' }, */],
|
|
@@ -177111,19 +177271,25 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177111
177271
|
};
|
|
177112
177272
|
},
|
|
177113
177273
|
computed: {
|
|
177274
|
+
commonConditionFields() {
|
|
177275
|
+
return this.$store.state.flow.nodeConfigs.conditionFieldList;
|
|
177276
|
+
},
|
|
177114
177277
|
fieldList() {
|
|
177115
|
-
|
|
177116
|
-
let
|
|
177278
|
+
/* 条件 表单字段 */
|
|
177279
|
+
let list = this.commonConditionFields;
|
|
177280
|
+
let formFields = (this.node?.privileges ?? []).filter(p => p?.condition_name);
|
|
177281
|
+
let formFieldList = [];
|
|
177117
177282
|
if (formFields.length > 0) {
|
|
177118
|
-
|
|
177283
|
+
formFieldList.push({
|
|
177119
177284
|
label: '表单字段',
|
|
177120
177285
|
children: formFields.map(item => ({
|
|
177121
|
-
|
|
177122
|
-
|
|
177286
|
+
...item,
|
|
177287
|
+
label: item?.form_name ?? item?.label,
|
|
177288
|
+
value: item.condition_name
|
|
177123
177289
|
}))
|
|
177124
177290
|
});
|
|
177125
177291
|
}
|
|
177126
|
-
return list;
|
|
177292
|
+
return [...list, ...formFieldList];
|
|
177127
177293
|
}
|
|
177128
177294
|
},
|
|
177129
177295
|
methods: {
|
|
@@ -177145,21 +177311,15 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177145
177311
|
this.visible = false;
|
|
177146
177312
|
this.$emit('close');
|
|
177147
177313
|
},
|
|
177148
|
-
handleColumnFieldChange(value, option) {
|
|
177314
|
+
handleColumnFieldChange(value, option, index) {
|
|
177149
177315
|
console.warn('handleColumnFieldChange(value,option)=>', value, option);
|
|
177150
177316
|
this.dataSourceOptions.splice(0, this.dataSourceOptions.length);
|
|
177151
177317
|
this.$nextTick(() => {
|
|
177152
|
-
this.
|
|
177153
|
-
|
|
177154
|
-
|
|
177155
|
-
|
|
177156
|
-
|
|
177157
|
-
'label': item?.label || item.name,
|
|
177158
|
-
'value': item?.value || item.id
|
|
177159
|
-
};
|
|
177160
|
-
})
|
|
177161
|
-
};
|
|
177162
|
-
}));
|
|
177318
|
+
// this.$set(this.node.groupConditions[group])
|
|
177319
|
+
condition.conditionValue = undefined;
|
|
177320
|
+
condition.conditionValueName = undefined;
|
|
177321
|
+
const optionList = Array.isArray(option?.dataSource) ? option.dataSource : this.$store.state.flow.nodeConfigs[option.dataSource];
|
|
177322
|
+
this.dataSourceOptions.splice(0, this.dataSourceOptions.length, ...optionList);
|
|
177163
177323
|
});
|
|
177164
177324
|
},
|
|
177165
177325
|
addGroup(type) {
|
|
@@ -177177,7 +177337,8 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177177
177337
|
optTypeName: undefined,
|
|
177178
177338
|
valueType: undefined,
|
|
177179
177339
|
conditionValue: [],
|
|
177180
|
-
conditionValueName: []
|
|
177340
|
+
conditionValueName: [],
|
|
177341
|
+
conditionValueDatas: []
|
|
177181
177342
|
}]
|
|
177182
177343
|
});
|
|
177183
177344
|
// }
|
|
@@ -177196,7 +177357,8 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177196
177357
|
optTypeName: undefined,
|
|
177197
177358
|
valueType: undefined,
|
|
177198
177359
|
conditionValue: [],
|
|
177199
|
-
conditionValueName: []
|
|
177360
|
+
conditionValueName: [],
|
|
177361
|
+
conditionValueDatas: []
|
|
177200
177362
|
});
|
|
177201
177363
|
}
|
|
177202
177364
|
});
|
|
@@ -177315,8 +177477,8 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177315
177477
|
;
|
|
177316
177478
|
var Condition_component = (0,componentNormalizer/* default */.A)(
|
|
177317
177479
|
FlowDrawer_Conditionvue_type_script_lang_js,
|
|
177318
|
-
|
|
177319
|
-
|
|
177480
|
+
Conditionvue_type_template_id_559606a9_render,
|
|
177481
|
+
Conditionvue_type_template_id_559606a9_staticRenderFns,
|
|
177320
177482
|
false,
|
|
177321
177483
|
null,
|
|
177322
177484
|
null,
|
|
@@ -178652,13 +178814,13 @@ var Notice_component = (0,componentNormalizer/* default */.A)(
|
|
|
178652
178814
|
)
|
|
178653
178815
|
|
|
178654
178816
|
/* harmony default export */ var FlowDrawer_Notice = (Notice_component.exports);
|
|
178655
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Branch/index.vue?vue&type=template&id=
|
|
178656
|
-
var
|
|
178817
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Branch/index.vue?vue&type=template&id=2668f886
|
|
178818
|
+
var Branchvue_type_template_id_2668f886_render = function render() {
|
|
178657
178819
|
var _vm = this,
|
|
178658
178820
|
_c = _vm._self._c;
|
|
178659
178821
|
return _vm.node.attr ? _c('a-drawer', {
|
|
178660
178822
|
attrs: {
|
|
178661
|
-
"width": _vm.drawerWidth(),
|
|
178823
|
+
"width": _vm.drawerWidth('45vw'),
|
|
178662
178824
|
"headerStyle": _vm.headerStyle,
|
|
178663
178825
|
"bodyStyle": _vm.bodyStyle,
|
|
178664
178826
|
"placement": "right",
|
|
@@ -178735,7 +178897,13 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178735
178897
|
"value": branchType.value
|
|
178736
178898
|
}
|
|
178737
178899
|
}, [_vm._v(" " + _vm._s(branchType.label) + " ")]);
|
|
178738
|
-
}), 1)], 1), _vm.node.attr.branchType ==
|
|
178900
|
+
}), 1)], 1), _vm.node.attr.branchType == 3 ? [_c('div', {
|
|
178901
|
+
staticClass: "flow-setting-item"
|
|
178902
|
+
}, [_c('p', {
|
|
178903
|
+
staticClass: "flow-setting-item-title"
|
|
178904
|
+
}, [_vm._v("默认条件")]), _c('div', {
|
|
178905
|
+
staticClass: "flow-setting-condition-box"
|
|
178906
|
+
}, [_vm._v("表示该条件永远为真,一般是优先级排最后的条件")])])] : [_vm.node.attr.branchType == 1 ? _c('div', {
|
|
178739
178907
|
staticClass: "flow-setting-item"
|
|
178740
178908
|
}, [_c('p', {
|
|
178741
178909
|
staticClass: "flow-setting-item-title"
|
|
@@ -178765,7 +178933,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178765
178933
|
"update:name": function ($event) {
|
|
178766
178934
|
return _vm.$set(condition, "columnName", $event);
|
|
178767
178935
|
},
|
|
178768
|
-
"change": _vm.handleColumnFieldChange
|
|
178936
|
+
"change": (value, option) => _vm.handleColumnFieldChange(value, option, group, condition)
|
|
178769
178937
|
},
|
|
178770
178938
|
model: {
|
|
178771
178939
|
value: condition.columnValue,
|
|
@@ -178819,10 +178987,18 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178819
178987
|
}
|
|
178820
178988
|
}), _c('div', {
|
|
178821
178989
|
staticClass: "flow-setting-condition-value"
|
|
178822
|
-
}, [condition.valueType == 2 ?
|
|
178990
|
+
}, [condition.valueType == 2 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _vm._t("conditionComponent", null, {
|
|
178991
|
+
"value": condition.conditionValue,
|
|
178992
|
+
"selectItem": (value, name, datas) => _vm.conditionComponentSelect(value, name, datas, condition),
|
|
178993
|
+
"datas": condition.conditionValueDatas,
|
|
178994
|
+
"showValue": condition.conditionValueName,
|
|
178995
|
+
"field": _vm.flattenFieldList.find(item => item.value === condition.columnValue),
|
|
178996
|
+
"type": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component
|
|
178997
|
+
}) : _c('FlowSelect', {
|
|
178823
178998
|
attrs: {
|
|
178824
178999
|
"name": condition.conditionValueName,
|
|
178825
179000
|
"datas": _vm.optionValueTypes,
|
|
179001
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
178826
179002
|
"labelName": "label"
|
|
178827
179003
|
},
|
|
178828
179004
|
on: {
|
|
@@ -178837,7 +179013,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178837
179013
|
},
|
|
178838
179014
|
expression: "condition.conditionValue"
|
|
178839
179015
|
}
|
|
178840
|
-
}) : condition.valueType == 3 ? _c('FlowSelect', {
|
|
179016
|
+
})] : condition.valueType == 3 ? _c('FlowSelect', {
|
|
178841
179017
|
attrs: {
|
|
178842
179018
|
"name": condition.conditionValueName,
|
|
178843
179019
|
"datas": _vm.flowValueTypes,
|
|
@@ -178855,10 +179031,18 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178855
179031
|
},
|
|
178856
179032
|
expression: "condition.conditionValue"
|
|
178857
179033
|
}
|
|
178858
|
-
}) : condition.valueType == 4 ?
|
|
179034
|
+
}) : condition.valueType == 4 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _vm._t("conditionComponent", null, {
|
|
179035
|
+
"value": condition.conditionValue,
|
|
179036
|
+
"selectItem": (value, name, datas) => _vm.conditionComponentSelect(value, name, datas, condition),
|
|
179037
|
+
"datas": condition.conditionValueDatas,
|
|
179038
|
+
"showValue": condition.conditionValueName,
|
|
179039
|
+
"field": _vm.flattenFieldList.find(item => item.value === condition.columnValue),
|
|
179040
|
+
"type": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component
|
|
179041
|
+
}) : _c('FlowSelect', {
|
|
178859
179042
|
attrs: {
|
|
178860
179043
|
"name": condition.conditionValueName,
|
|
178861
179044
|
"datas": _vm.dataSourceOptions,
|
|
179045
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
178862
179046
|
"labelName": "label"
|
|
178863
179047
|
},
|
|
178864
179048
|
on: {
|
|
@@ -178873,7 +179057,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178873
179057
|
},
|
|
178874
179058
|
expression: "condition.conditionValue"
|
|
178875
179059
|
}
|
|
178876
|
-
}) : _c('FlowInput', {
|
|
179060
|
+
})] : _c('FlowInput', {
|
|
178877
179061
|
attrs: {
|
|
178878
179062
|
"name": condition.conditionValueName,
|
|
178879
179063
|
"size": _vm.size
|
|
@@ -178890,7 +179074,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178890
179074
|
},
|
|
178891
179075
|
expression: "condition.conditionValue"
|
|
178892
179076
|
}
|
|
178893
|
-
})],
|
|
179077
|
+
})], 2)], 1), _c('div', {
|
|
178894
179078
|
staticClass: "flow-setting-condition-del",
|
|
178895
179079
|
on: {
|
|
178896
179080
|
"click": function ($event) {
|
|
@@ -179020,7 +179204,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
179020
179204
|
staticStyle: {
|
|
179021
179205
|
"margin-left": "5px"
|
|
179022
179206
|
}
|
|
179023
|
-
}, [_vm._v("或条件")])], 1)], 2)])])]), _c('PreCodeShow', {
|
|
179207
|
+
}, [_vm._v("或条件")])], 1)], 2)])]], 2)]), _c('PreCodeShow', {
|
|
179024
179208
|
staticStyle: {
|
|
179025
179209
|
"display": "none"
|
|
179026
179210
|
},
|
|
@@ -179034,7 +179218,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
179034
179218
|
}
|
|
179035
179219
|
})], 2) : _vm._e();
|
|
179036
179220
|
};
|
|
179037
|
-
var
|
|
179221
|
+
var Branchvue_type_template_id_2668f886_staticRenderFns = [];
|
|
179038
179222
|
|
|
179039
179223
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-84.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Branch/index.vue?vue&type=script&lang=js
|
|
179040
179224
|
|
|
@@ -179071,9 +179255,10 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179071
179255
|
}, {
|
|
179072
179256
|
label: '公式',
|
|
179073
179257
|
value: 2
|
|
179074
|
-
}
|
|
179075
|
-
|
|
179076
|
-
|
|
179258
|
+
}, {
|
|
179259
|
+
label: '默认条件',
|
|
179260
|
+
value: 3
|
|
179261
|
+
}],
|
|
179077
179262
|
optTypes: [{
|
|
179078
179263
|
label: '等于',
|
|
179079
179264
|
value: 'eq'
|
|
@@ -179092,6 +179277,12 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179092
179277
|
}, {
|
|
179093
179278
|
label: '小于等于',
|
|
179094
179279
|
value: 'le'
|
|
179280
|
+
}, {
|
|
179281
|
+
label: '包含(属于)',
|
|
179282
|
+
value: 'contains'
|
|
179283
|
+
}, {
|
|
179284
|
+
label: '不包含(不属于)',
|
|
179285
|
+
value: 'not_contains'
|
|
179095
179286
|
}
|
|
179096
179287
|
/* { label: '为空', value: '7' },
|
|
179097
179288
|
{ label: '不为空', value: '8' }, */],
|
|
@@ -179213,15 +179404,26 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179213
179404
|
formFieldList.push({
|
|
179214
179405
|
label: '表单字段',
|
|
179215
179406
|
children: formFields.map(item => ({
|
|
179216
|
-
|
|
179407
|
+
...item,
|
|
179408
|
+
label: item?.form_name ?? item?.label,
|
|
179217
179409
|
value: item.condition_name
|
|
179218
179410
|
}))
|
|
179219
179411
|
});
|
|
179220
179412
|
}
|
|
179221
179413
|
return [...list, ...formFieldList];
|
|
179414
|
+
},
|
|
179415
|
+
flattenFieldList() {
|
|
179416
|
+
return this.fieldList.reduce((acc, curr) => {
|
|
179417
|
+
return acc.concat(curr?.children || curr);
|
|
179418
|
+
}, []);
|
|
179222
179419
|
}
|
|
179223
179420
|
},
|
|
179224
179421
|
methods: {
|
|
179422
|
+
conditionComponentSelect(value, name, datas, condition) {
|
|
179423
|
+
condition.conditionValue = value;
|
|
179424
|
+
condition.conditionValueName = name;
|
|
179425
|
+
condition.conditionValueDatas = datas;
|
|
179426
|
+
},
|
|
179225
179427
|
levelOptionChange(val) {
|
|
179226
179428
|
const findLevelOption = this.levelOptions.find(item => item.value.toString() === val.toString());
|
|
179227
179429
|
this.node.attr.priorityLevelName = findLevelOption?.label ?? findLevelOption?.name;
|
|
@@ -179262,21 +179464,15 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179262
179464
|
this.visible = false;
|
|
179263
179465
|
this.$emit('close');
|
|
179264
179466
|
},
|
|
179265
|
-
handleColumnFieldChange(value, option) {
|
|
179467
|
+
handleColumnFieldChange(value, option, group, condition) {
|
|
179266
179468
|
console.warn('handleColumnFieldChange(value,option)=>', value, option);
|
|
179267
179469
|
this.dataSourceOptions.splice(0, this.dataSourceOptions.length);
|
|
179268
179470
|
this.$nextTick(() => {
|
|
179269
|
-
this.
|
|
179270
|
-
|
|
179271
|
-
|
|
179272
|
-
|
|
179273
|
-
|
|
179274
|
-
'label': item?.label || item.name,
|
|
179275
|
-
'value': item?.value || item.id
|
|
179276
|
-
};
|
|
179277
|
-
})
|
|
179278
|
-
};
|
|
179279
|
-
}));
|
|
179471
|
+
// this.$set(this.node.groupConditions[group])
|
|
179472
|
+
condition.conditionValue = undefined;
|
|
179473
|
+
condition.conditionValueName = undefined;
|
|
179474
|
+
const optionList = Array.isArray(option?.dataSource) ? option.dataSource : this.$store.state.flow.nodeConfigs[option.dataSource];
|
|
179475
|
+
this.dataSourceOptions.splice(0, this.dataSourceOptions.length, ...(optionList || []));
|
|
179280
179476
|
});
|
|
179281
179477
|
},
|
|
179282
179478
|
addGroup(type) {
|
|
@@ -179294,7 +179490,8 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179294
179490
|
optTypeName: undefined,
|
|
179295
179491
|
valueType: undefined,
|
|
179296
179492
|
conditionValue: [],
|
|
179297
|
-
conditionValueName: []
|
|
179493
|
+
conditionValueName: [],
|
|
179494
|
+
conditionValueDatas: []
|
|
179298
179495
|
}]
|
|
179299
179496
|
});
|
|
179300
179497
|
// }
|
|
@@ -179313,7 +179510,8 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179313
179510
|
optTypeName: undefined,
|
|
179314
179511
|
valueType: undefined,
|
|
179315
179512
|
conditionValue: [],
|
|
179316
|
-
conditionValueName: []
|
|
179513
|
+
conditionValueName: [],
|
|
179514
|
+
conditionValueDatas: []
|
|
179317
179515
|
});
|
|
179318
179516
|
}
|
|
179319
179517
|
});
|
|
@@ -179371,23 +179569,28 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179371
179569
|
}
|
|
179372
179570
|
});
|
|
179373
179571
|
} else {
|
|
179374
|
-
this.node.
|
|
179375
|
-
|
|
179376
|
-
|
|
179377
|
-
|
|
179378
|
-
|
|
179379
|
-
group.conditions.
|
|
179380
|
-
|
|
179381
|
-
|
|
179382
|
-
if (i != 0) {
|
|
179383
|
-
content += ' 且 ';
|
|
179384
|
-
}
|
|
179385
|
-
content += '[' + conditionValueName + ']';
|
|
179572
|
+
if (this.node.attr.branchType == 3) {
|
|
179573
|
+
this.node.conditionGroup = [];
|
|
179574
|
+
content = '默认条件<永为真>';
|
|
179575
|
+
} else {
|
|
179576
|
+
this.node.conditionGroup.forEach((group, j) => {
|
|
179577
|
+
if (group.conditions.length > 0) {
|
|
179578
|
+
if (j != 0) {
|
|
179579
|
+
content += ' 或 ';
|
|
179386
179580
|
}
|
|
179387
|
-
|
|
179388
|
-
|
|
179389
|
-
|
|
179390
|
-
|
|
179581
|
+
group.conditions.forEach((condition, i) => {
|
|
179582
|
+
const conditionValueName = typeof condition.conditionValueName === 'string' ? condition.conditionValueName : condition.conditionValueName[0];
|
|
179583
|
+
if (conditionValueName) {
|
|
179584
|
+
if (i != 0) {
|
|
179585
|
+
content += ' 且 ';
|
|
179586
|
+
}
|
|
179587
|
+
content += '[' + conditionValueName + ']';
|
|
179588
|
+
}
|
|
179589
|
+
});
|
|
179590
|
+
}
|
|
179591
|
+
});
|
|
179592
|
+
if (content.trim().length === 0) content += '任意(其他)';
|
|
179593
|
+
}
|
|
179391
179594
|
}
|
|
179392
179595
|
this.$store.dispatch('flow/updateNode', {
|
|
179393
179596
|
currNode: this.node,
|
|
@@ -179433,8 +179636,8 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179433
179636
|
;
|
|
179434
179637
|
var Branch_component = (0,componentNormalizer/* default */.A)(
|
|
179435
179638
|
FlowDrawer_Branchvue_type_script_lang_js,
|
|
179436
|
-
|
|
179437
|
-
|
|
179639
|
+
Branchvue_type_template_id_2668f886_render,
|
|
179640
|
+
Branchvue_type_template_id_2668f886_staticRenderFns,
|
|
179438
179641
|
false,
|
|
179439
179642
|
null,
|
|
179440
179643
|
null,
|
|
@@ -179874,10 +180077,10 @@ function registerWrite(lf) {
|
|
|
179874
180077
|
});
|
|
179875
180078
|
;// ./packages/FlowNode/baseNode.vue?vue&type=script&lang=js
|
|
179876
180079
|
/* harmony default export */ var FlowNode_baseNodevue_type_script_lang_js = (baseNodevue_type_script_lang_js);
|
|
179877
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-76.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-76.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-76.use[2]!./node_modules/less-loader/dist/cjs.js??clonedRuleSet-76.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowNode/baseNode.vue?vue&type=style&index=0&id=
|
|
180080
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-76.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-76.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-76.use[2]!./node_modules/less-loader/dist/cjs.js??clonedRuleSet-76.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowNode/baseNode.vue?vue&type=style&index=0&id=55b34434&prod&scoped=true&lang=less
|
|
179878
180081
|
// extracted by mini-css-extract-plugin
|
|
179879
180082
|
|
|
179880
|
-
;// ./packages/FlowNode/baseNode.vue?vue&type=style&index=0&id=
|
|
180083
|
+
;// ./packages/FlowNode/baseNode.vue?vue&type=style&index=0&id=55b34434&prod&scoped=true&lang=less
|
|
179881
180084
|
|
|
179882
180085
|
;// ./packages/FlowNode/baseNode.vue
|
|
179883
180086
|
|
|
@@ -179890,11 +180093,11 @@ function registerWrite(lf) {
|
|
|
179890
180093
|
|
|
179891
180094
|
var baseNode_component = (0,componentNormalizer/* default */.A)(
|
|
179892
180095
|
FlowNode_baseNodevue_type_script_lang_js,
|
|
179893
|
-
|
|
179894
|
-
|
|
180096
|
+
baseNodevue_type_template_id_55b34434_scoped_true_render,
|
|
180097
|
+
baseNodevue_type_template_id_55b34434_scoped_true_staticRenderFns,
|
|
179895
180098
|
false,
|
|
179896
180099
|
null,
|
|
179897
|
-
"
|
|
180100
|
+
"55b34434",
|
|
179898
180101
|
null
|
|
179899
180102
|
|
|
179900
180103
|
)
|
|
@@ -181111,6 +181314,30 @@ class graph_Graph {
|
|
|
181111
181314
|
this.selectedNodes = [];
|
|
181112
181315
|
this.hoveredNodes = [];
|
|
181113
181316
|
}
|
|
181317
|
+
updateWriteNodeProperties(nodes, formList) {
|
|
181318
|
+
//更新write 节点的表单数据
|
|
181319
|
+
const graphWriteNodeIndex = nodes.findIndex(n => n.type === 'write');
|
|
181320
|
+
const graphFirstNode = nodes[graphWriteNodeIndex] ?? null;
|
|
181321
|
+
const properties = graphFirstNode?.properties ?? null;
|
|
181322
|
+
if (graphFirstNode && properties) {
|
|
181323
|
+
const formDesignData = properties.formDesignData ?? {};
|
|
181324
|
+
const form = formList.find(item => item.value?.toString() === formDesignData?.chooseFormId?.toString());
|
|
181325
|
+
if (form && formDesignData?.chooseFormId) {
|
|
181326
|
+
if (form?.fields && form?.fields.length > 0) {
|
|
181327
|
+
properties['formDesignData']['fields'] = Array.isArray(form.fields) ? form.fields : JSON.parse(form.fields);
|
|
181328
|
+
}
|
|
181329
|
+
properties['formDesignData']['privilegeFields'] = Array.isArray(form.privilege_fields) ? form.privilege_fields : JSON.parse(form.privilege_fields);
|
|
181330
|
+
let privilegeFields = form.privilege_fields;
|
|
181331
|
+
if (Array.isArray(privilegeFields)) {
|
|
181332
|
+
privilegeFields = JSON.stringify(privilegeFields);
|
|
181333
|
+
}
|
|
181334
|
+
properties['formDesignData']['privilegeFields'] = JSON.parse(privilegeFields);
|
|
181335
|
+
graphFirstNode.properties = properties;
|
|
181336
|
+
nodes[graphWriteNodeIndex] = graphFirstNode;
|
|
181337
|
+
}
|
|
181338
|
+
}
|
|
181339
|
+
return nodes;
|
|
181340
|
+
}
|
|
181114
181341
|
|
|
181115
181342
|
/**
|
|
181116
181343
|
* 当选中左侧画布组件时,选中逻辑图上对应节点
|
|
@@ -181668,6 +181895,10 @@ window.LogicFlow = core_es;
|
|
|
181668
181895
|
return null;
|
|
181669
181896
|
}
|
|
181670
181897
|
},
|
|
181898
|
+
height: {
|
|
181899
|
+
type: String,
|
|
181900
|
+
default: ''
|
|
181901
|
+
},
|
|
181671
181902
|
navable: {
|
|
181672
181903
|
type: Boolean,
|
|
181673
181904
|
default: true
|
|
@@ -181717,7 +181948,8 @@ window.LogicFlow = core_es;
|
|
|
181717
181948
|
lf: null,
|
|
181718
181949
|
renderData: null,
|
|
181719
181950
|
currentModel: null,
|
|
181720
|
-
mapShow: false
|
|
181951
|
+
mapShow: false,
|
|
181952
|
+
initFinished: false
|
|
181721
181953
|
};
|
|
181722
181954
|
},
|
|
181723
181955
|
computed: {
|
|
@@ -181735,6 +181967,7 @@ window.LogicFlow = core_es;
|
|
|
181735
181967
|
flowConfigs: {
|
|
181736
181968
|
handler() {
|
|
181737
181969
|
this.setGlobalNodeConfigs();
|
|
181970
|
+
this.resetFlowData();
|
|
181738
181971
|
},
|
|
181739
181972
|
deep: true
|
|
181740
181973
|
},
|
|
@@ -181743,9 +181976,7 @@ window.LogicFlow = core_es;
|
|
|
181743
181976
|
// 重新初始数据
|
|
181744
181977
|
// this.$store.dispatch('flow/setNode', newVal);
|
|
181745
181978
|
// this.$store.dispatch('flow/clearHasError');
|
|
181746
|
-
this.
|
|
181747
|
-
this.renderData = newVal;
|
|
181748
|
-
this.lf.render(newVal);
|
|
181979
|
+
this.resetFlowData(newVal);
|
|
181749
181980
|
},
|
|
181750
181981
|
deep: true
|
|
181751
181982
|
},
|
|
@@ -181780,6 +182011,17 @@ window.LogicFlow = core_es;
|
|
|
181780
182011
|
this.setGlobalNodeConfigs();
|
|
181781
182012
|
},
|
|
181782
182013
|
methods: {
|
|
182014
|
+
resetFlowData(data) {
|
|
182015
|
+
let newVal = data ?? this.renderData;
|
|
182016
|
+
this.lf.clearData();
|
|
182017
|
+
if (newVal && newVal?.nodes && newVal?.nodes?.length > 0 && !this.initFinished && this.flowConfigs?.formList?.length > 0) {
|
|
182018
|
+
//更新节点数据
|
|
182019
|
+
newVal.nodes = this.graph.updateWriteNodeProperties([...newVal.nodes], this.flowConfigs.formList);
|
|
182020
|
+
this.initFinished = true;
|
|
182021
|
+
}
|
|
182022
|
+
this.renderData = newVal;
|
|
182023
|
+
this.lf.render(newVal);
|
|
182024
|
+
},
|
|
181783
182025
|
initFlow() {
|
|
181784
182026
|
const lf = new core_es({
|
|
181785
182027
|
container: this.$refs.designContainer,
|
|
@@ -182452,10 +182694,10 @@ window.LogicFlow = core_es;
|
|
|
182452
182694
|
});
|
|
182453
182695
|
;// ./packages/FlowDesign/index.vue?vue&type=script&lang=js
|
|
182454
182696
|
/* harmony default export */ var packages_FlowDesignvue_type_script_lang_js = (FlowDesignvue_type_script_lang_js);
|
|
182455
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-56.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-56.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-56.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDesign/index.vue?vue&type=style&index=0&id=
|
|
182697
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-56.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-56.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-56.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDesign/index.vue?vue&type=style&index=0&id=33f6e767&prod&scoped=true&lang=css
|
|
182456
182698
|
// extracted by mini-css-extract-plugin
|
|
182457
182699
|
|
|
182458
|
-
;// ./packages/FlowDesign/index.vue?vue&type=style&index=0&id=
|
|
182700
|
+
;// ./packages/FlowDesign/index.vue?vue&type=style&index=0&id=33f6e767&prod&scoped=true&lang=css
|
|
182459
182701
|
|
|
182460
182702
|
;// ./packages/FlowDesign/index.vue
|
|
182461
182703
|
|
|
@@ -182472,7 +182714,7 @@ var FlowDesign_component = (0,componentNormalizer/* default */.A)(
|
|
|
182472
182714
|
staticRenderFns,
|
|
182473
182715
|
false,
|
|
182474
182716
|
null,
|
|
182475
|
-
"
|
|
182717
|
+
"33f6e767",
|
|
182476
182718
|
null
|
|
182477
182719
|
|
|
182478
182720
|
)
|