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
|
@@ -10564,156 +10564,6 @@ var isBuffer = nativeIsBuffer || stubFalse;
|
|
|
10564
10564
|
module.exports = isBuffer;
|
|
10565
10565
|
|
|
10566
10566
|
|
|
10567
|
-
/***/ }),
|
|
10568
|
-
|
|
10569
|
-
/***/ 3660:
|
|
10570
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
10571
|
-
|
|
10572
|
-
"use strict";
|
|
10573
|
-
|
|
10574
|
-
// EXPORTS
|
|
10575
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
10576
|
-
A: function() { return /* binding */ FlowSimpleSelect; }
|
|
10577
|
-
});
|
|
10578
|
-
|
|
10579
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
10580
|
-
var render = function render() {
|
|
10581
|
-
var _vm = this,
|
|
10582
|
-
_c = _vm._self._c;
|
|
10583
|
-
return _c('a-select', {
|
|
10584
|
-
staticClass: "w-fill",
|
|
10585
|
-
attrs: {
|
|
10586
|
-
"size": _vm.size,
|
|
10587
|
-
"show-search": "",
|
|
10588
|
-
"allowClear": "",
|
|
10589
|
-
"placeholder": _vm.placeholder
|
|
10590
|
-
},
|
|
10591
|
-
on: {
|
|
10592
|
-
"change": _vm.onChange
|
|
10593
|
-
},
|
|
10594
|
-
model: {
|
|
10595
|
-
value: _vm.currentValue,
|
|
10596
|
-
callback: function ($$v) {
|
|
10597
|
-
_vm.currentValue = $$v;
|
|
10598
|
-
},
|
|
10599
|
-
expression: "currentValue"
|
|
10600
|
-
}
|
|
10601
|
-
}, [_vm._l(_vm.datas, function (data, i) {
|
|
10602
|
-
return [data.children?.length > 0 ? _c('a-select-opt-group', {
|
|
10603
|
-
key: 'group_' + data[_vm.labelName],
|
|
10604
|
-
attrs: {
|
|
10605
|
-
"label": data[_vm.labelName]
|
|
10606
|
-
}
|
|
10607
|
-
}, _vm._l(data.children, function (childData, j) {
|
|
10608
|
-
return _c('a-select-option', {
|
|
10609
|
-
key: childData[_vm.labelName] + j,
|
|
10610
|
-
attrs: {
|
|
10611
|
-
"value": childData[_vm.valueName],
|
|
10612
|
-
"title": childData[_vm.labelName]
|
|
10613
|
-
}
|
|
10614
|
-
}, [_vm._v(_vm._s(childData[_vm.labelName]))]);
|
|
10615
|
-
}), 1) : _c('a-select-option', {
|
|
10616
|
-
key: data[_vm.labelName] + i,
|
|
10617
|
-
attrs: {
|
|
10618
|
-
"value": data[_vm.valueName],
|
|
10619
|
-
"title": data[_vm.labelName]
|
|
10620
|
-
}
|
|
10621
|
-
}, [_vm._v(" " + _vm._s(data[_vm.labelName]) + " ")])];
|
|
10622
|
-
})], 2);
|
|
10623
|
-
};
|
|
10624
|
-
var staticRenderFns = [];
|
|
10625
|
-
|
|
10626
|
-
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
10627
|
-
/* harmony default export */ var FlowSimpleSelectvue_type_script_lang_js = ({
|
|
10628
|
-
name: 'FlowSimpleSelect',
|
|
10629
|
-
props: {
|
|
10630
|
-
datas: {
|
|
10631
|
-
type: Array,
|
|
10632
|
-
required: false,
|
|
10633
|
-
default: () => []
|
|
10634
|
-
},
|
|
10635
|
-
valueName: {
|
|
10636
|
-
type: String,
|
|
10637
|
-
required: false,
|
|
10638
|
-
default: 'value'
|
|
10639
|
-
},
|
|
10640
|
-
labelName: {
|
|
10641
|
-
type: String,
|
|
10642
|
-
required: false,
|
|
10643
|
-
default: 'name'
|
|
10644
|
-
},
|
|
10645
|
-
size: {
|
|
10646
|
-
type: String,
|
|
10647
|
-
required: false,
|
|
10648
|
-
default: 'large'
|
|
10649
|
-
},
|
|
10650
|
-
placeholder: {
|
|
10651
|
-
type: String,
|
|
10652
|
-
required: false,
|
|
10653
|
-
default: '请选择'
|
|
10654
|
-
},
|
|
10655
|
-
value: {
|
|
10656
|
-
type: [Number, String],
|
|
10657
|
-
required: false,
|
|
10658
|
-
default: undefined
|
|
10659
|
-
}
|
|
10660
|
-
},
|
|
10661
|
-
data() {
|
|
10662
|
-
return {
|
|
10663
|
-
currentValue: undefined
|
|
10664
|
-
};
|
|
10665
|
-
},
|
|
10666
|
-
watch: {
|
|
10667
|
-
value(curVal, oldVal) {
|
|
10668
|
-
this.initData(curVal);
|
|
10669
|
-
}
|
|
10670
|
-
},
|
|
10671
|
-
mounted() {
|
|
10672
|
-
this.initData(this.value);
|
|
10673
|
-
},
|
|
10674
|
-
methods: {
|
|
10675
|
-
initData(value) {
|
|
10676
|
-
if (typeof value !== 'undefined') {
|
|
10677
|
-
this.currentValue = value;
|
|
10678
|
-
} else {
|
|
10679
|
-
this.currentValue = undefined;
|
|
10680
|
-
}
|
|
10681
|
-
},
|
|
10682
|
-
onChange(value, option) {
|
|
10683
|
-
this.$emit('input', value);
|
|
10684
|
-
let datas = this.datas.map(item => {
|
|
10685
|
-
return Array.isArray(item.children) ? item.children : item;
|
|
10686
|
-
}).flat();
|
|
10687
|
-
this.$emit('update:name', datas.filter(data => data[this.valueName] == value).map(data => data[this.labelName])[0]);
|
|
10688
|
-
this.$emit('change', value, datas.filter(data => data[this.valueName] == value)[0]);
|
|
10689
|
-
}
|
|
10690
|
-
}
|
|
10691
|
-
});
|
|
10692
|
-
;// ./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
10693
|
-
/* harmony default export */ var Component_FlowSimpleSelectvue_type_script_lang_js = (FlowSimpleSelectvue_type_script_lang_js);
|
|
10694
|
-
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
10695
|
-
var componentNormalizer = __webpack_require__(1656);
|
|
10696
|
-
;// ./packages/Component/FlowSimpleSelect.vue
|
|
10697
|
-
|
|
10698
|
-
|
|
10699
|
-
|
|
10700
|
-
|
|
10701
|
-
|
|
10702
|
-
/* normalize component */
|
|
10703
|
-
;
|
|
10704
|
-
var component = (0,componentNormalizer/* default */.A)(
|
|
10705
|
-
Component_FlowSimpleSelectvue_type_script_lang_js,
|
|
10706
|
-
render,
|
|
10707
|
-
staticRenderFns,
|
|
10708
|
-
false,
|
|
10709
|
-
null,
|
|
10710
|
-
null,
|
|
10711
|
-
null
|
|
10712
|
-
|
|
10713
|
-
)
|
|
10714
|
-
|
|
10715
|
-
/* harmony default export */ var FlowSimpleSelect = (component.exports);
|
|
10716
|
-
|
|
10717
10567
|
/***/ }),
|
|
10718
10568
|
|
|
10719
10569
|
/***/ 3661:
|
|
@@ -28171,7 +28021,7 @@ module.exports = baseIsNative;
|
|
|
28171
28021
|
drawerWidth() {
|
|
28172
28022
|
return width => {
|
|
28173
28023
|
if (!width) {
|
|
28174
|
-
width = '
|
|
28024
|
+
width = '45%';
|
|
28175
28025
|
}
|
|
28176
28026
|
return _util_deviceUtil__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .A.isMobile() ? '100%' : width;
|
|
28177
28027
|
};
|
|
@@ -42783,6 +42633,8 @@ if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
|
|
|
42783
42633
|
/* harmony import */ var _flowMethodsMixin__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6994);
|
|
42784
42634
|
/* harmony import */ var _flowComputedMixin__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5157);
|
|
42785
42635
|
/* harmony import */ var _flowBaseDataMixin__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9631);
|
|
42636
|
+
/* harmony import */ var _flowComponentsMixin__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(8648);
|
|
42637
|
+
|
|
42786
42638
|
|
|
42787
42639
|
|
|
42788
42640
|
|
|
@@ -42820,9 +42672,11 @@ if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
|
|
|
42820
42672
|
height: 'calc(100vh - 114px)',
|
|
42821
42673
|
'overflow-y': 'auto'
|
|
42822
42674
|
},
|
|
42675
|
+
drawerStyle: {},
|
|
42823
42676
|
..._flowBaseDataMixin__WEBPACK_IMPORTED_MODULE_2__/* ["default"] */ .A.data()
|
|
42824
42677
|
};
|
|
42825
42678
|
},
|
|
42679
|
+
..._flowComponentsMixin__WEBPACK_IMPORTED_MODULE_3__/* ["default"] */ .A,
|
|
42826
42680
|
..._flowComputedMixin__WEBPACK_IMPORTED_MODULE_1__/* ["default"] */ .A,
|
|
42827
42681
|
..._flowMethodsMixin__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .A
|
|
42828
42682
|
});
|
|
@@ -48041,7 +47895,7 @@ var render = function render() {
|
|
|
48041
47895
|
var staticRenderFns = [];
|
|
48042
47896
|
|
|
48043
47897
|
// EXTERNAL MODULE: ./packages/Component/FlowSimpleSelect.vue + 3 modules
|
|
48044
|
-
var FlowSimpleSelect = __webpack_require__(
|
|
47898
|
+
var FlowSimpleSelect = __webpack_require__(8974);
|
|
48045
47899
|
// EXTERNAL MODULE: ./packages/mixins/flowDrawerMixin.js
|
|
48046
47900
|
var flowDrawerMixin = __webpack_require__(6915);
|
|
48047
47901
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/DesignForm.vue?vue&type=script&lang=js
|
|
@@ -48561,6 +48415,54 @@ function isKey(value, object) {
|
|
|
48561
48415
|
module.exports = isKey;
|
|
48562
48416
|
|
|
48563
48417
|
|
|
48418
|
+
/***/ }),
|
|
48419
|
+
|
|
48420
|
+
/***/ 8648:
|
|
48421
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__) {
|
|
48422
|
+
|
|
48423
|
+
"use strict";
|
|
48424
|
+
/* harmony default export */ __webpack_exports__.A = ({
|
|
48425
|
+
components: {
|
|
48426
|
+
// 定义一个函数式组件作为占位符
|
|
48427
|
+
VnodeContent: {
|
|
48428
|
+
functional: true,
|
|
48429
|
+
props: ['vnode', 'value', 'name'],
|
|
48430
|
+
render(h, ctx) {
|
|
48431
|
+
const {
|
|
48432
|
+
vnode,
|
|
48433
|
+
value,
|
|
48434
|
+
name
|
|
48435
|
+
} = ctx.props;
|
|
48436
|
+
if (!vnode) return null;
|
|
48437
|
+
|
|
48438
|
+
// 深度克隆或直接修改 VNode 的 data(Vue 2 允许在渲染前微调)
|
|
48439
|
+
const data = vnode.data || (vnode.data = {});
|
|
48440
|
+
|
|
48441
|
+
// 1. 注入 Props (对应 v-model 的 value 和 sync 的 name)
|
|
48442
|
+
data.props = {
|
|
48443
|
+
...data.props,
|
|
48444
|
+
value: value,
|
|
48445
|
+
name: name
|
|
48446
|
+
};
|
|
48447
|
+
|
|
48448
|
+
// 2. 注入事件 (监听 input 和 update:name)
|
|
48449
|
+
const listeners = data.on || (data.on = {});
|
|
48450
|
+
|
|
48451
|
+
// 捕获 input 事件,触发父级的 v-model
|
|
48452
|
+
listeners.input = val => {
|
|
48453
|
+
ctx.listeners.input && ctx.listeners.input(val);
|
|
48454
|
+
};
|
|
48455
|
+
|
|
48456
|
+
// 捕获 update:name 事件,触发父级的 .sync
|
|
48457
|
+
listeners['update:name'] = val => {
|
|
48458
|
+
ctx.listeners['update:name'] && ctx.listeners['update:name'](val);
|
|
48459
|
+
};
|
|
48460
|
+
return vnode;
|
|
48461
|
+
}
|
|
48462
|
+
}
|
|
48463
|
+
}
|
|
48464
|
+
});
|
|
48465
|
+
|
|
48564
48466
|
/***/ }),
|
|
48565
48467
|
|
|
48566
48468
|
/***/ 8655:
|
|
@@ -49375,6 +49277,173 @@ function parent(object, path) {
|
|
|
49375
49277
|
module.exports = parent;
|
|
49376
49278
|
|
|
49377
49279
|
|
|
49280
|
+
/***/ }),
|
|
49281
|
+
|
|
49282
|
+
/***/ 8974:
|
|
49283
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
49284
|
+
|
|
49285
|
+
"use strict";
|
|
49286
|
+
|
|
49287
|
+
// EXPORTS
|
|
49288
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
49289
|
+
A: function() { return /* binding */ FlowSimpleSelect; }
|
|
49290
|
+
});
|
|
49291
|
+
|
|
49292
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
49293
|
+
var render = function render() {
|
|
49294
|
+
var _vm = this,
|
|
49295
|
+
_c = _vm._self._c;
|
|
49296
|
+
return _c('a-select', {
|
|
49297
|
+
staticClass: "w-fill",
|
|
49298
|
+
attrs: {
|
|
49299
|
+
"size": _vm.size,
|
|
49300
|
+
"show-search": "",
|
|
49301
|
+
"filter-option": _vm.filterOption,
|
|
49302
|
+
"allowClear": "",
|
|
49303
|
+
"getPopupContainer": triggerNode => triggerNode.parentNode,
|
|
49304
|
+
"placeholder": _vm.placeholder
|
|
49305
|
+
},
|
|
49306
|
+
on: {
|
|
49307
|
+
"change": _vm.onChange
|
|
49308
|
+
},
|
|
49309
|
+
model: {
|
|
49310
|
+
value: _vm.currentValue,
|
|
49311
|
+
callback: function ($$v) {
|
|
49312
|
+
_vm.currentValue = $$v;
|
|
49313
|
+
},
|
|
49314
|
+
expression: "currentValue"
|
|
49315
|
+
}
|
|
49316
|
+
}, [_vm._l(_vm.datas, function (data, i) {
|
|
49317
|
+
return [_vm.dynamicChild(data)?.length > 0 ? _c('a-select-opt-group', {
|
|
49318
|
+
key: 'group_' + data[_vm.labelName],
|
|
49319
|
+
attrs: {
|
|
49320
|
+
"label": data[_vm.labelName]
|
|
49321
|
+
}
|
|
49322
|
+
}, _vm._l(_vm.dynamicChild(data), function (childData, j) {
|
|
49323
|
+
return _c('a-select-option', {
|
|
49324
|
+
key: childData[_vm.labelName] + j,
|
|
49325
|
+
attrs: {
|
|
49326
|
+
"value": childData[_vm.valueName],
|
|
49327
|
+
"title": childData[_vm.labelName]
|
|
49328
|
+
}
|
|
49329
|
+
}, [_vm._v(_vm._s(childData[_vm.labelName]))]);
|
|
49330
|
+
}), 1) : _c('a-select-option', {
|
|
49331
|
+
key: data[_vm.labelName] + i,
|
|
49332
|
+
attrs: {
|
|
49333
|
+
"value": data[_vm.valueName],
|
|
49334
|
+
"title": data[_vm.labelName]
|
|
49335
|
+
}
|
|
49336
|
+
}, [_vm._v(" " + _vm._s(data[_vm.labelName]) + " ")])];
|
|
49337
|
+
})], 2);
|
|
49338
|
+
};
|
|
49339
|
+
var staticRenderFns = [];
|
|
49340
|
+
|
|
49341
|
+
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
49342
|
+
/* harmony default export */ var FlowSimpleSelectvue_type_script_lang_js = ({
|
|
49343
|
+
name: 'FlowSimpleSelect',
|
|
49344
|
+
props: {
|
|
49345
|
+
datas: {
|
|
49346
|
+
type: Array,
|
|
49347
|
+
required: false,
|
|
49348
|
+
default: () => []
|
|
49349
|
+
},
|
|
49350
|
+
valueName: {
|
|
49351
|
+
type: String,
|
|
49352
|
+
required: false,
|
|
49353
|
+
default: 'value'
|
|
49354
|
+
},
|
|
49355
|
+
labelName: {
|
|
49356
|
+
type: String,
|
|
49357
|
+
required: false,
|
|
49358
|
+
default: 'name'
|
|
49359
|
+
},
|
|
49360
|
+
size: {
|
|
49361
|
+
type: String,
|
|
49362
|
+
required: false,
|
|
49363
|
+
default: 'large'
|
|
49364
|
+
},
|
|
49365
|
+
placeholder: {
|
|
49366
|
+
type: String,
|
|
49367
|
+
required: false,
|
|
49368
|
+
default: '请选择'
|
|
49369
|
+
},
|
|
49370
|
+
value: {
|
|
49371
|
+
type: [Number, String],
|
|
49372
|
+
required: false,
|
|
49373
|
+
default: undefined
|
|
49374
|
+
}
|
|
49375
|
+
},
|
|
49376
|
+
data() {
|
|
49377
|
+
return {
|
|
49378
|
+
currentValue: undefined
|
|
49379
|
+
};
|
|
49380
|
+
},
|
|
49381
|
+
watch: {
|
|
49382
|
+
value(curVal, oldVal) {
|
|
49383
|
+
this.initData(curVal);
|
|
49384
|
+
}
|
|
49385
|
+
},
|
|
49386
|
+
mounted() {
|
|
49387
|
+
this.initData(this.value);
|
|
49388
|
+
},
|
|
49389
|
+
methods: {
|
|
49390
|
+
dynamicChild(item) {
|
|
49391
|
+
return item?.children || item?.child;
|
|
49392
|
+
},
|
|
49393
|
+
initData(value) {
|
|
49394
|
+
if (typeof value !== 'undefined') {
|
|
49395
|
+
this.currentValue = value;
|
|
49396
|
+
} else {
|
|
49397
|
+
this.currentValue = undefined;
|
|
49398
|
+
}
|
|
49399
|
+
},
|
|
49400
|
+
onChange(value, option) {
|
|
49401
|
+
this.$emit('input', value);
|
|
49402
|
+
let datas = this.datas.map(item => {
|
|
49403
|
+
return Array.isArray(this.dynamicChild(item)) ? this.dynamicChild(item) : item;
|
|
49404
|
+
}).flat();
|
|
49405
|
+
this.$emit('update:name', datas.filter(data => data[this.valueName] == value).map(data => data[this.labelName])[0]);
|
|
49406
|
+
this.$emit('change', value, datas.filter(data => data[this.valueName] == value)[0]);
|
|
49407
|
+
},
|
|
49408
|
+
filterOption(input, option) {
|
|
49409
|
+
let optionText = option.componentOptions.children[0]?.text ?? '';
|
|
49410
|
+
// 如果当前节点是分组(a-select-optgroup)
|
|
49411
|
+
if (option.data && option.data.attrs && option.data.attrs.role === 'optgroup') {
|
|
49412
|
+
// 确保当前是具体的选项节点,再进行文本匹配
|
|
49413
|
+
// 这里使用 option.componentOptions.children[0].text 获取选项的显示文本
|
|
49414
|
+
optionText = option.componentOptions && option.componentOptions.children && option.componentOptions.children.length > 0 ? option.componentOptions.children[0].text : '';
|
|
49415
|
+
}
|
|
49416
|
+
|
|
49417
|
+
// 进行大小写不敏感的模糊匹配
|
|
49418
|
+
return optionText.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
49419
|
+
}
|
|
49420
|
+
}
|
|
49421
|
+
});
|
|
49422
|
+
;// ./packages/Component/FlowSimpleSelect.vue?vue&type=script&lang=js
|
|
49423
|
+
/* harmony default export */ var Component_FlowSimpleSelectvue_type_script_lang_js = (FlowSimpleSelectvue_type_script_lang_js);
|
|
49424
|
+
// EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
|
|
49425
|
+
var componentNormalizer = __webpack_require__(1656);
|
|
49426
|
+
;// ./packages/Component/FlowSimpleSelect.vue
|
|
49427
|
+
|
|
49428
|
+
|
|
49429
|
+
|
|
49430
|
+
|
|
49431
|
+
|
|
49432
|
+
/* normalize component */
|
|
49433
|
+
;
|
|
49434
|
+
var component = (0,componentNormalizer/* default */.A)(
|
|
49435
|
+
Component_FlowSimpleSelectvue_type_script_lang_js,
|
|
49436
|
+
render,
|
|
49437
|
+
staticRenderFns,
|
|
49438
|
+
false,
|
|
49439
|
+
null,
|
|
49440
|
+
null,
|
|
49441
|
+
null
|
|
49442
|
+
|
|
49443
|
+
)
|
|
49444
|
+
|
|
49445
|
+
/* harmony default export */ var FlowSimpleSelect = (component.exports);
|
|
49446
|
+
|
|
49378
49447
|
/***/ }),
|
|
49379
49448
|
|
|
49380
49449
|
/***/ 8984:
|
|
@@ -110182,25 +110251,33 @@ external_Vue_default().use(list);
|
|
|
110182
110251
|
(external_Vue_default()).prototype.$confirm = modal.confirm;
|
|
110183
110252
|
(external_Vue_default()).prototype.$warning = modal.warning;
|
|
110184
110253
|
(external_Vue_default()).prototype.$message = message;
|
|
110185
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
110254
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
110186
110255
|
var render = function render() {
|
|
110187
110256
|
var _vm = this,
|
|
110188
110257
|
_c = _vm._self._c;
|
|
110189
110258
|
return _c('div', {
|
|
110190
|
-
staticClass: "designer-wrap"
|
|
110191
|
-
|
|
110192
|
-
|
|
110193
|
-
"navItems": _vm.navMenu,
|
|
110194
|
-
"currentNav": 3
|
|
110195
|
-
},
|
|
110196
|
-
on: {
|
|
110197
|
-
"click": _vm.publish,
|
|
110198
|
-
"change": _vm.change
|
|
110259
|
+
staticClass: "designer-wrap",
|
|
110260
|
+
style: {
|
|
110261
|
+
height: _vm.height || '100vh'
|
|
110199
110262
|
}
|
|
110200
|
-
}
|
|
110263
|
+
}, [_vm._t("nav", function () {
|
|
110264
|
+
return [_vm.navable && !_vm.readable ? _c('FlowNav', {
|
|
110265
|
+
attrs: {
|
|
110266
|
+
"navItems": _vm.navMenu,
|
|
110267
|
+
"currentNav": 3
|
|
110268
|
+
},
|
|
110269
|
+
on: {
|
|
110270
|
+
"click": _vm.publish,
|
|
110271
|
+
"change": _vm.change
|
|
110272
|
+
}
|
|
110273
|
+
}) : _vm._e()];
|
|
110274
|
+
}, {
|
|
110275
|
+
"navItems": _vm.navMenu,
|
|
110276
|
+
"currentNav": 3
|
|
110277
|
+
}), _c('div', {
|
|
110201
110278
|
staticClass: "designer-content-box",
|
|
110202
110279
|
style: {
|
|
110203
|
-
height: _vm.readable ? '100vh' : 'calc(100vh - 50px)'
|
|
110280
|
+
height: !_vm.readable ? _vm.height || '100vh' : 'calc(' + (_vm.height || '100vh') + ' - 50px)'
|
|
110204
110281
|
}
|
|
110205
110282
|
}, [_vm.lf ? _c('NodePanel', {
|
|
110206
110283
|
attrs: {
|
|
@@ -110221,18 +110298,18 @@ var render = function render() {
|
|
|
110221
110298
|
}) : _vm._e(), _c('div', {
|
|
110222
110299
|
ref: "designContainer",
|
|
110223
110300
|
staticClass: "flow-design-wrap logic-panel"
|
|
110224
|
-
})], 1)],
|
|
110301
|
+
})], 1)], 2);
|
|
110225
110302
|
};
|
|
110226
110303
|
var staticRenderFns = [];
|
|
110227
110304
|
|
|
110228
|
-
// EXTERNAL MODULE: ./packages/util/deviceUtil.js
|
|
110229
|
-
var deviceUtil = __webpack_require__(3305);
|
|
110230
110305
|
// EXTERNAL MODULE: ./packages/mixins/flowMethodsMixin.js
|
|
110231
110306
|
var flowMethodsMixin = __webpack_require__(6994);
|
|
110232
110307
|
// EXTERNAL MODULE: ./packages/mixins/flowBaseDataMixin.js
|
|
110233
110308
|
var flowBaseDataMixin = __webpack_require__(9631);
|
|
110234
110309
|
// EXTERNAL MODULE: ./packages/mixins/flowComputedMixin.js
|
|
110235
110310
|
var flowComputedMixin = __webpack_require__(5157);
|
|
110311
|
+
// EXTERNAL MODULE: ./packages/mixins/flowComponentsMixin.js
|
|
110312
|
+
var flowComponentsMixin = __webpack_require__(8648);
|
|
110236
110313
|
;// ./packages/mixins/flowMixin.js
|
|
110237
110314
|
|
|
110238
110315
|
|
|
@@ -110435,6 +110512,7 @@ const flowMixin = {
|
|
|
110435
110512
|
...flowBaseDataMixin/* default */.A.data()
|
|
110436
110513
|
};
|
|
110437
110514
|
},
|
|
110515
|
+
...flowComponentsMixin/* default */.A,
|
|
110438
110516
|
...flowComputedMixin/* default */.A,
|
|
110439
110517
|
...flowMethodsMixin/* default */.A
|
|
110440
110518
|
};
|
|
@@ -173497,8 +173575,8 @@ var component = (0,componentNormalizer/* default */.A)(
|
|
|
173497
173575
|
/* harmony default export */ var FlowNav = (component.exports);
|
|
173498
173576
|
// EXTERNAL MODULE: ./packages/util/constant.js
|
|
173499
173577
|
var util_constant = __webpack_require__(3595);
|
|
173500
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
173501
|
-
var
|
|
173578
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
173579
|
+
var baseNodevue_type_template_id_55b34434_scoped_true_render = function render() {
|
|
173502
173580
|
var _vm = this,
|
|
173503
173581
|
_c = _vm._self._c;
|
|
173504
173582
|
return _c('div', {
|
|
@@ -173707,13 +173785,32 @@ var baseNodevue_type_template_id_4086fdcf_scoped_true_render = function render()
|
|
|
173707
173785
|
"handleUserSelect": handleUserSelect
|
|
173708
173786
|
})];
|
|
173709
173787
|
}
|
|
173788
|
+
}, {
|
|
173789
|
+
key: "conditionComponent",
|
|
173790
|
+
fn: function ({
|
|
173791
|
+
value,
|
|
173792
|
+
selectItem,
|
|
173793
|
+
datas,
|
|
173794
|
+
type,
|
|
173795
|
+
field,
|
|
173796
|
+
showValue
|
|
173797
|
+
}) {
|
|
173798
|
+
return [_vm._t("conditionComponent", null, {
|
|
173799
|
+
"value": value,
|
|
173800
|
+
"selectItem": selectItem,
|
|
173801
|
+
"datas": datas,
|
|
173802
|
+
"type": type,
|
|
173803
|
+
"field": field,
|
|
173804
|
+
"showValue": showValue
|
|
173805
|
+
})];
|
|
173806
|
+
}
|
|
173710
173807
|
}], null, true)
|
|
173711
173808
|
}) : _vm._e()], 1);
|
|
173712
173809
|
};
|
|
173713
|
-
var
|
|
173810
|
+
var baseNodevue_type_template_id_55b34434_scoped_true_staticRenderFns = [];
|
|
173714
173811
|
|
|
173715
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
173716
|
-
var
|
|
173812
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
173813
|
+
var Approvervue_type_template_id_69a89c58_render = function render() {
|
|
173717
173814
|
var _vm = this,
|
|
173718
173815
|
_c = _vm._self._c;
|
|
173719
173816
|
return _vm.node.approverGroups ? _c('a-drawer', {
|
|
@@ -173974,13 +174071,7 @@ var Approvervue_type_template_id_15804922_render = function render() {
|
|
|
173974
174071
|
"type": "question-circle"
|
|
173975
174072
|
}
|
|
173976
174073
|
})], 2) : _vm._e()], 1);
|
|
173977
|
-
}), 1)], 1), _c('
|
|
173978
|
-
staticClass: "flow-setting-item"
|
|
173979
|
-
}, [_c('p', {
|
|
173980
|
-
staticClass: "flow-setting-item-title"
|
|
173981
|
-
}, [_vm._v("提示:")]), _c('div', {
|
|
173982
|
-
staticClass: "hint-info"
|
|
173983
|
-
}, [_vm.node.type == 6 ? _c('p', [_vm._v("办理人不涉及审批人去重设置,不同节点相同的办理人仍需要执行。")]) : _vm._e(), _c('p', [_vm._v("若审批人离职,会自动转交给审批人的上级代为处理")]), _c('p', [_vm._v("抄送的人数最多支持100人以内")])])])], 2)]), _c('a-tab-pane', {
|
|
174074
|
+
}), 1)], 1)], 2)]), _c('a-tab-pane', {
|
|
173984
174075
|
key: "2",
|
|
173985
174076
|
attrs: {
|
|
173986
174077
|
"tab": "表单权限"
|
|
@@ -174023,7 +174114,7 @@ var Approvervue_type_template_id_15804922_render = function render() {
|
|
|
174023
174114
|
}
|
|
174024
174115
|
})], 2) : _vm._e();
|
|
174025
174116
|
};
|
|
174026
|
-
var
|
|
174117
|
+
var Approvervue_type_template_id_69a89c58_staticRenderFns = [];
|
|
174027
174118
|
|
|
174028
174119
|
// EXTERNAL MODULE: ./packages/mixins/flowDrawerMixin.js
|
|
174029
174120
|
var flowDrawerMixin = __webpack_require__(6915);
|
|
@@ -174056,6 +174147,8 @@ var DrawerFootervue_type_template_id_5348482a_render = function render() {
|
|
|
174056
174147
|
};
|
|
174057
174148
|
var DrawerFootervue_type_template_id_5348482a_staticRenderFns = [];
|
|
174058
174149
|
|
|
174150
|
+
// EXTERNAL MODULE: ./packages/util/deviceUtil.js
|
|
174151
|
+
var deviceUtil = __webpack_require__(3305);
|
|
174059
174152
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/DrawerFooter.vue?vue&type=script&lang=js
|
|
174060
174153
|
|
|
174061
174154
|
|
|
@@ -174105,9 +174198,9 @@ var DrawerFooter_component = (0,componentNormalizer/* default */.A)(
|
|
|
174105
174198
|
|
|
174106
174199
|
/* harmony default export */ var DrawerFooter = (DrawerFooter_component.exports);
|
|
174107
174200
|
// EXTERNAL MODULE: ./packages/Component/FlowSimpleSelect.vue + 3 modules
|
|
174108
|
-
var FlowSimpleSelect = __webpack_require__(
|
|
174109
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
174110
|
-
var
|
|
174201
|
+
var FlowSimpleSelect = __webpack_require__(8974);
|
|
174202
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
174203
|
+
var Approvalvue_type_template_id_70f0872c_render = function render() {
|
|
174111
174204
|
var _vm = this,
|
|
174112
174205
|
_c = _vm._self._c;
|
|
174113
174206
|
return _c('a-space', {
|
|
@@ -174167,7 +174260,7 @@ var Approvalvue_type_template_id_70d99796_render = function render() {
|
|
|
174167
174260
|
return _vm.sortUpGroup('down', k);
|
|
174168
174261
|
}
|
|
174169
174262
|
}
|
|
174170
|
-
})], 2)], 1)], 1)], 1), _c('a-col', [
|
|
174263
|
+
})], 2)], 1)], 1)], 1), _c('a-col', [_vm.sortedGroups.length > 1 ? _c('a-icon', {
|
|
174171
174264
|
staticClass: "del-icon",
|
|
174172
174265
|
attrs: {
|
|
174173
174266
|
"type": "delete"
|
|
@@ -174873,20 +174966,22 @@ var Approvalvue_type_template_id_70d99796_render = function render() {
|
|
|
174873
174966
|
}
|
|
174874
174967
|
}, [_vm._v("添加" + _vm._s(_vm.title))]) : _vm._e()], 2);
|
|
174875
174968
|
};
|
|
174876
|
-
var
|
|
174969
|
+
var Approvalvue_type_template_id_70f0872c_staticRenderFns = [];
|
|
174877
174970
|
|
|
174878
174971
|
// EXTERNAL MODULE: ./packages/util/nodeUtil.js + 13 modules
|
|
174879
174972
|
var util_nodeUtil = __webpack_require__(9295);
|
|
174880
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
174881
|
-
var
|
|
174973
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
174974
|
+
var FlowSelectvue_type_template_id_21c3729b_render = function render() {
|
|
174882
174975
|
var _vm = this,
|
|
174883
174976
|
_c = _vm._self._c;
|
|
174884
174977
|
return _c('a-select', {
|
|
174885
174978
|
staticClass: "w-fill",
|
|
174886
174979
|
attrs: {
|
|
174887
174980
|
"size": _vm.size,
|
|
174981
|
+
"filter-option": _vm.filterOption,
|
|
174888
174982
|
"show-search": "",
|
|
174889
174983
|
"mode": _vm.mode,
|
|
174984
|
+
"getPopupContainer": triggerNode => triggerNode.parentNode,
|
|
174890
174985
|
"allowClear": "",
|
|
174891
174986
|
"placeholder": _vm.placeholder
|
|
174892
174987
|
},
|
|
@@ -174901,12 +174996,12 @@ var FlowSelectvue_type_template_id_6f308b30_render = function render() {
|
|
|
174901
174996
|
expression: "currentValue"
|
|
174902
174997
|
}
|
|
174903
174998
|
}, [_vm._l(_vm.datas, function (data, i) {
|
|
174904
|
-
return [data
|
|
174999
|
+
return [_vm.dynamicChild(data)?.length > 0 ? _c('a-select-opt-group', {
|
|
174905
175000
|
key: 'group_' + data[_vm.labelName],
|
|
174906
175001
|
attrs: {
|
|
174907
175002
|
"label": data[_vm.labelName]
|
|
174908
175003
|
}
|
|
174909
|
-
}, _vm._l(data
|
|
175004
|
+
}, _vm._l(_vm.dynamicChild(data), function (childData, j) {
|
|
174910
175005
|
return _c('a-select-option', {
|
|
174911
175006
|
key: childData[_vm.labelName] + j,
|
|
174912
175007
|
attrs: {
|
|
@@ -174923,7 +175018,7 @@ var FlowSelectvue_type_template_id_6f308b30_render = function render() {
|
|
|
174923
175018
|
}, [_vm._v(" " + _vm._s(data[_vm.labelName]) + " ")])];
|
|
174924
175019
|
})], 2);
|
|
174925
175020
|
};
|
|
174926
|
-
var
|
|
175021
|
+
var FlowSelectvue_type_template_id_21c3729b_staticRenderFns = [];
|
|
174927
175022
|
|
|
174928
175023
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Component/FlowSelect.vue?vue&type=script&lang=js
|
|
174929
175024
|
/* harmony default export */ var FlowSelectvue_type_script_lang_js = ({
|
|
@@ -174979,6 +175074,9 @@ var FlowSelectvue_type_template_id_6f308b30_staticRenderFns = [];
|
|
|
174979
175074
|
this.initData(this.value);
|
|
174980
175075
|
},
|
|
174981
175076
|
methods: {
|
|
175077
|
+
dynamicChild(item) {
|
|
175078
|
+
return item?.children || item?.child;
|
|
175079
|
+
},
|
|
174982
175080
|
initData(value) {
|
|
174983
175081
|
if (value && value.length > 0 && this.mode == 'default') {
|
|
174984
175082
|
this.currentValue = value[0];
|
|
@@ -174991,10 +175089,22 @@ var FlowSelectvue_type_template_id_6f308b30_staticRenderFns = [];
|
|
|
174991
175089
|
onChange(value, option) {
|
|
174992
175090
|
this.$emit('input', this.mode == 'multiple' ? value : [value]);
|
|
174993
175091
|
let datas = this.datas.map(item => {
|
|
174994
|
-
return Array.isArray(item
|
|
175092
|
+
return Array.isArray(this.dynamicChild(item)) ? this.dynamicChild(item) : item;
|
|
174995
175093
|
}).flat().filter(data => this.mode == 'multiple' ? value.includes(data[this.valueName]) : data[this.valueName] == value).map(data => data[this.labelName]);
|
|
174996
|
-
this.$emit('update:name', this.mode == 'multiple' ? datas : datas[0]);
|
|
175094
|
+
this.$emit('update:name', this.mode == 'multiple' ? datas.join(', ') : datas[0]);
|
|
174997
175095
|
this.$emit('change', value, datas.filter(data => data[this.valueName] == value));
|
|
175096
|
+
},
|
|
175097
|
+
filterOption(input, option) {
|
|
175098
|
+
let optionText = option.componentOptions.children[0]?.text ?? '';
|
|
175099
|
+
// 如果当前节点是分组(a-select-optgroup)
|
|
175100
|
+
if (option.data && option.data.attrs && option.data.attrs.role === 'optgroup') {
|
|
175101
|
+
// 确保当前是具体的选项节点,再进行文本匹配
|
|
175102
|
+
// 这里使用 option.componentOptions.children[0].text 获取选项的显示文本
|
|
175103
|
+
optionText = option.componentOptions && option.componentOptions.children && option.componentOptions.children.length > 0 ? option.componentOptions.children[0].text : '';
|
|
175104
|
+
}
|
|
175105
|
+
|
|
175106
|
+
// 进行大小写不敏感的模糊匹配
|
|
175107
|
+
return optionText.toLowerCase().indexOf(input.toLowerCase()) >= 0;
|
|
174998
175108
|
}
|
|
174999
175109
|
}
|
|
175000
175110
|
});
|
|
@@ -175010,8 +175120,8 @@ var FlowSelectvue_type_template_id_6f308b30_staticRenderFns = [];
|
|
|
175010
175120
|
;
|
|
175011
175121
|
var FlowSelect_component = (0,componentNormalizer/* default */.A)(
|
|
175012
175122
|
Component_FlowSelectvue_type_script_lang_js,
|
|
175013
|
-
|
|
175014
|
-
|
|
175123
|
+
FlowSelectvue_type_template_id_21c3729b_render,
|
|
175124
|
+
FlowSelectvue_type_template_id_21c3729b_staticRenderFns,
|
|
175015
175125
|
false,
|
|
175016
175126
|
null,
|
|
175017
175127
|
null,
|
|
@@ -175438,34 +175548,34 @@ var FlowInput_component = (0,componentNormalizer/* default */.A)(
|
|
|
175438
175548
|
}],
|
|
175439
175549
|
// 上级层级
|
|
175440
175550
|
higherLevels: this.$store.state.flow.nodeConfigs?.superiorLevels ?? [],
|
|
175441
|
-
//
|
|
175551
|
+
// 组织负责人方式
|
|
175442
175552
|
departmentHeadModes: [{
|
|
175443
|
-
name: '
|
|
175553
|
+
name: '自下而上(以发起人的直接组织负责人为第一级)',
|
|
175444
175554
|
value: 1,
|
|
175445
175555
|
popovers: [{
|
|
175446
|
-
title: '
|
|
175447
|
-
content: '
|
|
175556
|
+
title: '什么是组织负责人 - 自下而上?',
|
|
175557
|
+
content: '以发起人的直接组织负责人为第一级,向更高管理层级递增'
|
|
175448
175558
|
}, {
|
|
175449
|
-
content: '
|
|
175559
|
+
content: '图示:若小王为发起人,则小张是小王的“直接组织负责人”,小李是小王的“第二级组织负责人”'
|
|
175450
175560
|
}]
|
|
175451
175561
|
}, {
|
|
175452
|
-
name: '
|
|
175562
|
+
name: '自下而上(以上一个节点的审批人的直接组织负责人为第一级)',
|
|
175453
175563
|
value: 2,
|
|
175454
175564
|
popovers: [{
|
|
175455
|
-
title: '
|
|
175456
|
-
content: '
|
|
175565
|
+
title: '什么是组织负责人 - 自下而上?',
|
|
175566
|
+
content: '以上一个节点的审批人的直接组织负责人为第一级,向更高管理层级递增'
|
|
175457
175567
|
}, {
|
|
175458
|
-
content: '
|
|
175568
|
+
content: '图示:若小王为上一个节点的审批人,则小张是小王的“直接组织负责人”,小李是小王的“第二级组织负责人”'
|
|
175459
175569
|
}]
|
|
175460
175570
|
}, {
|
|
175461
|
-
name: '
|
|
175571
|
+
name: '自上而下(以公司的最高组织负责人为第一级)',
|
|
175462
175572
|
code: 'higherLevel',
|
|
175463
175573
|
value: 3,
|
|
175464
175574
|
popovers: [{
|
|
175465
|
-
title: '
|
|
175466
|
-
content: '
|
|
175575
|
+
title: '什么是组织负责人 - 自上而下?',
|
|
175576
|
+
content: '以公司组织架构中的最高组织负责人为第一级,向更低管理层级递增'
|
|
175467
175577
|
}, {
|
|
175468
|
-
content: '
|
|
175578
|
+
content: '图示:若小王为发起人,则小赵是小王的“最高组织负责人”,小周是小王的“第二级组织负责人”'
|
|
175469
175579
|
}]
|
|
175470
175580
|
}],
|
|
175471
175581
|
// 部门负责人层级
|
|
@@ -175643,8 +175753,8 @@ var FlowInput_component = (0,componentNormalizer/* default */.A)(
|
|
|
175643
175753
|
;
|
|
175644
175754
|
var Approval_component = (0,componentNormalizer/* default */.A)(
|
|
175645
175755
|
Approver_Approvalvue_type_script_lang_js,
|
|
175646
|
-
|
|
175647
|
-
|
|
175756
|
+
Approvalvue_type_template_id_70f0872c_render,
|
|
175757
|
+
Approvalvue_type_template_id_70f0872c_staticRenderFns,
|
|
175648
175758
|
false,
|
|
175649
175759
|
null,
|
|
175650
175760
|
null,
|
|
@@ -176043,8 +176153,8 @@ var EditName_component = (0,componentNormalizer/* default */.A)(
|
|
|
176043
176153
|
)
|
|
176044
176154
|
|
|
176045
176155
|
/* harmony default export */ var EditName = (EditName_component.exports);
|
|
176046
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
176047
|
-
var
|
|
176156
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
176157
|
+
var AuthFormvue_type_template_id_2f522221_render = function render() {
|
|
176048
176158
|
var _vm = this,
|
|
176049
176159
|
_c = _vm._self._c;
|
|
176050
176160
|
return _c('div', {
|
|
@@ -176092,7 +176202,7 @@ var AuthFormvue_type_template_id_040acf86_render = function render() {
|
|
|
176092
176202
|
"checked": _vm.hidableChecked
|
|
176093
176203
|
},
|
|
176094
176204
|
on: {
|
|
176095
|
-
"change": _vm.
|
|
176205
|
+
"change": _vm.onAllHidableChange
|
|
176096
176206
|
}
|
|
176097
176207
|
}, [_vm._v(" 隐藏 ")])], 1), _vm.readable ? _c('div', {
|
|
176098
176208
|
class: {
|
|
@@ -176182,7 +176292,7 @@ var AuthFormvue_type_template_id_040acf86_render = function render() {
|
|
|
176182
176292
|
}, [_vm._v(" 必填 ")])], 1) : _vm._e()])]);
|
|
176183
176293
|
}), 0)]);
|
|
176184
176294
|
};
|
|
176185
|
-
var
|
|
176295
|
+
var AuthFormvue_type_template_id_2f522221_staticRenderFns = [];
|
|
176186
176296
|
|
|
176187
176297
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/Common/AuthForm.vue?vue&type=script&lang=js
|
|
176188
176298
|
|
|
@@ -176209,7 +176319,7 @@ var AuthFormvue_type_template_id_040acf86_staticRenderFns = [];
|
|
|
176209
176319
|
},
|
|
176210
176320
|
data() {
|
|
176211
176321
|
return {
|
|
176212
|
-
fields: this.value
|
|
176322
|
+
fields: this.value.filter(item => item?.form_name)
|
|
176213
176323
|
};
|
|
176214
176324
|
},
|
|
176215
176325
|
computed: {
|
|
@@ -176258,7 +176368,7 @@ var AuthFormvue_type_template_id_040acf86_staticRenderFns = [];
|
|
|
176258
176368
|
* 全选隐藏
|
|
176259
176369
|
* @param {*} e
|
|
176260
176370
|
*/
|
|
176261
|
-
|
|
176371
|
+
onAllHidableChange(e) {
|
|
176262
176372
|
this.fields.forEach((item, i) => {
|
|
176263
176373
|
this.hidableChange(e, item, i);
|
|
176264
176374
|
});
|
|
@@ -176350,8 +176460,8 @@ var AuthFormvue_type_template_id_040acf86_staticRenderFns = [];
|
|
|
176350
176460
|
;
|
|
176351
176461
|
var AuthForm_component = (0,componentNormalizer/* default */.A)(
|
|
176352
176462
|
Common_AuthFormvue_type_script_lang_js,
|
|
176353
|
-
|
|
176354
|
-
|
|
176463
|
+
AuthFormvue_type_template_id_2f522221_render,
|
|
176464
|
+
AuthFormvue_type_template_id_2f522221_staticRenderFns,
|
|
176355
176465
|
false,
|
|
176356
176466
|
null,
|
|
176357
176467
|
null,
|
|
@@ -176565,8 +176675,8 @@ var AuthForm_component = (0,componentNormalizer/* default */.A)(
|
|
|
176565
176675
|
;
|
|
176566
176676
|
var Approver_component = (0,componentNormalizer/* default */.A)(
|
|
176567
176677
|
FlowDrawer_Approvervue_type_script_lang_js,
|
|
176568
|
-
|
|
176569
|
-
|
|
176678
|
+
Approvervue_type_template_id_69a89c58_render,
|
|
176679
|
+
Approvervue_type_template_id_69a89c58_staticRenderFns,
|
|
176570
176680
|
false,
|
|
176571
176681
|
null,
|
|
176572
176682
|
null,
|
|
@@ -176575,13 +176685,13 @@ var Approver_component = (0,componentNormalizer/* default */.A)(
|
|
|
176575
176685
|
)
|
|
176576
176686
|
|
|
176577
176687
|
/* harmony default export */ var Approver = (Approver_component.exports);
|
|
176578
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
176579
|
-
var
|
|
176688
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
176689
|
+
var Conditionvue_type_template_id_559606a9_render = function render() {
|
|
176580
176690
|
var _vm = this,
|
|
176581
176691
|
_c = _vm._self._c;
|
|
176582
176692
|
return _vm.node.attr ? _c('a-drawer', {
|
|
176583
176693
|
attrs: {
|
|
176584
|
-
"width": _vm.drawerWidth(),
|
|
176694
|
+
"width": _vm.drawerWidth('45vw'),
|
|
176585
176695
|
"headerStyle": _vm.headerStyle,
|
|
176586
176696
|
"bodyStyle": _vm.bodyStyle,
|
|
176587
176697
|
"placement": "right",
|
|
@@ -176685,7 +176795,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176685
176795
|
"update:name": function ($event) {
|
|
176686
176796
|
return _vm.$set(condition, "columnName", $event);
|
|
176687
176797
|
},
|
|
176688
|
-
"change": _vm.handleColumnFieldChange
|
|
176798
|
+
"change": (value, option) => _vm.handleColumnFieldChange(value, option, group, condition)
|
|
176689
176799
|
},
|
|
176690
176800
|
model: {
|
|
176691
176801
|
value: condition.columnValue,
|
|
@@ -176739,10 +176849,32 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176739
176849
|
}
|
|
176740
176850
|
}), _c('div', {
|
|
176741
176851
|
staticClass: "flow-setting-condition-value"
|
|
176742
|
-
}, [condition.valueType == 2 ? _c(
|
|
176852
|
+
}, [condition.valueType == 2 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _c(_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.renderObject, {
|
|
176853
|
+
tag: "component",
|
|
176854
|
+
attrs: {
|
|
176855
|
+
"name": condition.conditionValueName,
|
|
176856
|
+
"datas": condition.conditionValueDatas
|
|
176857
|
+
},
|
|
176858
|
+
on: {
|
|
176859
|
+
"update:name": function ($event) {
|
|
176860
|
+
return _vm.$set(condition, "conditionValueName", $event);
|
|
176861
|
+
},
|
|
176862
|
+
"update:datas": function ($event) {
|
|
176863
|
+
return _vm.$set(condition, "conditionValueDatas", $event);
|
|
176864
|
+
}
|
|
176865
|
+
},
|
|
176866
|
+
model: {
|
|
176867
|
+
value: condition.conditionValue,
|
|
176868
|
+
callback: function ($$v) {
|
|
176869
|
+
_vm.$set(condition, "conditionValue", $$v);
|
|
176870
|
+
},
|
|
176871
|
+
expression: "condition.conditionValue"
|
|
176872
|
+
}
|
|
176873
|
+
}) : _c('FlowSelect', {
|
|
176743
176874
|
attrs: {
|
|
176744
176875
|
"name": condition.conditionValueName,
|
|
176745
176876
|
"datas": _vm.optionValueTypes,
|
|
176877
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
176746
176878
|
"labelName": "label"
|
|
176747
176879
|
},
|
|
176748
176880
|
on: {
|
|
@@ -176757,7 +176889,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176757
176889
|
},
|
|
176758
176890
|
expression: "condition.conditionValue"
|
|
176759
176891
|
}
|
|
176760
|
-
}) : condition.valueType == 3 ? _c('FlowSelect', {
|
|
176892
|
+
})] : condition.valueType == 3 ? _c('FlowSelect', {
|
|
176761
176893
|
attrs: {
|
|
176762
176894
|
"name": condition.conditionValueName,
|
|
176763
176895
|
"datas": _vm.flowValueTypes,
|
|
@@ -176775,10 +176907,32 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176775
176907
|
},
|
|
176776
176908
|
expression: "condition.conditionValue"
|
|
176777
176909
|
}
|
|
176778
|
-
}) : condition.valueType == 4 ? _c(
|
|
176910
|
+
}) : condition.valueType == 4 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _c(_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.renderObject, {
|
|
176911
|
+
tag: "component",
|
|
176912
|
+
attrs: {
|
|
176913
|
+
"name": condition.conditionValueName,
|
|
176914
|
+
"datas": condition.conditionValueDatas
|
|
176915
|
+
},
|
|
176916
|
+
on: {
|
|
176917
|
+
"update:name": function ($event) {
|
|
176918
|
+
return _vm.$set(condition, "conditionValueName", $event);
|
|
176919
|
+
},
|
|
176920
|
+
"update:datas": function ($event) {
|
|
176921
|
+
return _vm.$set(condition, "conditionValueDatas", $event);
|
|
176922
|
+
}
|
|
176923
|
+
},
|
|
176924
|
+
model: {
|
|
176925
|
+
value: condition.conditionValue,
|
|
176926
|
+
callback: function ($$v) {
|
|
176927
|
+
_vm.$set(condition, "conditionValue", $$v);
|
|
176928
|
+
},
|
|
176929
|
+
expression: "condition.conditionValue"
|
|
176930
|
+
}
|
|
176931
|
+
}) : _c('FlowSelect', {
|
|
176779
176932
|
attrs: {
|
|
176780
176933
|
"name": condition.conditionValueName,
|
|
176781
176934
|
"datas": _vm.dataSourceOptions,
|
|
176935
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
176782
176936
|
"labelName": "label"
|
|
176783
176937
|
},
|
|
176784
176938
|
on: {
|
|
@@ -176793,7 +176947,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176793
176947
|
},
|
|
176794
176948
|
expression: "condition.conditionValue"
|
|
176795
176949
|
}
|
|
176796
|
-
}) : _c('FlowInput', {
|
|
176950
|
+
})] : _c('FlowInput', {
|
|
176797
176951
|
attrs: {
|
|
176798
176952
|
"name": condition.conditionValueName,
|
|
176799
176953
|
"size": _vm.size
|
|
@@ -176810,7 +176964,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176810
176964
|
},
|
|
176811
176965
|
expression: "condition.conditionValue"
|
|
176812
176966
|
}
|
|
176813
|
-
})],
|
|
176967
|
+
})], 2)], 1), _c('div', {
|
|
176814
176968
|
staticClass: "flow-setting-condition-del",
|
|
176815
176969
|
on: {
|
|
176816
176970
|
"click": function ($event) {
|
|
@@ -176954,7 +177108,7 @@ var Conditionvue_type_template_id_6b0e154e_render = function render() {
|
|
|
176954
177108
|
}
|
|
176955
177109
|
})], 2) : _vm._e();
|
|
176956
177110
|
};
|
|
176957
|
-
var
|
|
177111
|
+
var Conditionvue_type_template_id_559606a9_staticRenderFns = [];
|
|
176958
177112
|
|
|
176959
177113
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Condition/index.vue?vue&type=script&lang=js
|
|
176960
177114
|
|
|
@@ -177036,6 +177190,12 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177036
177190
|
}, {
|
|
177037
177191
|
label: '小于等于',
|
|
177038
177192
|
value: 'lte'
|
|
177193
|
+
}, {
|
|
177194
|
+
label: '包含(属于)',
|
|
177195
|
+
value: 'contains'
|
|
177196
|
+
}, {
|
|
177197
|
+
label: '不包含(不属于)',
|
|
177198
|
+
value: 'not_contains'
|
|
177039
177199
|
}
|
|
177040
177200
|
/* { label: '为空', value: '7' },
|
|
177041
177201
|
{ label: '不为空', value: '8' }, */],
|
|
@@ -177101,19 +177261,25 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177101
177261
|
};
|
|
177102
177262
|
},
|
|
177103
177263
|
computed: {
|
|
177264
|
+
commonConditionFields() {
|
|
177265
|
+
return this.$store.state.flow.nodeConfigs.conditionFieldList;
|
|
177266
|
+
},
|
|
177104
177267
|
fieldList() {
|
|
177105
|
-
|
|
177106
|
-
let
|
|
177268
|
+
/* 条件 表单字段 */
|
|
177269
|
+
let list = this.commonConditionFields;
|
|
177270
|
+
let formFields = (this.node?.privileges ?? []).filter(p => p?.condition_name);
|
|
177271
|
+
let formFieldList = [];
|
|
177107
177272
|
if (formFields.length > 0) {
|
|
177108
|
-
|
|
177273
|
+
formFieldList.push({
|
|
177109
177274
|
label: '表单字段',
|
|
177110
177275
|
children: formFields.map(item => ({
|
|
177111
|
-
|
|
177112
|
-
|
|
177276
|
+
...item,
|
|
177277
|
+
label: item?.form_name ?? item?.label,
|
|
177278
|
+
value: item.condition_name
|
|
177113
177279
|
}))
|
|
177114
177280
|
});
|
|
177115
177281
|
}
|
|
177116
|
-
return list;
|
|
177282
|
+
return [...list, ...formFieldList];
|
|
177117
177283
|
}
|
|
177118
177284
|
},
|
|
177119
177285
|
methods: {
|
|
@@ -177135,21 +177301,15 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177135
177301
|
this.visible = false;
|
|
177136
177302
|
this.$emit('close');
|
|
177137
177303
|
},
|
|
177138
|
-
handleColumnFieldChange(value, option) {
|
|
177304
|
+
handleColumnFieldChange(value, option, index) {
|
|
177139
177305
|
console.warn('handleColumnFieldChange(value,option)=>', value, option);
|
|
177140
177306
|
this.dataSourceOptions.splice(0, this.dataSourceOptions.length);
|
|
177141
177307
|
this.$nextTick(() => {
|
|
177142
|
-
this.
|
|
177143
|
-
|
|
177144
|
-
|
|
177145
|
-
|
|
177146
|
-
|
|
177147
|
-
'label': item?.label || item.name,
|
|
177148
|
-
'value': item?.value || item.id
|
|
177149
|
-
};
|
|
177150
|
-
})
|
|
177151
|
-
};
|
|
177152
|
-
}));
|
|
177308
|
+
// this.$set(this.node.groupConditions[group])
|
|
177309
|
+
condition.conditionValue = undefined;
|
|
177310
|
+
condition.conditionValueName = undefined;
|
|
177311
|
+
const optionList = Array.isArray(option?.dataSource) ? option.dataSource : this.$store.state.flow.nodeConfigs[option.dataSource];
|
|
177312
|
+
this.dataSourceOptions.splice(0, this.dataSourceOptions.length, ...optionList);
|
|
177153
177313
|
});
|
|
177154
177314
|
},
|
|
177155
177315
|
addGroup(type) {
|
|
@@ -177167,7 +177327,8 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177167
177327
|
optTypeName: undefined,
|
|
177168
177328
|
valueType: undefined,
|
|
177169
177329
|
conditionValue: [],
|
|
177170
|
-
conditionValueName: []
|
|
177330
|
+
conditionValueName: [],
|
|
177331
|
+
conditionValueDatas: []
|
|
177171
177332
|
}]
|
|
177172
177333
|
});
|
|
177173
177334
|
// }
|
|
@@ -177186,7 +177347,8 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177186
177347
|
optTypeName: undefined,
|
|
177187
177348
|
valueType: undefined,
|
|
177188
177349
|
conditionValue: [],
|
|
177189
|
-
conditionValueName: []
|
|
177350
|
+
conditionValueName: [],
|
|
177351
|
+
conditionValueDatas: []
|
|
177190
177352
|
});
|
|
177191
177353
|
}
|
|
177192
177354
|
});
|
|
@@ -177305,8 +177467,8 @@ var Conditionvue_type_template_id_6b0e154e_staticRenderFns = [];
|
|
|
177305
177467
|
;
|
|
177306
177468
|
var Condition_component = (0,componentNormalizer/* default */.A)(
|
|
177307
177469
|
FlowDrawer_Conditionvue_type_script_lang_js,
|
|
177308
|
-
|
|
177309
|
-
|
|
177470
|
+
Conditionvue_type_template_id_559606a9_render,
|
|
177471
|
+
Conditionvue_type_template_id_559606a9_staticRenderFns,
|
|
177310
177472
|
false,
|
|
177311
177473
|
null,
|
|
177312
177474
|
null,
|
|
@@ -178642,13 +178804,13 @@ var Notice_component = (0,componentNormalizer/* default */.A)(
|
|
|
178642
178804
|
)
|
|
178643
178805
|
|
|
178644
178806
|
/* harmony default export */ var FlowDrawer_Notice = (Notice_component.exports);
|
|
178645
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
178646
|
-
var
|
|
178807
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
178808
|
+
var Branchvue_type_template_id_2668f886_render = function render() {
|
|
178647
178809
|
var _vm = this,
|
|
178648
178810
|
_c = _vm._self._c;
|
|
178649
178811
|
return _vm.node.attr ? _c('a-drawer', {
|
|
178650
178812
|
attrs: {
|
|
178651
|
-
"width": _vm.drawerWidth(),
|
|
178813
|
+
"width": _vm.drawerWidth('45vw'),
|
|
178652
178814
|
"headerStyle": _vm.headerStyle,
|
|
178653
178815
|
"bodyStyle": _vm.bodyStyle,
|
|
178654
178816
|
"placement": "right",
|
|
@@ -178725,7 +178887,13 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178725
178887
|
"value": branchType.value
|
|
178726
178888
|
}
|
|
178727
178889
|
}, [_vm._v(" " + _vm._s(branchType.label) + " ")]);
|
|
178728
|
-
}), 1)], 1), _vm.node.attr.branchType ==
|
|
178890
|
+
}), 1)], 1), _vm.node.attr.branchType == 3 ? [_c('div', {
|
|
178891
|
+
staticClass: "flow-setting-item"
|
|
178892
|
+
}, [_c('p', {
|
|
178893
|
+
staticClass: "flow-setting-item-title"
|
|
178894
|
+
}, [_vm._v("默认条件")]), _c('div', {
|
|
178895
|
+
staticClass: "flow-setting-condition-box"
|
|
178896
|
+
}, [_vm._v("表示该条件永远为真,一般是优先级排最后的条件")])])] : [_vm.node.attr.branchType == 1 ? _c('div', {
|
|
178729
178897
|
staticClass: "flow-setting-item"
|
|
178730
178898
|
}, [_c('p', {
|
|
178731
178899
|
staticClass: "flow-setting-item-title"
|
|
@@ -178755,7 +178923,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178755
178923
|
"update:name": function ($event) {
|
|
178756
178924
|
return _vm.$set(condition, "columnName", $event);
|
|
178757
178925
|
},
|
|
178758
|
-
"change": _vm.handleColumnFieldChange
|
|
178926
|
+
"change": (value, option) => _vm.handleColumnFieldChange(value, option, group, condition)
|
|
178759
178927
|
},
|
|
178760
178928
|
model: {
|
|
178761
178929
|
value: condition.columnValue,
|
|
@@ -178809,10 +178977,18 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178809
178977
|
}
|
|
178810
178978
|
}), _c('div', {
|
|
178811
178979
|
staticClass: "flow-setting-condition-value"
|
|
178812
|
-
}, [condition.valueType == 2 ?
|
|
178980
|
+
}, [condition.valueType == 2 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _vm._t("conditionComponent", null, {
|
|
178981
|
+
"value": condition.conditionValue,
|
|
178982
|
+
"selectItem": (value, name, datas) => _vm.conditionComponentSelect(value, name, datas, condition),
|
|
178983
|
+
"datas": condition.conditionValueDatas,
|
|
178984
|
+
"showValue": condition.conditionValueName,
|
|
178985
|
+
"field": _vm.flattenFieldList.find(item => item.value === condition.columnValue),
|
|
178986
|
+
"type": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component
|
|
178987
|
+
}) : _c('FlowSelect', {
|
|
178813
178988
|
attrs: {
|
|
178814
178989
|
"name": condition.conditionValueName,
|
|
178815
178990
|
"datas": _vm.optionValueTypes,
|
|
178991
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
178816
178992
|
"labelName": "label"
|
|
178817
178993
|
},
|
|
178818
178994
|
on: {
|
|
@@ -178827,7 +179003,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178827
179003
|
},
|
|
178828
179004
|
expression: "condition.conditionValue"
|
|
178829
179005
|
}
|
|
178830
|
-
}) : condition.valueType == 3 ? _c('FlowSelect', {
|
|
179006
|
+
})] : condition.valueType == 3 ? _c('FlowSelect', {
|
|
178831
179007
|
attrs: {
|
|
178832
179008
|
"name": condition.conditionValueName,
|
|
178833
179009
|
"datas": _vm.flowValueTypes,
|
|
@@ -178845,10 +179021,18 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178845
179021
|
},
|
|
178846
179022
|
expression: "condition.conditionValue"
|
|
178847
179023
|
}
|
|
178848
|
-
}) : condition.valueType == 4 ?
|
|
179024
|
+
}) : condition.valueType == 4 ? [_vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component ? _vm._t("conditionComponent", null, {
|
|
179025
|
+
"value": condition.conditionValue,
|
|
179026
|
+
"selectItem": (value, name, datas) => _vm.conditionComponentSelect(value, name, datas, condition),
|
|
179027
|
+
"datas": condition.conditionValueDatas,
|
|
179028
|
+
"showValue": condition.conditionValueName,
|
|
179029
|
+
"field": _vm.flattenFieldList.find(item => item.value === condition.columnValue),
|
|
179030
|
+
"type": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.component
|
|
179031
|
+
}) : _c('FlowSelect', {
|
|
178849
179032
|
attrs: {
|
|
178850
179033
|
"name": condition.conditionValueName,
|
|
178851
179034
|
"datas": _vm.dataSourceOptions,
|
|
179035
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
178852
179036
|
"labelName": "label"
|
|
178853
179037
|
},
|
|
178854
179038
|
on: {
|
|
@@ -178863,7 +179047,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178863
179047
|
},
|
|
178864
179048
|
expression: "condition.conditionValue"
|
|
178865
179049
|
}
|
|
178866
|
-
}) : _c('FlowInput', {
|
|
179050
|
+
})] : _c('FlowInput', {
|
|
178867
179051
|
attrs: {
|
|
178868
179052
|
"name": condition.conditionValueName,
|
|
178869
179053
|
"size": _vm.size
|
|
@@ -178880,7 +179064,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
178880
179064
|
},
|
|
178881
179065
|
expression: "condition.conditionValue"
|
|
178882
179066
|
}
|
|
178883
|
-
})],
|
|
179067
|
+
})], 2)], 1), _c('div', {
|
|
178884
179068
|
staticClass: "flow-setting-condition-del",
|
|
178885
179069
|
on: {
|
|
178886
179070
|
"click": function ($event) {
|
|
@@ -179010,7 +179194,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
179010
179194
|
staticStyle: {
|
|
179011
179195
|
"margin-left": "5px"
|
|
179012
179196
|
}
|
|
179013
|
-
}, [_vm._v("或条件")])], 1)], 2)])])]), _c('PreCodeShow', {
|
|
179197
|
+
}, [_vm._v("或条件")])], 1)], 2)])]], 2)]), _c('PreCodeShow', {
|
|
179014
179198
|
staticStyle: {
|
|
179015
179199
|
"display": "none"
|
|
179016
179200
|
},
|
|
@@ -179024,7 +179208,7 @@ var Branchvue_type_template_id_17e41709_render = function render() {
|
|
|
179024
179208
|
}
|
|
179025
179209
|
})], 2) : _vm._e();
|
|
179026
179210
|
};
|
|
179027
|
-
var
|
|
179211
|
+
var Branchvue_type_template_id_2668f886_staticRenderFns = [];
|
|
179028
179212
|
|
|
179029
179213
|
;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDrawer/Branch/index.vue?vue&type=script&lang=js
|
|
179030
179214
|
|
|
@@ -179061,9 +179245,10 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179061
179245
|
}, {
|
|
179062
179246
|
label: '公式',
|
|
179063
179247
|
value: 2
|
|
179064
|
-
}
|
|
179065
|
-
|
|
179066
|
-
|
|
179248
|
+
}, {
|
|
179249
|
+
label: '默认条件',
|
|
179250
|
+
value: 3
|
|
179251
|
+
}],
|
|
179067
179252
|
optTypes: [{
|
|
179068
179253
|
label: '等于',
|
|
179069
179254
|
value: 'eq'
|
|
@@ -179082,6 +179267,12 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179082
179267
|
}, {
|
|
179083
179268
|
label: '小于等于',
|
|
179084
179269
|
value: 'le'
|
|
179270
|
+
}, {
|
|
179271
|
+
label: '包含(属于)',
|
|
179272
|
+
value: 'contains'
|
|
179273
|
+
}, {
|
|
179274
|
+
label: '不包含(不属于)',
|
|
179275
|
+
value: 'not_contains'
|
|
179085
179276
|
}
|
|
179086
179277
|
/* { label: '为空', value: '7' },
|
|
179087
179278
|
{ label: '不为空', value: '8' }, */],
|
|
@@ -179203,15 +179394,26 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179203
179394
|
formFieldList.push({
|
|
179204
179395
|
label: '表单字段',
|
|
179205
179396
|
children: formFields.map(item => ({
|
|
179206
|
-
|
|
179397
|
+
...item,
|
|
179398
|
+
label: item?.form_name ?? item?.label,
|
|
179207
179399
|
value: item.condition_name
|
|
179208
179400
|
}))
|
|
179209
179401
|
});
|
|
179210
179402
|
}
|
|
179211
179403
|
return [...list, ...formFieldList];
|
|
179404
|
+
},
|
|
179405
|
+
flattenFieldList() {
|
|
179406
|
+
return this.fieldList.reduce((acc, curr) => {
|
|
179407
|
+
return acc.concat(curr?.children || curr);
|
|
179408
|
+
}, []);
|
|
179212
179409
|
}
|
|
179213
179410
|
},
|
|
179214
179411
|
methods: {
|
|
179412
|
+
conditionComponentSelect(value, name, datas, condition) {
|
|
179413
|
+
condition.conditionValue = value;
|
|
179414
|
+
condition.conditionValueName = name;
|
|
179415
|
+
condition.conditionValueDatas = datas;
|
|
179416
|
+
},
|
|
179215
179417
|
levelOptionChange(val) {
|
|
179216
179418
|
const findLevelOption = this.levelOptions.find(item => item.value.toString() === val.toString());
|
|
179217
179419
|
this.node.attr.priorityLevelName = findLevelOption?.label ?? findLevelOption?.name;
|
|
@@ -179252,21 +179454,15 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179252
179454
|
this.visible = false;
|
|
179253
179455
|
this.$emit('close');
|
|
179254
179456
|
},
|
|
179255
|
-
handleColumnFieldChange(value, option) {
|
|
179457
|
+
handleColumnFieldChange(value, option, group, condition) {
|
|
179256
179458
|
console.warn('handleColumnFieldChange(value,option)=>', value, option);
|
|
179257
179459
|
this.dataSourceOptions.splice(0, this.dataSourceOptions.length);
|
|
179258
179460
|
this.$nextTick(() => {
|
|
179259
|
-
this.
|
|
179260
|
-
|
|
179261
|
-
|
|
179262
|
-
|
|
179263
|
-
|
|
179264
|
-
'label': item?.label || item.name,
|
|
179265
|
-
'value': item?.value || item.id
|
|
179266
|
-
};
|
|
179267
|
-
})
|
|
179268
|
-
};
|
|
179269
|
-
}));
|
|
179461
|
+
// this.$set(this.node.groupConditions[group])
|
|
179462
|
+
condition.conditionValue = undefined;
|
|
179463
|
+
condition.conditionValueName = undefined;
|
|
179464
|
+
const optionList = Array.isArray(option?.dataSource) ? option.dataSource : this.$store.state.flow.nodeConfigs[option.dataSource];
|
|
179465
|
+
this.dataSourceOptions.splice(0, this.dataSourceOptions.length, ...(optionList || []));
|
|
179270
179466
|
});
|
|
179271
179467
|
},
|
|
179272
179468
|
addGroup(type) {
|
|
@@ -179284,7 +179480,8 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179284
179480
|
optTypeName: undefined,
|
|
179285
179481
|
valueType: undefined,
|
|
179286
179482
|
conditionValue: [],
|
|
179287
|
-
conditionValueName: []
|
|
179483
|
+
conditionValueName: [],
|
|
179484
|
+
conditionValueDatas: []
|
|
179288
179485
|
}]
|
|
179289
179486
|
});
|
|
179290
179487
|
// }
|
|
@@ -179303,7 +179500,8 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179303
179500
|
optTypeName: undefined,
|
|
179304
179501
|
valueType: undefined,
|
|
179305
179502
|
conditionValue: [],
|
|
179306
|
-
conditionValueName: []
|
|
179503
|
+
conditionValueName: [],
|
|
179504
|
+
conditionValueDatas: []
|
|
179307
179505
|
});
|
|
179308
179506
|
}
|
|
179309
179507
|
});
|
|
@@ -179361,23 +179559,28 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179361
179559
|
}
|
|
179362
179560
|
});
|
|
179363
179561
|
} else {
|
|
179364
|
-
this.node.
|
|
179365
|
-
|
|
179366
|
-
|
|
179367
|
-
|
|
179368
|
-
|
|
179369
|
-
group.conditions.
|
|
179370
|
-
|
|
179371
|
-
|
|
179372
|
-
if (i != 0) {
|
|
179373
|
-
content += ' 且 ';
|
|
179374
|
-
}
|
|
179375
|
-
content += '[' + conditionValueName + ']';
|
|
179562
|
+
if (this.node.attr.branchType == 3) {
|
|
179563
|
+
this.node.conditionGroup = [];
|
|
179564
|
+
content = '默认条件<永为真>';
|
|
179565
|
+
} else {
|
|
179566
|
+
this.node.conditionGroup.forEach((group, j) => {
|
|
179567
|
+
if (group.conditions.length > 0) {
|
|
179568
|
+
if (j != 0) {
|
|
179569
|
+
content += ' 或 ';
|
|
179376
179570
|
}
|
|
179377
|
-
|
|
179378
|
-
|
|
179379
|
-
|
|
179380
|
-
|
|
179571
|
+
group.conditions.forEach((condition, i) => {
|
|
179572
|
+
const conditionValueName = typeof condition.conditionValueName === 'string' ? condition.conditionValueName : condition.conditionValueName[0];
|
|
179573
|
+
if (conditionValueName) {
|
|
179574
|
+
if (i != 0) {
|
|
179575
|
+
content += ' 且 ';
|
|
179576
|
+
}
|
|
179577
|
+
content += '[' + conditionValueName + ']';
|
|
179578
|
+
}
|
|
179579
|
+
});
|
|
179580
|
+
}
|
|
179581
|
+
});
|
|
179582
|
+
if (content.trim().length === 0) content += '任意(其他)';
|
|
179583
|
+
}
|
|
179381
179584
|
}
|
|
179382
179585
|
this.$store.dispatch('flow/updateNode', {
|
|
179383
179586
|
currNode: this.node,
|
|
@@ -179423,8 +179626,8 @@ var Branchvue_type_template_id_17e41709_staticRenderFns = [];
|
|
|
179423
179626
|
;
|
|
179424
179627
|
var Branch_component = (0,componentNormalizer/* default */.A)(
|
|
179425
179628
|
FlowDrawer_Branchvue_type_script_lang_js,
|
|
179426
|
-
|
|
179427
|
-
|
|
179629
|
+
Branchvue_type_template_id_2668f886_render,
|
|
179630
|
+
Branchvue_type_template_id_2668f886_staticRenderFns,
|
|
179428
179631
|
false,
|
|
179429
179632
|
null,
|
|
179430
179633
|
null,
|
|
@@ -179864,10 +180067,10 @@ function registerWrite(lf) {
|
|
|
179864
180067
|
});
|
|
179865
180068
|
;// ./packages/FlowNode/baseNode.vue?vue&type=script&lang=js
|
|
179866
180069
|
/* harmony default export */ var FlowNode_baseNodevue_type_script_lang_js = (baseNodevue_type_script_lang_js);
|
|
179867
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowNode/baseNode.vue?vue&type=style&index=0&id=
|
|
180070
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/less-loader/dist/cjs.js??clonedRuleSet-32.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
|
|
179868
180071
|
// extracted by mini-css-extract-plugin
|
|
179869
180072
|
|
|
179870
|
-
;// ./packages/FlowNode/baseNode.vue?vue&type=style&index=0&id=
|
|
180073
|
+
;// ./packages/FlowNode/baseNode.vue?vue&type=style&index=0&id=55b34434&prod&scoped=true&lang=less
|
|
179871
180074
|
|
|
179872
180075
|
;// ./packages/FlowNode/baseNode.vue
|
|
179873
180076
|
|
|
@@ -179880,11 +180083,11 @@ function registerWrite(lf) {
|
|
|
179880
180083
|
|
|
179881
180084
|
var baseNode_component = (0,componentNormalizer/* default */.A)(
|
|
179882
180085
|
FlowNode_baseNodevue_type_script_lang_js,
|
|
179883
|
-
|
|
179884
|
-
|
|
180086
|
+
baseNodevue_type_template_id_55b34434_scoped_true_render,
|
|
180087
|
+
baseNodevue_type_template_id_55b34434_scoped_true_staticRenderFns,
|
|
179885
180088
|
false,
|
|
179886
180089
|
null,
|
|
179887
|
-
"
|
|
180090
|
+
"55b34434",
|
|
179888
180091
|
null
|
|
179889
180092
|
|
|
179890
180093
|
)
|
|
@@ -181101,6 +181304,30 @@ class graph_Graph {
|
|
|
181101
181304
|
this.selectedNodes = [];
|
|
181102
181305
|
this.hoveredNodes = [];
|
|
181103
181306
|
}
|
|
181307
|
+
updateWriteNodeProperties(nodes, formList) {
|
|
181308
|
+
//更新write 节点的表单数据
|
|
181309
|
+
const graphWriteNodeIndex = nodes.findIndex(n => n.type === 'write');
|
|
181310
|
+
const graphFirstNode = nodes[graphWriteNodeIndex] ?? null;
|
|
181311
|
+
const properties = graphFirstNode?.properties ?? null;
|
|
181312
|
+
if (graphFirstNode && properties) {
|
|
181313
|
+
const formDesignData = properties.formDesignData ?? {};
|
|
181314
|
+
const form = formList.find(item => item.value?.toString() === formDesignData?.chooseFormId?.toString());
|
|
181315
|
+
if (form && formDesignData?.chooseFormId) {
|
|
181316
|
+
if (form?.fields && form?.fields.length > 0) {
|
|
181317
|
+
properties['formDesignData']['fields'] = Array.isArray(form.fields) ? form.fields : JSON.parse(form.fields);
|
|
181318
|
+
}
|
|
181319
|
+
properties['formDesignData']['privilegeFields'] = Array.isArray(form.privilege_fields) ? form.privilege_fields : JSON.parse(form.privilege_fields);
|
|
181320
|
+
let privilegeFields = form.privilege_fields;
|
|
181321
|
+
if (Array.isArray(privilegeFields)) {
|
|
181322
|
+
privilegeFields = JSON.stringify(privilegeFields);
|
|
181323
|
+
}
|
|
181324
|
+
properties['formDesignData']['privilegeFields'] = JSON.parse(privilegeFields);
|
|
181325
|
+
graphFirstNode.properties = properties;
|
|
181326
|
+
nodes[graphWriteNodeIndex] = graphFirstNode;
|
|
181327
|
+
}
|
|
181328
|
+
}
|
|
181329
|
+
return nodes;
|
|
181330
|
+
}
|
|
181104
181331
|
|
|
181105
181332
|
/**
|
|
181106
181333
|
* 当选中左侧画布组件时,选中逻辑图上对应节点
|
|
@@ -181658,6 +181885,10 @@ window.LogicFlow = core_es;
|
|
|
181658
181885
|
return null;
|
|
181659
181886
|
}
|
|
181660
181887
|
},
|
|
181888
|
+
height: {
|
|
181889
|
+
type: String,
|
|
181890
|
+
default: ''
|
|
181891
|
+
},
|
|
181661
181892
|
navable: {
|
|
181662
181893
|
type: Boolean,
|
|
181663
181894
|
default: true
|
|
@@ -181707,7 +181938,8 @@ window.LogicFlow = core_es;
|
|
|
181707
181938
|
lf: null,
|
|
181708
181939
|
renderData: null,
|
|
181709
181940
|
currentModel: null,
|
|
181710
|
-
mapShow: false
|
|
181941
|
+
mapShow: false,
|
|
181942
|
+
initFinished: false
|
|
181711
181943
|
};
|
|
181712
181944
|
},
|
|
181713
181945
|
computed: {
|
|
@@ -181725,6 +181957,7 @@ window.LogicFlow = core_es;
|
|
|
181725
181957
|
flowConfigs: {
|
|
181726
181958
|
handler() {
|
|
181727
181959
|
this.setGlobalNodeConfigs();
|
|
181960
|
+
this.resetFlowData();
|
|
181728
181961
|
},
|
|
181729
181962
|
deep: true
|
|
181730
181963
|
},
|
|
@@ -181733,9 +181966,7 @@ window.LogicFlow = core_es;
|
|
|
181733
181966
|
// 重新初始数据
|
|
181734
181967
|
// this.$store.dispatch('flow/setNode', newVal);
|
|
181735
181968
|
// this.$store.dispatch('flow/clearHasError');
|
|
181736
|
-
this.
|
|
181737
|
-
this.renderData = newVal;
|
|
181738
|
-
this.lf.render(newVal);
|
|
181969
|
+
this.resetFlowData(newVal);
|
|
181739
181970
|
},
|
|
181740
181971
|
deep: true
|
|
181741
181972
|
},
|
|
@@ -181770,6 +182001,17 @@ window.LogicFlow = core_es;
|
|
|
181770
182001
|
this.setGlobalNodeConfigs();
|
|
181771
182002
|
},
|
|
181772
182003
|
methods: {
|
|
182004
|
+
resetFlowData(data) {
|
|
182005
|
+
let newVal = data ?? this.renderData;
|
|
182006
|
+
this.lf.clearData();
|
|
182007
|
+
if (newVal && newVal?.nodes && newVal?.nodes?.length > 0 && !this.initFinished && this.flowConfigs?.formList?.length > 0) {
|
|
182008
|
+
//更新节点数据
|
|
182009
|
+
newVal.nodes = this.graph.updateWriteNodeProperties([...newVal.nodes], this.flowConfigs.formList);
|
|
182010
|
+
this.initFinished = true;
|
|
182011
|
+
}
|
|
182012
|
+
this.renderData = newVal;
|
|
182013
|
+
this.lf.render(newVal);
|
|
182014
|
+
},
|
|
181773
182015
|
initFlow() {
|
|
181774
182016
|
const lf = new core_es({
|
|
181775
182017
|
container: this.$refs.designContainer,
|
|
@@ -182442,10 +182684,10 @@ window.LogicFlow = core_es;
|
|
|
182442
182684
|
});
|
|
182443
182685
|
;// ./packages/FlowDesign/index.vue?vue&type=script&lang=js
|
|
182444
182686
|
/* harmony default export */ var packages_FlowDesignvue_type_script_lang_js = (FlowDesignvue_type_script_lang_js);
|
|
182445
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./packages/FlowDesign/index.vue?vue&type=style&index=0&id=
|
|
182687
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.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
|
|
182446
182688
|
// extracted by mini-css-extract-plugin
|
|
182447
182689
|
|
|
182448
|
-
;// ./packages/FlowDesign/index.vue?vue&type=style&index=0&id=
|
|
182690
|
+
;// ./packages/FlowDesign/index.vue?vue&type=style&index=0&id=33f6e767&prod&scoped=true&lang=css
|
|
182449
182691
|
|
|
182450
182692
|
;// ./packages/FlowDesign/index.vue
|
|
182451
182693
|
|
|
@@ -182462,7 +182704,7 @@ var FlowDesign_component = (0,componentNormalizer/* default */.A)(
|
|
|
182462
182704
|
staticRenderFns,
|
|
182463
182705
|
false,
|
|
182464
182706
|
null,
|
|
182465
|
-
"
|
|
182707
|
+
"33f6e767",
|
|
182466
182708
|
null
|
|
182467
182709
|
|
|
182468
182710
|
)
|