hy-logic-flow 1.0.5 → 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 -317
- package/lib/hy-logic-flow-mini.css +39 -40
- package/lib/hy-logic-flow-mini.umd.js +553 -317
- package/lib/hy-logic-flow-mini.umd.min.js +8 -8
- package/lib/hy-logic-flow.common.js +553 -317
- package/lib/hy-logic-flow.css +39 -40
- package/lib/hy-logic-flow.umd.js +553 -317
- 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_379a9dc9_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_379a9dc9_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_379a9dc9_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_379a9dc9_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_379a9dc9_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_379a9dc9_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_379a9dc9_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_379a9dc9_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_379a9dc9_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,24 +177301,15 @@ var Conditionvue_type_template_id_379a9dc9_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
|
-
|
|
177143
|
-
|
|
177144
|
-
|
|
177145
|
-
|
|
177146
|
-
|
|
177147
|
-
'label': item.label,
|
|
177148
|
-
'children': (Array.isArray(item.dataSource) ? item.dataSource : this.$store.state.flow.nodeConfigs[item.dataSource]).map(item => {
|
|
177149
|
-
return {
|
|
177150
|
-
'label': item?.label || item.name,
|
|
177151
|
-
'value': item?.value || item.id
|
|
177152
|
-
};
|
|
177153
|
-
})
|
|
177154
|
-
};
|
|
177155
|
-
}));
|
|
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);
|
|
177156
177313
|
});
|
|
177157
177314
|
},
|
|
177158
177315
|
addGroup(type) {
|
|
@@ -177170,7 +177327,8 @@ var Conditionvue_type_template_id_379a9dc9_staticRenderFns = [];
|
|
|
177170
177327
|
optTypeName: undefined,
|
|
177171
177328
|
valueType: undefined,
|
|
177172
177329
|
conditionValue: [],
|
|
177173
|
-
conditionValueName: []
|
|
177330
|
+
conditionValueName: [],
|
|
177331
|
+
conditionValueDatas: []
|
|
177174
177332
|
}]
|
|
177175
177333
|
});
|
|
177176
177334
|
// }
|
|
@@ -177189,7 +177347,8 @@ var Conditionvue_type_template_id_379a9dc9_staticRenderFns = [];
|
|
|
177189
177347
|
optTypeName: undefined,
|
|
177190
177348
|
valueType: undefined,
|
|
177191
177349
|
conditionValue: [],
|
|
177192
|
-
conditionValueName: []
|
|
177350
|
+
conditionValueName: [],
|
|
177351
|
+
conditionValueDatas: []
|
|
177193
177352
|
});
|
|
177194
177353
|
}
|
|
177195
177354
|
});
|
|
@@ -177308,8 +177467,8 @@ var Conditionvue_type_template_id_379a9dc9_staticRenderFns = [];
|
|
|
177308
177467
|
;
|
|
177309
177468
|
var Condition_component = (0,componentNormalizer/* default */.A)(
|
|
177310
177469
|
FlowDrawer_Conditionvue_type_script_lang_js,
|
|
177311
|
-
|
|
177312
|
-
|
|
177470
|
+
Conditionvue_type_template_id_559606a9_render,
|
|
177471
|
+
Conditionvue_type_template_id_559606a9_staticRenderFns,
|
|
177313
177472
|
false,
|
|
177314
177473
|
null,
|
|
177315
177474
|
null,
|
|
@@ -178645,13 +178804,13 @@ var Notice_component = (0,componentNormalizer/* default */.A)(
|
|
|
178645
178804
|
)
|
|
178646
178805
|
|
|
178647
178806
|
/* harmony default export */ var FlowDrawer_Notice = (Notice_component.exports);
|
|
178648
|
-
;// ./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=
|
|
178649
|
-
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() {
|
|
178650
178809
|
var _vm = this,
|
|
178651
178810
|
_c = _vm._self._c;
|
|
178652
178811
|
return _vm.node.attr ? _c('a-drawer', {
|
|
178653
178812
|
attrs: {
|
|
178654
|
-
"width": _vm.drawerWidth(),
|
|
178813
|
+
"width": _vm.drawerWidth('45vw'),
|
|
178655
178814
|
"headerStyle": _vm.headerStyle,
|
|
178656
178815
|
"bodyStyle": _vm.bodyStyle,
|
|
178657
178816
|
"placement": "right",
|
|
@@ -178728,7 +178887,13 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
178728
178887
|
"value": branchType.value
|
|
178729
178888
|
}
|
|
178730
178889
|
}, [_vm._v(" " + _vm._s(branchType.label) + " ")]);
|
|
178731
|
-
}), 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', {
|
|
178732
178897
|
staticClass: "flow-setting-item"
|
|
178733
178898
|
}, [_c('p', {
|
|
178734
178899
|
staticClass: "flow-setting-item-title"
|
|
@@ -178758,7 +178923,7 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
178758
178923
|
"update:name": function ($event) {
|
|
178759
178924
|
return _vm.$set(condition, "columnName", $event);
|
|
178760
178925
|
},
|
|
178761
|
-
"change": _vm.handleColumnFieldChange
|
|
178926
|
+
"change": (value, option) => _vm.handleColumnFieldChange(value, option, group, condition)
|
|
178762
178927
|
},
|
|
178763
178928
|
model: {
|
|
178764
178929
|
value: condition.columnValue,
|
|
@@ -178812,10 +178977,18 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
178812
178977
|
}
|
|
178813
178978
|
}), _c('div', {
|
|
178814
178979
|
staticClass: "flow-setting-condition-value"
|
|
178815
|
-
}, [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', {
|
|
178816
178988
|
attrs: {
|
|
178817
178989
|
"name": condition.conditionValueName,
|
|
178818
178990
|
"datas": _vm.optionValueTypes,
|
|
178991
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
178819
178992
|
"labelName": "label"
|
|
178820
178993
|
},
|
|
178821
178994
|
on: {
|
|
@@ -178830,7 +179003,7 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
178830
179003
|
},
|
|
178831
179004
|
expression: "condition.conditionValue"
|
|
178832
179005
|
}
|
|
178833
|
-
}) : condition.valueType == 3 ? _c('FlowSelect', {
|
|
179006
|
+
})] : condition.valueType == 3 ? _c('FlowSelect', {
|
|
178834
179007
|
attrs: {
|
|
178835
179008
|
"name": condition.conditionValueName,
|
|
178836
179009
|
"datas": _vm.flowValueTypes,
|
|
@@ -178848,10 +179021,18 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
178848
179021
|
},
|
|
178849
179022
|
expression: "condition.conditionValue"
|
|
178850
179023
|
}
|
|
178851
|
-
}) : 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', {
|
|
178852
179032
|
attrs: {
|
|
178853
179033
|
"name": condition.conditionValueName,
|
|
178854
179034
|
"datas": _vm.dataSourceOptions,
|
|
179035
|
+
"mode": _vm.flattenFieldList.find(item => item.value === condition.columnValue)?.multi ? 'multiple' : 'default',
|
|
178855
179036
|
"labelName": "label"
|
|
178856
179037
|
},
|
|
178857
179038
|
on: {
|
|
@@ -178866,7 +179047,7 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
178866
179047
|
},
|
|
178867
179048
|
expression: "condition.conditionValue"
|
|
178868
179049
|
}
|
|
178869
|
-
}) : _c('FlowInput', {
|
|
179050
|
+
})] : _c('FlowInput', {
|
|
178870
179051
|
attrs: {
|
|
178871
179052
|
"name": condition.conditionValueName,
|
|
178872
179053
|
"size": _vm.size
|
|
@@ -178883,7 +179064,7 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
178883
179064
|
},
|
|
178884
179065
|
expression: "condition.conditionValue"
|
|
178885
179066
|
}
|
|
178886
|
-
})],
|
|
179067
|
+
})], 2)], 1), _c('div', {
|
|
178887
179068
|
staticClass: "flow-setting-condition-del",
|
|
178888
179069
|
on: {
|
|
178889
179070
|
"click": function ($event) {
|
|
@@ -179013,7 +179194,7 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
179013
179194
|
staticStyle: {
|
|
179014
179195
|
"margin-left": "5px"
|
|
179015
179196
|
}
|
|
179016
|
-
}, [_vm._v("或条件")])], 1)], 2)])])]), _c('PreCodeShow', {
|
|
179197
|
+
}, [_vm._v("或条件")])], 1)], 2)])]], 2)]), _c('PreCodeShow', {
|
|
179017
179198
|
staticStyle: {
|
|
179018
179199
|
"display": "none"
|
|
179019
179200
|
},
|
|
@@ -179027,7 +179208,7 @@ var Branchvue_type_template_id_0754f454_render = function render() {
|
|
|
179027
179208
|
}
|
|
179028
179209
|
})], 2) : _vm._e();
|
|
179029
179210
|
};
|
|
179030
|
-
var
|
|
179211
|
+
var Branchvue_type_template_id_2668f886_staticRenderFns = [];
|
|
179031
179212
|
|
|
179032
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
|
|
179033
179214
|
|
|
@@ -179064,9 +179245,10 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179064
179245
|
}, {
|
|
179065
179246
|
label: '公式',
|
|
179066
179247
|
value: 2
|
|
179067
|
-
}
|
|
179068
|
-
|
|
179069
|
-
|
|
179248
|
+
}, {
|
|
179249
|
+
label: '默认条件',
|
|
179250
|
+
value: 3
|
|
179251
|
+
}],
|
|
179070
179252
|
optTypes: [{
|
|
179071
179253
|
label: '等于',
|
|
179072
179254
|
value: 'eq'
|
|
@@ -179085,6 +179267,12 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179085
179267
|
}, {
|
|
179086
179268
|
label: '小于等于',
|
|
179087
179269
|
value: 'le'
|
|
179270
|
+
}, {
|
|
179271
|
+
label: '包含(属于)',
|
|
179272
|
+
value: 'contains'
|
|
179273
|
+
}, {
|
|
179274
|
+
label: '不包含(不属于)',
|
|
179275
|
+
value: 'not_contains'
|
|
179088
179276
|
}
|
|
179089
179277
|
/* { label: '为空', value: '7' },
|
|
179090
179278
|
{ label: '不为空', value: '8' }, */],
|
|
@@ -179206,15 +179394,26 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179206
179394
|
formFieldList.push({
|
|
179207
179395
|
label: '表单字段',
|
|
179208
179396
|
children: formFields.map(item => ({
|
|
179209
|
-
|
|
179397
|
+
...item,
|
|
179398
|
+
label: item?.form_name ?? item?.label,
|
|
179210
179399
|
value: item.condition_name
|
|
179211
179400
|
}))
|
|
179212
179401
|
});
|
|
179213
179402
|
}
|
|
179214
179403
|
return [...list, ...formFieldList];
|
|
179404
|
+
},
|
|
179405
|
+
flattenFieldList() {
|
|
179406
|
+
return this.fieldList.reduce((acc, curr) => {
|
|
179407
|
+
return acc.concat(curr?.children || curr);
|
|
179408
|
+
}, []);
|
|
179215
179409
|
}
|
|
179216
179410
|
},
|
|
179217
179411
|
methods: {
|
|
179412
|
+
conditionComponentSelect(value, name, datas, condition) {
|
|
179413
|
+
condition.conditionValue = value;
|
|
179414
|
+
condition.conditionValueName = name;
|
|
179415
|
+
condition.conditionValueDatas = datas;
|
|
179416
|
+
},
|
|
179218
179417
|
levelOptionChange(val) {
|
|
179219
179418
|
const findLevelOption = this.levelOptions.find(item => item.value.toString() === val.toString());
|
|
179220
179419
|
this.node.attr.priorityLevelName = findLevelOption?.label ?? findLevelOption?.name;
|
|
@@ -179255,24 +179454,15 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179255
179454
|
this.visible = false;
|
|
179256
179455
|
this.$emit('close');
|
|
179257
179456
|
},
|
|
179258
|
-
handleColumnFieldChange(value, option) {
|
|
179457
|
+
handleColumnFieldChange(value, option, group, condition) {
|
|
179259
179458
|
console.warn('handleColumnFieldChange(value,option)=>', value, option);
|
|
179260
179459
|
this.dataSourceOptions.splice(0, this.dataSourceOptions.length);
|
|
179261
179460
|
this.$nextTick(() => {
|
|
179262
|
-
|
|
179263
|
-
|
|
179264
|
-
|
|
179265
|
-
|
|
179266
|
-
|
|
179267
|
-
'label': item.label,
|
|
179268
|
-
'children': (Array.isArray(item?.dataSource) ? item.dataSource : this.$store.state.flow.nodeConfigs[item.dataSource])?.map(item => {
|
|
179269
|
-
return {
|
|
179270
|
-
'label': item?.label || item.name,
|
|
179271
|
-
'value': item?.value || item.id
|
|
179272
|
-
};
|
|
179273
|
-
})
|
|
179274
|
-
};
|
|
179275
|
-
}));
|
|
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 || []));
|
|
179276
179466
|
});
|
|
179277
179467
|
},
|
|
179278
179468
|
addGroup(type) {
|
|
@@ -179290,7 +179480,8 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179290
179480
|
optTypeName: undefined,
|
|
179291
179481
|
valueType: undefined,
|
|
179292
179482
|
conditionValue: [],
|
|
179293
|
-
conditionValueName: []
|
|
179483
|
+
conditionValueName: [],
|
|
179484
|
+
conditionValueDatas: []
|
|
179294
179485
|
}]
|
|
179295
179486
|
});
|
|
179296
179487
|
// }
|
|
@@ -179309,7 +179500,8 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179309
179500
|
optTypeName: undefined,
|
|
179310
179501
|
valueType: undefined,
|
|
179311
179502
|
conditionValue: [],
|
|
179312
|
-
conditionValueName: []
|
|
179503
|
+
conditionValueName: [],
|
|
179504
|
+
conditionValueDatas: []
|
|
179313
179505
|
});
|
|
179314
179506
|
}
|
|
179315
179507
|
});
|
|
@@ -179367,23 +179559,28 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179367
179559
|
}
|
|
179368
179560
|
});
|
|
179369
179561
|
} else {
|
|
179370
|
-
this.node.
|
|
179371
|
-
|
|
179372
|
-
|
|
179373
|
-
|
|
179374
|
-
|
|
179375
|
-
group.conditions.
|
|
179376
|
-
|
|
179377
|
-
|
|
179378
|
-
if (i != 0) {
|
|
179379
|
-
content += ' 且 ';
|
|
179380
|
-
}
|
|
179381
|
-
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 += ' 或 ';
|
|
179382
179570
|
}
|
|
179383
|
-
|
|
179384
|
-
|
|
179385
|
-
|
|
179386
|
-
|
|
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
|
+
}
|
|
179387
179584
|
}
|
|
179388
179585
|
this.$store.dispatch('flow/updateNode', {
|
|
179389
179586
|
currNode: this.node,
|
|
@@ -179429,8 +179626,8 @@ var Branchvue_type_template_id_0754f454_staticRenderFns = [];
|
|
|
179429
179626
|
;
|
|
179430
179627
|
var Branch_component = (0,componentNormalizer/* default */.A)(
|
|
179431
179628
|
FlowDrawer_Branchvue_type_script_lang_js,
|
|
179432
|
-
|
|
179433
|
-
|
|
179629
|
+
Branchvue_type_template_id_2668f886_render,
|
|
179630
|
+
Branchvue_type_template_id_2668f886_staticRenderFns,
|
|
179434
179631
|
false,
|
|
179435
179632
|
null,
|
|
179436
179633
|
null,
|
|
@@ -179870,10 +180067,10 @@ function registerWrite(lf) {
|
|
|
179870
180067
|
});
|
|
179871
180068
|
;// ./packages/FlowNode/baseNode.vue?vue&type=script&lang=js
|
|
179872
180069
|
/* harmony default export */ var FlowNode_baseNodevue_type_script_lang_js = (baseNodevue_type_script_lang_js);
|
|
179873
|
-
;// ./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
|
|
179874
180071
|
// extracted by mini-css-extract-plugin
|
|
179875
180072
|
|
|
179876
|
-
;// ./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
|
|
179877
180074
|
|
|
179878
180075
|
;// ./packages/FlowNode/baseNode.vue
|
|
179879
180076
|
|
|
@@ -179886,11 +180083,11 @@ function registerWrite(lf) {
|
|
|
179886
180083
|
|
|
179887
180084
|
var baseNode_component = (0,componentNormalizer/* default */.A)(
|
|
179888
180085
|
FlowNode_baseNodevue_type_script_lang_js,
|
|
179889
|
-
|
|
179890
|
-
|
|
180086
|
+
baseNodevue_type_template_id_55b34434_scoped_true_render,
|
|
180087
|
+
baseNodevue_type_template_id_55b34434_scoped_true_staticRenderFns,
|
|
179891
180088
|
false,
|
|
179892
180089
|
null,
|
|
179893
|
-
"
|
|
180090
|
+
"55b34434",
|
|
179894
180091
|
null
|
|
179895
180092
|
|
|
179896
180093
|
)
|
|
@@ -181107,6 +181304,30 @@ class graph_Graph {
|
|
|
181107
181304
|
this.selectedNodes = [];
|
|
181108
181305
|
this.hoveredNodes = [];
|
|
181109
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
|
+
}
|
|
181110
181331
|
|
|
181111
181332
|
/**
|
|
181112
181333
|
* 当选中左侧画布组件时,选中逻辑图上对应节点
|
|
@@ -181664,6 +181885,10 @@ window.LogicFlow = core_es;
|
|
|
181664
181885
|
return null;
|
|
181665
181886
|
}
|
|
181666
181887
|
},
|
|
181888
|
+
height: {
|
|
181889
|
+
type: String,
|
|
181890
|
+
default: ''
|
|
181891
|
+
},
|
|
181667
181892
|
navable: {
|
|
181668
181893
|
type: Boolean,
|
|
181669
181894
|
default: true
|
|
@@ -181713,7 +181938,8 @@ window.LogicFlow = core_es;
|
|
|
181713
181938
|
lf: null,
|
|
181714
181939
|
renderData: null,
|
|
181715
181940
|
currentModel: null,
|
|
181716
|
-
mapShow: false
|
|
181941
|
+
mapShow: false,
|
|
181942
|
+
initFinished: false
|
|
181717
181943
|
};
|
|
181718
181944
|
},
|
|
181719
181945
|
computed: {
|
|
@@ -181731,6 +181957,7 @@ window.LogicFlow = core_es;
|
|
|
181731
181957
|
flowConfigs: {
|
|
181732
181958
|
handler() {
|
|
181733
181959
|
this.setGlobalNodeConfigs();
|
|
181960
|
+
this.resetFlowData();
|
|
181734
181961
|
},
|
|
181735
181962
|
deep: true
|
|
181736
181963
|
},
|
|
@@ -181739,9 +181966,7 @@ window.LogicFlow = core_es;
|
|
|
181739
181966
|
// 重新初始数据
|
|
181740
181967
|
// this.$store.dispatch('flow/setNode', newVal);
|
|
181741
181968
|
// this.$store.dispatch('flow/clearHasError');
|
|
181742
|
-
this.
|
|
181743
|
-
this.renderData = newVal;
|
|
181744
|
-
this.lf.render(newVal);
|
|
181969
|
+
this.resetFlowData(newVal);
|
|
181745
181970
|
},
|
|
181746
181971
|
deep: true
|
|
181747
181972
|
},
|
|
@@ -181776,6 +182001,17 @@ window.LogicFlow = core_es;
|
|
|
181776
182001
|
this.setGlobalNodeConfigs();
|
|
181777
182002
|
},
|
|
181778
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
|
+
},
|
|
181779
182015
|
initFlow() {
|
|
181780
182016
|
const lf = new core_es({
|
|
181781
182017
|
container: this.$refs.designContainer,
|
|
@@ -182448,10 +182684,10 @@ window.LogicFlow = core_es;
|
|
|
182448
182684
|
});
|
|
182449
182685
|
;// ./packages/FlowDesign/index.vue?vue&type=script&lang=js
|
|
182450
182686
|
/* harmony default export */ var packages_FlowDesignvue_type_script_lang_js = (FlowDesignvue_type_script_lang_js);
|
|
182451
|
-
;// ./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
|
|
182452
182688
|
// extracted by mini-css-extract-plugin
|
|
182453
182689
|
|
|
182454
|
-
;// ./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
|
|
182455
182691
|
|
|
182456
182692
|
;// ./packages/FlowDesign/index.vue
|
|
182457
182693
|
|
|
@@ -182468,7 +182704,7 @@ var FlowDesign_component = (0,componentNormalizer/* default */.A)(
|
|
|
182468
182704
|
staticRenderFns,
|
|
182469
182705
|
false,
|
|
182470
182706
|
null,
|
|
182471
|
-
"
|
|
182707
|
+
"33f6e767",
|
|
182472
182708
|
null
|
|
182473
182709
|
|
|
182474
182710
|
)
|