zl-lcyq 0.0.1 → 0.0.3

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/lib/zl-lcyq.es.js CHANGED
@@ -1,4 +1,5 @@
1
- import { createTextVNode, Fragment, Comment, isVNode, defineComponent, ref as ref$1, readonly, watch, computed, getCurrentInstance, onMounted, onBeforeUnmount, onBeforeMount, inject, provide, withDirectives, toRef, h, Teleport, nextTick, renderSlot, onActivated, onDeactivated, mergeProps, shallowRef, watchEffect, Transition, TransitionGroup, vShow, cloneVNode, Text, markRaw, reactive, createApp, unref, hasInjectionContext, effectScope, isRef, isReactive, toRaw, getCurrentScope, onScopeDispose, toRefs, openBlock, createElementBlock, createElementVNode, toDisplayString, createCommentVNode, createVNode, warn as warn$3, withCtx, createBlock, useAttrs, createSlots, normalizeStyle, normalizeClass, onUnmounted, resolveComponent, renderList, useSlots, resolveDynamicComponent, vModelText } from "vue";
1
+ import { createTextVNode, Fragment, Comment, isVNode, vShow, defineComponent, ref as ref$1, readonly, watch, computed, getCurrentInstance, onMounted, onBeforeUnmount, onBeforeMount, inject, provide, withDirectives, toRef, h, Teleport, nextTick, renderSlot, onActivated, onDeactivated, mergeProps, shallowRef, watchEffect, Transition, TransitionGroup, cloneVNode, Text, markRaw, reactive, createApp, unref, openBlock, createElementBlock, createElementVNode, toDisplayString, createCommentVNode, createVNode, isRef, warn as warn$3, toRefs, withCtx, createBlock, useAttrs, createSlots, normalizeStyle, normalizeClass, onUnmounted, resolveComponent, renderList, useSlots, resolveDynamicComponent, vModelText } from "vue";
2
+ import { defineStore } from "pinia";
2
3
  let onceCbs = [];
3
4
  const paramsMap = /* @__PURE__ */ new WeakMap();
4
5
  function flushOnceCallbacks() {
@@ -25,6 +26,54 @@ function happensIn(e, dataSetPropName) {
25
26
  function getPreciseEventTarget(event) {
26
27
  return event.composedPath()[0] || null;
27
28
  }
29
+ function parseResponsiveProp(reponsiveProp) {
30
+ if (typeof reponsiveProp === "number") {
31
+ return {
32
+ "": reponsiveProp.toString()
33
+ };
34
+ }
35
+ const params = {};
36
+ reponsiveProp.split(/ +/).forEach((pairLiteral) => {
37
+ if (pairLiteral === "")
38
+ return;
39
+ const [prefix2, value] = pairLiteral.split(":");
40
+ if (value === void 0) {
41
+ params[""] = prefix2;
42
+ } else {
43
+ params[prefix2] = value;
44
+ }
45
+ });
46
+ return params;
47
+ }
48
+ function parseResponsivePropValue(reponsiveProp, activeKeyOrSize) {
49
+ var _a2;
50
+ if (reponsiveProp === void 0 || reponsiveProp === null)
51
+ return void 0;
52
+ const classObj = parseResponsiveProp(reponsiveProp);
53
+ if (activeKeyOrSize === void 0)
54
+ return classObj[""];
55
+ if (typeof activeKeyOrSize === "string") {
56
+ return (_a2 = classObj[activeKeyOrSize]) !== null && _a2 !== void 0 ? _a2 : classObj[""];
57
+ } else if (Array.isArray(activeKeyOrSize)) {
58
+ for (let i = activeKeyOrSize.length - 1; i >= 0; --i) {
59
+ const key = activeKeyOrSize[i];
60
+ if (key in classObj)
61
+ return classObj[key];
62
+ }
63
+ return classObj[""];
64
+ } else {
65
+ let activeValue = void 0;
66
+ let activeKey = -1;
67
+ Object.keys(classObj).forEach((key) => {
68
+ const keyAsNum = Number(key);
69
+ if (!Number.isNaN(keyAsNum) && activeKeyOrSize >= keyAsNum && keyAsNum >= activeKey) {
70
+ activeKey = keyAsNum;
71
+ activeValue = classObj[key];
72
+ }
73
+ });
74
+ return activeValue;
75
+ }
76
+ }
28
77
  function depx(value) {
29
78
  if (typeof value === "string") {
30
79
  if (value.endsWith("px")) {
@@ -582,6 +631,13 @@ function mergeEventHandlers(handlers) {
582
631
  });
583
632
  };
584
633
  }
634
+ function isNodeVShowFalse(vNode) {
635
+ var _a2;
636
+ const showDir = (_a2 = vNode.dirs) === null || _a2 === void 0 ? void 0 : _a2.find(({
637
+ dir
638
+ }) => dir === vShow);
639
+ return !!(showDir && showDir.value === false);
640
+ }
585
641
  const Wrapper = defineComponent({
586
642
  render() {
587
643
  var _a2, _b;
@@ -1659,6 +1715,79 @@ const isIos = (typeof window === "undefined" ? false : /iPad|iPhone|iPod/.test(n
1659
1715
  function useIsIos() {
1660
1716
  return isIos;
1661
1717
  }
1718
+ const defaultBreakpointOptions = {
1719
+ xs: 0,
1720
+ s: 640,
1721
+ m: 1024,
1722
+ l: 1280,
1723
+ xl: 1536,
1724
+ "2xl": 1920
1725
+ };
1726
+ function createMediaQuery(screenWidth) {
1727
+ return `(min-width: ${screenWidth}px)`;
1728
+ }
1729
+ const mqlMap = {};
1730
+ function useBreakpoints(screens = defaultBreakpointOptions) {
1731
+ if (!isBrowser$1)
1732
+ return computed(() => []);
1733
+ if (typeof window.matchMedia !== "function")
1734
+ return computed(() => []);
1735
+ const breakpointStatusRef = ref$1({});
1736
+ const breakpoints = Object.keys(screens);
1737
+ const updateBreakpoints = (e, breakpointName) => {
1738
+ if (e.matches)
1739
+ breakpointStatusRef.value[breakpointName] = true;
1740
+ else
1741
+ breakpointStatusRef.value[breakpointName] = false;
1742
+ };
1743
+ breakpoints.forEach((key) => {
1744
+ const breakpointValue = screens[key];
1745
+ let mql;
1746
+ let cbs;
1747
+ if (mqlMap[breakpointValue] === void 0) {
1748
+ mql = window.matchMedia(createMediaQuery(breakpointValue));
1749
+ if (mql.addEventListener) {
1750
+ mql.addEventListener("change", (e) => {
1751
+ cbs.forEach((cb) => {
1752
+ cb(e, key);
1753
+ });
1754
+ });
1755
+ } else if (mql.addListener) {
1756
+ mql.addListener((e) => {
1757
+ cbs.forEach((cb) => {
1758
+ cb(e, key);
1759
+ });
1760
+ });
1761
+ }
1762
+ cbs = /* @__PURE__ */ new Set();
1763
+ mqlMap[breakpointValue] = {
1764
+ mql,
1765
+ cbs
1766
+ };
1767
+ } else {
1768
+ mql = mqlMap[breakpointValue].mql;
1769
+ cbs = mqlMap[breakpointValue].cbs;
1770
+ }
1771
+ cbs.add(updateBreakpoints);
1772
+ if (mql.matches) {
1773
+ cbs.forEach((cb) => {
1774
+ cb(mql, key);
1775
+ });
1776
+ }
1777
+ });
1778
+ onBeforeUnmount(() => {
1779
+ breakpoints.forEach((breakpoint) => {
1780
+ const { cbs } = mqlMap[screens[breakpoint]];
1781
+ if (cbs.has(updateBreakpoints)) {
1782
+ cbs.delete(updateBreakpoints);
1783
+ }
1784
+ });
1785
+ });
1786
+ return computed(() => {
1787
+ const { value } = breakpointStatusRef;
1788
+ return breakpoints.filter((key) => value[key]);
1789
+ });
1790
+ }
1662
1791
  const internalSelectionMenuInjectionKey = createInjectionKey("n-internal-select-menu");
1663
1792
  const internalSelectionMenuBodyInjectionKey = createInjectionKey("n-internal-select-menu-body");
1664
1793
  const modalBodyInjectionKey = createInjectionKey("n-modal-body");
@@ -5303,7 +5432,7 @@ var funcProto = Function.prototype, objectProto$3 = Object.prototype;
5303
5432
  var funcToString = funcProto.toString;
5304
5433
  var hasOwnProperty$4 = objectProto$3.hasOwnProperty;
5305
5434
  var objectCtorString = funcToString.call(Object);
5306
- function isPlainObject$2(value) {
5435
+ function isPlainObject$1(value) {
5307
5436
  if (!isObjectLike(value) || baseGetTag(value) != objectTag$2) {
5308
5437
  return false;
5309
5438
  }
@@ -6007,7 +6136,7 @@ function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, sta
6007
6136
  } else {
6008
6137
  newValue = [];
6009
6138
  }
6010
- } else if (isPlainObject$2(srcValue) || isArguments$1(srcValue)) {
6139
+ } else if (isPlainObject$1(srcValue) || isArguments$1(srcValue)) {
6011
6140
  newValue = objValue;
6012
6141
  if (isArguments$1(objValue)) {
6013
6142
  newValue = toPlainObject(objValue);
@@ -16673,7 +16802,7 @@ const checkboxGroupProps = {
16673
16802
  onUpdateValue: [Function, Array],
16674
16803
  onChange: [Function, Array]
16675
16804
  };
16676
- defineComponent({
16805
+ var NCheckboxGroup = defineComponent({
16677
16806
  name: "CheckboxGroup",
16678
16807
  props: checkboxGroupProps,
16679
16808
  setup(props) {
@@ -16989,10 +17118,10 @@ var NCheckbox = defineComponent({
16989
17118
  } = props;
16990
17119
  if (size2 !== void 0)
16991
17120
  return size2;
16992
- if (NCheckboxGroup) {
17121
+ if (NCheckboxGroup2) {
16993
17122
  const {
16994
17123
  value: mergedSize
16995
- } = NCheckboxGroup.mergedSizeRef;
17124
+ } = NCheckboxGroup2.mergedSizeRef;
16996
17125
  if (mergedSize !== void 0) {
16997
17126
  return mergedSize;
16998
17127
  }
@@ -17012,15 +17141,15 @@ var NCheckbox = defineComponent({
17012
17141
  } = props;
17013
17142
  if (disabled !== void 0)
17014
17143
  return disabled;
17015
- if (NCheckboxGroup) {
17016
- if (NCheckboxGroup.disabledRef.value)
17144
+ if (NCheckboxGroup2) {
17145
+ if (NCheckboxGroup2.disabledRef.value)
17017
17146
  return true;
17018
17147
  const {
17019
17148
  maxRef: {
17020
17149
  value: max2
17021
17150
  },
17022
17151
  checkedCountRef
17023
- } = NCheckboxGroup;
17152
+ } = NCheckboxGroup2;
17024
17153
  if (max2 !== void 0 && checkedCountRef.value >= max2 && !renderedCheckedRef.value) {
17025
17154
  return true;
17026
17155
  }
@@ -17028,7 +17157,7 @@ var NCheckbox = defineComponent({
17028
17157
  minRef: {
17029
17158
  value: min2
17030
17159
  }
17031
- } = NCheckboxGroup;
17160
+ } = NCheckboxGroup2;
17032
17161
  if (min2 !== void 0 && checkedCountRef.value <= min2 && renderedCheckedRef.value) {
17033
17162
  return true;
17034
17163
  }
@@ -17043,13 +17172,13 @@ var NCheckbox = defineComponent({
17043
17172
  mergedDisabledRef,
17044
17173
  mergedSizeRef
17045
17174
  } = formItem;
17046
- const NCheckboxGroup = inject(checkboxGroupInjectionKey, null);
17175
+ const NCheckboxGroup2 = inject(checkboxGroupInjectionKey, null);
17047
17176
  const uncontrolledCheckedRef = ref$1(props.defaultChecked);
17048
17177
  const controlledCheckedRef = toRef(props, "checked");
17049
17178
  const mergedCheckedRef = useMergedState(controlledCheckedRef, uncontrolledCheckedRef);
17050
17179
  const renderedCheckedRef = useMemo(() => {
17051
- if (NCheckboxGroup) {
17052
- const groupValueSet = NCheckboxGroup.valueSetRef.value;
17180
+ if (NCheckboxGroup2) {
17181
+ const groupValueSet = NCheckboxGroup2.valueSetRef.value;
17053
17182
  if (groupValueSet && props.value !== void 0) {
17054
17183
  return groupValueSet.has(props.value);
17055
17184
  }
@@ -17060,8 +17189,8 @@ var NCheckbox = defineComponent({
17060
17189
  });
17061
17190
  const themeRef = useTheme("Checkbox", "-checkbox", style$d, checkboxLight$1, props, mergedClsPrefixRef);
17062
17191
  function toggle(e) {
17063
- if (NCheckboxGroup && props.value !== void 0) {
17064
- NCheckboxGroup.toggleCheckbox(!renderedCheckedRef.value, props.value);
17192
+ if (NCheckboxGroup2 && props.value !== void 0) {
17193
+ NCheckboxGroup2.toggleCheckbox(!renderedCheckedRef.value, props.value);
17065
17194
  } else {
17066
17195
  const {
17067
17196
  onChange,
@@ -21466,6 +21595,347 @@ var NSpace = defineComponent({
21466
21595
  }, child)));
21467
21596
  }
21468
21597
  });
21598
+ const defaultSpan$1 = 1;
21599
+ const gridInjectionKey = createInjectionKey("n-grid");
21600
+ const defaultSpan = 1;
21601
+ const gridItemProps = {
21602
+ span: {
21603
+ type: [Number, String],
21604
+ default: defaultSpan
21605
+ },
21606
+ offset: {
21607
+ type: [Number, String],
21608
+ default: 0
21609
+ },
21610
+ suffix: Boolean,
21611
+ privateOffset: Number,
21612
+ privateSpan: Number,
21613
+ privateColStart: Number,
21614
+ privateShow: {
21615
+ type: Boolean,
21616
+ default: true
21617
+ }
21618
+ };
21619
+ var NGi = defineComponent({
21620
+ __GRID_ITEM__: true,
21621
+ name: "GridItem",
21622
+ alias: ["Gi"],
21623
+ props: gridItemProps,
21624
+ setup() {
21625
+ const {
21626
+ isSsrRef,
21627
+ xGapRef,
21628
+ itemStyleRef,
21629
+ overflowRef,
21630
+ layoutShiftDisabledRef
21631
+ } = inject(gridInjectionKey);
21632
+ const self2 = getCurrentInstance();
21633
+ return {
21634
+ overflow: overflowRef,
21635
+ itemStyle: itemStyleRef,
21636
+ layoutShiftDisabled: layoutShiftDisabledRef,
21637
+ mergedXGap: computed(() => {
21638
+ return pxfy(xGapRef.value || 0);
21639
+ }),
21640
+ deriveStyle: () => {
21641
+ void isSsrRef.value;
21642
+ const {
21643
+ privateSpan = defaultSpan,
21644
+ privateShow = true,
21645
+ privateColStart = void 0,
21646
+ privateOffset = 0
21647
+ } = self2.vnode.props;
21648
+ const {
21649
+ value: xGap
21650
+ } = xGapRef;
21651
+ const mergedXGap = pxfy(xGap || 0);
21652
+ return {
21653
+ display: !privateShow ? "none" : "",
21654
+ gridColumn: `${privateColStart !== null && privateColStart !== void 0 ? privateColStart : `span ${privateSpan}`} / span ${privateSpan}`,
21655
+ marginLeft: privateOffset ? `calc((100% - (${privateSpan} - 1) * ${mergedXGap}) / ${privateSpan} * ${privateOffset} + ${mergedXGap} * ${privateOffset})` : ""
21656
+ };
21657
+ }
21658
+ };
21659
+ },
21660
+ render() {
21661
+ var _a2, _b;
21662
+ if (this.layoutShiftDisabled) {
21663
+ const {
21664
+ span,
21665
+ offset,
21666
+ mergedXGap
21667
+ } = this;
21668
+ return h("div", {
21669
+ style: {
21670
+ gridColumn: `span ${span} / span ${span}`,
21671
+ marginLeft: offset ? `calc((100% - (${span} - 1) * ${mergedXGap}) / ${span} * ${offset} + ${mergedXGap} * ${offset})` : ""
21672
+ }
21673
+ }, this.$slots);
21674
+ }
21675
+ return h("div", {
21676
+ style: [this.itemStyle, this.deriveStyle()]
21677
+ }, (_b = (_a2 = this.$slots).default) === null || _b === void 0 ? void 0 : _b.call(_a2, {
21678
+ overflow: this.overflow
21679
+ }));
21680
+ }
21681
+ });
21682
+ const defaultBreakpoints = {
21683
+ xs: 0,
21684
+ s: 640,
21685
+ m: 1024,
21686
+ l: 1280,
21687
+ xl: 1536,
21688
+ xxl: 1920
21689
+ };
21690
+ const defaultCols = 24;
21691
+ const SSR_ATTR_NAME = "__ssr__";
21692
+ const gridProps = {
21693
+ layoutShiftDisabled: Boolean,
21694
+ responsive: {
21695
+ type: [String, Boolean],
21696
+ default: "self"
21697
+ },
21698
+ cols: {
21699
+ type: [Number, String],
21700
+ default: defaultCols
21701
+ },
21702
+ itemResponsive: Boolean,
21703
+ collapsed: Boolean,
21704
+ collapsedRows: {
21705
+ type: Number,
21706
+ default: 1
21707
+ },
21708
+ itemStyle: [Object, String],
21709
+ xGap: {
21710
+ type: [Number, String],
21711
+ default: 0
21712
+ },
21713
+ yGap: {
21714
+ type: [Number, String],
21715
+ default: 0
21716
+ }
21717
+ };
21718
+ var NGrid = defineComponent({
21719
+ name: "Grid",
21720
+ inheritAttrs: false,
21721
+ props: gridProps,
21722
+ setup(props) {
21723
+ const {
21724
+ mergedClsPrefixRef,
21725
+ mergedBreakpointsRef
21726
+ } = useConfig(props);
21727
+ const numRegex = /^\d+$/;
21728
+ const widthRef = ref$1(void 0);
21729
+ const breakpointsRef = useBreakpoints((mergedBreakpointsRef === null || mergedBreakpointsRef === void 0 ? void 0 : mergedBreakpointsRef.value) || defaultBreakpoints);
21730
+ const isResponsiveRef = useMemo(() => {
21731
+ if (props.itemResponsive)
21732
+ return true;
21733
+ if (!numRegex.test(props.cols.toString()))
21734
+ return true;
21735
+ if (!numRegex.test(props.xGap.toString()))
21736
+ return true;
21737
+ if (!numRegex.test(props.yGap.toString()))
21738
+ return true;
21739
+ return false;
21740
+ });
21741
+ const responsiveQueryRef = computed(() => {
21742
+ if (!isResponsiveRef.value)
21743
+ return void 0;
21744
+ return props.responsive === "self" ? widthRef.value : breakpointsRef.value;
21745
+ });
21746
+ const responsiveColsRef = useMemo(() => {
21747
+ var _a2;
21748
+ return (_a2 = Number(parseResponsivePropValue(props.cols.toString(), responsiveQueryRef.value))) !== null && _a2 !== void 0 ? _a2 : defaultCols;
21749
+ });
21750
+ const responsiveXGapRef = useMemo(() => parseResponsivePropValue(props.xGap.toString(), responsiveQueryRef.value));
21751
+ const responsiveYGapRef = useMemo(() => parseResponsivePropValue(props.yGap.toString(), responsiveQueryRef.value));
21752
+ const handleResize = (entry) => {
21753
+ widthRef.value = entry.contentRect.width;
21754
+ };
21755
+ const handleResizeRaf = (entry) => {
21756
+ beforeNextFrameOnce(handleResize, entry);
21757
+ };
21758
+ const overflowRef = ref$1(false);
21759
+ const handleResizeRef = computed(() => {
21760
+ if (props.responsive === "self") {
21761
+ return handleResizeRaf;
21762
+ }
21763
+ return void 0;
21764
+ });
21765
+ const isSsrRef = ref$1(false);
21766
+ const contentElRef = ref$1();
21767
+ onMounted(() => {
21768
+ const {
21769
+ value: contentEl
21770
+ } = contentElRef;
21771
+ if (contentEl) {
21772
+ if (contentEl.hasAttribute(SSR_ATTR_NAME)) {
21773
+ contentEl.removeAttribute(SSR_ATTR_NAME);
21774
+ isSsrRef.value = true;
21775
+ }
21776
+ }
21777
+ });
21778
+ provide(gridInjectionKey, {
21779
+ layoutShiftDisabledRef: toRef(props, "layoutShiftDisabled"),
21780
+ isSsrRef,
21781
+ itemStyleRef: toRef(props, "itemStyle"),
21782
+ xGapRef: responsiveXGapRef,
21783
+ overflowRef
21784
+ });
21785
+ return {
21786
+ isSsr: !isBrowser$2,
21787
+ contentEl: contentElRef,
21788
+ mergedClsPrefix: mergedClsPrefixRef,
21789
+ style: computed(() => {
21790
+ if (props.layoutShiftDisabled) {
21791
+ return {
21792
+ width: "100%",
21793
+ display: "grid",
21794
+ gridTemplateColumns: `repeat(${props.cols}, minmax(0, 1fr))`,
21795
+ columnGap: pxfy(props.xGap),
21796
+ rowGap: pxfy(props.yGap)
21797
+ };
21798
+ }
21799
+ return {
21800
+ width: "100%",
21801
+ display: "grid",
21802
+ gridTemplateColumns: `repeat(${responsiveColsRef.value}, minmax(0, 1fr))`,
21803
+ columnGap: pxfy(responsiveXGapRef.value),
21804
+ rowGap: pxfy(responsiveYGapRef.value)
21805
+ };
21806
+ }),
21807
+ isResponsive: isResponsiveRef,
21808
+ responsiveQuery: responsiveQueryRef,
21809
+ responsiveCols: responsiveColsRef,
21810
+ handleResize: handleResizeRef,
21811
+ overflow: overflowRef
21812
+ };
21813
+ },
21814
+ render() {
21815
+ if (this.layoutShiftDisabled) {
21816
+ return h("div", mergeProps({
21817
+ ref: "contentEl",
21818
+ class: `${this.mergedClsPrefix}-grid`,
21819
+ style: this.style
21820
+ }, this.$attrs), this.$slots);
21821
+ }
21822
+ const renderContent = () => {
21823
+ var _a2, _b, _c, _d, _e, _f, _g;
21824
+ this.overflow = false;
21825
+ const rawChildren = flatten$2(getSlot$1(this));
21826
+ const childrenAndRawSpan = [];
21827
+ const {
21828
+ collapsed,
21829
+ collapsedRows,
21830
+ responsiveCols,
21831
+ responsiveQuery
21832
+ } = this;
21833
+ rawChildren.forEach((child) => {
21834
+ var _a3, _b2, _c2, _d2, _e2;
21835
+ if (((_a3 = child === null || child === void 0 ? void 0 : child.type) === null || _a3 === void 0 ? void 0 : _a3.__GRID_ITEM__) !== true)
21836
+ return;
21837
+ if (isNodeVShowFalse(child)) {
21838
+ const clonedNode = cloneVNode(child);
21839
+ if (clonedNode.props) {
21840
+ clonedNode.props.privateShow = false;
21841
+ } else {
21842
+ clonedNode.props = {
21843
+ privateShow: false
21844
+ };
21845
+ }
21846
+ childrenAndRawSpan.push({
21847
+ child: clonedNode,
21848
+ rawChildSpan: 0
21849
+ });
21850
+ return;
21851
+ }
21852
+ child.dirs = ((_b2 = child.dirs) === null || _b2 === void 0 ? void 0 : _b2.filter(({
21853
+ dir
21854
+ }) => dir !== vShow)) || null;
21855
+ if (((_c2 = child.dirs) === null || _c2 === void 0 ? void 0 : _c2.length) === 0) {
21856
+ child.dirs = null;
21857
+ }
21858
+ const clonedChild = cloneVNode(child);
21859
+ const rawChildSpan = Number((_e2 = parseResponsivePropValue((_d2 = clonedChild.props) === null || _d2 === void 0 ? void 0 : _d2.span, responsiveQuery)) !== null && _e2 !== void 0 ? _e2 : defaultSpan$1);
21860
+ if (rawChildSpan === 0)
21861
+ return;
21862
+ childrenAndRawSpan.push({
21863
+ child: clonedChild,
21864
+ rawChildSpan
21865
+ });
21866
+ });
21867
+ let suffixSpan = 0;
21868
+ const maybeSuffixNode = (_a2 = childrenAndRawSpan[childrenAndRawSpan.length - 1]) === null || _a2 === void 0 ? void 0 : _a2.child;
21869
+ if (maybeSuffixNode === null || maybeSuffixNode === void 0 ? void 0 : maybeSuffixNode.props) {
21870
+ const suffixPropValue = (_b = maybeSuffixNode.props) === null || _b === void 0 ? void 0 : _b.suffix;
21871
+ if (suffixPropValue !== void 0 && suffixPropValue !== false) {
21872
+ suffixSpan = Number((_d = parseResponsivePropValue((_c = maybeSuffixNode.props) === null || _c === void 0 ? void 0 : _c.span, responsiveQuery)) !== null && _d !== void 0 ? _d : defaultSpan$1);
21873
+ maybeSuffixNode.props.privateSpan = suffixSpan;
21874
+ maybeSuffixNode.props.privateColStart = responsiveCols + 1 - suffixSpan;
21875
+ maybeSuffixNode.props.privateShow = (_e = maybeSuffixNode.props.privateShow) !== null && _e !== void 0 ? _e : true;
21876
+ }
21877
+ }
21878
+ let spanCounter = 0;
21879
+ let done = false;
21880
+ for (const {
21881
+ child,
21882
+ rawChildSpan
21883
+ } of childrenAndRawSpan) {
21884
+ if (done) {
21885
+ this.overflow = true;
21886
+ }
21887
+ if (!done) {
21888
+ const childOffset = Number((_g = parseResponsivePropValue((_f = child.props) === null || _f === void 0 ? void 0 : _f.offset, responsiveQuery)) !== null && _g !== void 0 ? _g : 0);
21889
+ const childSpan = Math.min(rawChildSpan + childOffset, responsiveCols);
21890
+ if (!child.props) {
21891
+ child.props = {
21892
+ privateSpan: childSpan,
21893
+ privateOffset: childOffset
21894
+ };
21895
+ } else {
21896
+ child.props.privateSpan = childSpan;
21897
+ child.props.privateOffset = childOffset;
21898
+ }
21899
+ if (collapsed) {
21900
+ const remainder = spanCounter % responsiveCols;
21901
+ if (childSpan + remainder > responsiveCols) {
21902
+ spanCounter += responsiveCols - remainder;
21903
+ }
21904
+ if (childSpan + spanCounter + suffixSpan > collapsedRows * responsiveCols) {
21905
+ done = true;
21906
+ } else {
21907
+ spanCounter += childSpan;
21908
+ }
21909
+ }
21910
+ }
21911
+ if (done) {
21912
+ if (child.props) {
21913
+ if (child.props.privateShow !== true) {
21914
+ child.props.privateShow = false;
21915
+ }
21916
+ } else {
21917
+ child.props = {
21918
+ privateShow: false
21919
+ };
21920
+ }
21921
+ }
21922
+ }
21923
+ return h("div", mergeProps({
21924
+ ref: "contentEl",
21925
+ class: `${this.mergedClsPrefix}-grid`,
21926
+ style: this.style,
21927
+ [SSR_ATTR_NAME]: this.isSsr || void 0
21928
+ }, this.$attrs), childrenAndRawSpan.map(({
21929
+ child
21930
+ }) => child));
21931
+ };
21932
+ return this.isResponsive && this.responsive === "self" ? h(VResizeObserver, {
21933
+ onResize: this.handleResize
21934
+ }, {
21935
+ default: renderContent
21936
+ }) : renderContent();
21937
+ }
21938
+ });
21469
21939
  var commonVars$1 = {
21470
21940
  closeMargin: "16px 12px",
21471
21941
  closeSize: "20px",
@@ -33553,324 +34023,20 @@ var lodash = { exports: {} };
33553
34023
  }).call(commonjsGlobal);
33554
34024
  })(lodash, lodash.exports);
33555
34025
  var _ = lodash.exports;
33556
- /*!
33557
- * pinia v2.3.1
33558
- * (c) 2025 Eduardo San Martin Morote
33559
- * @license MIT
33560
- */
33561
- let activePinia;
33562
- const setActivePinia = (pinia) => activePinia = pinia;
33563
- const piniaSymbol = Symbol();
33564
- function isPlainObject$1(o) {
33565
- return o && typeof o === "object" && Object.prototype.toString.call(o) === "[object Object]" && typeof o.toJSON !== "function";
33566
- }
33567
- var MutationType;
33568
- (function(MutationType2) {
33569
- MutationType2["direct"] = "direct";
33570
- MutationType2["patchObject"] = "patch object";
33571
- MutationType2["patchFunction"] = "patch function";
33572
- })(MutationType || (MutationType = {}));
33573
- const noop$1 = () => {
33574
- };
33575
- function addSubscription(subscriptions, callback, detached, onCleanup = noop$1) {
33576
- subscriptions.push(callback);
33577
- const removeSubscription = () => {
33578
- const idx = subscriptions.indexOf(callback);
33579
- if (idx > -1) {
33580
- subscriptions.splice(idx, 1);
33581
- onCleanup();
33582
- }
33583
- };
33584
- if (!detached && getCurrentScope()) {
33585
- onScopeDispose(removeSubscription);
33586
- }
33587
- return removeSubscription;
33588
- }
33589
- function triggerSubscriptions(subscriptions, ...args) {
33590
- subscriptions.slice().forEach((callback) => {
33591
- callback(...args);
33592
- });
33593
- }
33594
- const fallbackRunWithContext = (fn) => fn();
33595
- const ACTION_MARKER = Symbol();
33596
- const ACTION_NAME = Symbol();
33597
- function mergeReactiveObjects(target, patchToApply) {
33598
- if (target instanceof Map && patchToApply instanceof Map) {
33599
- patchToApply.forEach((value, key) => target.set(key, value));
33600
- } else if (target instanceof Set && patchToApply instanceof Set) {
33601
- patchToApply.forEach(target.add, target);
33602
- }
33603
- for (const key in patchToApply) {
33604
- if (!patchToApply.hasOwnProperty(key))
33605
- continue;
33606
- const subPatch = patchToApply[key];
33607
- const targetValue = target[key];
33608
- if (isPlainObject$1(targetValue) && isPlainObject$1(subPatch) && target.hasOwnProperty(key) && !isRef(subPatch) && !isReactive(subPatch)) {
33609
- target[key] = mergeReactiveObjects(targetValue, subPatch);
33610
- } else {
33611
- target[key] = subPatch;
33612
- }
33613
- }
33614
- return target;
33615
- }
33616
- const skipHydrateSymbol = Symbol();
33617
- function shouldHydrate(obj) {
33618
- return !isPlainObject$1(obj) || !obj.hasOwnProperty(skipHydrateSymbol);
33619
- }
33620
- const { assign: assign$1 } = Object;
33621
- function isComputed(o) {
33622
- return !!(isRef(o) && o.effect);
33623
- }
33624
- function createOptionsStore(id, options, pinia, hot) {
33625
- const { state, actions, getters } = options;
33626
- const initialState = pinia.state.value[id];
33627
- let store;
33628
- function setup2() {
33629
- if (!initialState && true) {
33630
- {
33631
- pinia.state.value[id] = state ? state() : {};
33632
- }
33633
- }
33634
- const localState = toRefs(pinia.state.value[id]);
33635
- return assign$1(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => {
33636
- computedGetters[name] = markRaw(computed(() => {
33637
- setActivePinia(pinia);
33638
- const store2 = pinia._s.get(id);
33639
- return getters[name].call(store2, store2);
33640
- }));
33641
- return computedGetters;
33642
- }, {}));
33643
- }
33644
- store = createSetupStore(id, setup2, options, pinia, hot, true);
33645
- return store;
33646
- }
33647
- function createSetupStore($id, setup2, options = {}, pinia, hot, isOptionsStore) {
33648
- let scope;
33649
- const optionsForPlugin = assign$1({ actions: {} }, options);
33650
- const $subscribeOptions = { deep: true };
33651
- let isListening;
33652
- let isSyncListening;
33653
- let subscriptions = [];
33654
- let actionSubscriptions = [];
33655
- let debuggerEvents;
33656
- const initialState = pinia.state.value[$id];
33657
- if (!isOptionsStore && !initialState && true) {
33658
- {
33659
- pinia.state.value[$id] = {};
33660
- }
33661
- }
33662
- ref$1({});
33663
- let activeListener;
33664
- function $patch(partialStateOrMutator) {
33665
- let subscriptionMutation;
33666
- isListening = isSyncListening = false;
33667
- if (typeof partialStateOrMutator === "function") {
33668
- partialStateOrMutator(pinia.state.value[$id]);
33669
- subscriptionMutation = {
33670
- type: MutationType.patchFunction,
33671
- storeId: $id,
33672
- events: debuggerEvents
33673
- };
33674
- } else {
33675
- mergeReactiveObjects(pinia.state.value[$id], partialStateOrMutator);
33676
- subscriptionMutation = {
33677
- type: MutationType.patchObject,
33678
- payload: partialStateOrMutator,
33679
- storeId: $id,
33680
- events: debuggerEvents
33681
- };
33682
- }
33683
- const myListenerId = activeListener = Symbol();
33684
- nextTick().then(() => {
33685
- if (activeListener === myListenerId) {
33686
- isListening = true;
33687
- }
33688
- });
33689
- isSyncListening = true;
33690
- triggerSubscriptions(subscriptions, subscriptionMutation, pinia.state.value[$id]);
33691
- }
33692
- const $reset = isOptionsStore ? function $reset2() {
33693
- const { state } = options;
33694
- const newState = state ? state() : {};
33695
- this.$patch(($state) => {
33696
- assign$1($state, newState);
33697
- });
33698
- } : noop$1;
33699
- function $dispose() {
33700
- scope.stop();
33701
- subscriptions = [];
33702
- actionSubscriptions = [];
33703
- pinia._s.delete($id);
33704
- }
33705
- const action = (fn, name = "") => {
33706
- if (ACTION_MARKER in fn) {
33707
- fn[ACTION_NAME] = name;
33708
- return fn;
33709
- }
33710
- const wrappedAction = function() {
33711
- setActivePinia(pinia);
33712
- const args = Array.from(arguments);
33713
- const afterCallbackList = [];
33714
- const onErrorCallbackList = [];
33715
- function after(callback) {
33716
- afterCallbackList.push(callback);
33717
- }
33718
- function onError(callback) {
33719
- onErrorCallbackList.push(callback);
33720
- }
33721
- triggerSubscriptions(actionSubscriptions, {
33722
- args,
33723
- name: wrappedAction[ACTION_NAME],
33724
- store,
33725
- after,
33726
- onError
33727
- });
33728
- let ret;
33729
- try {
33730
- ret = fn.apply(this && this.$id === $id ? this : store, args);
33731
- } catch (error2) {
33732
- triggerSubscriptions(onErrorCallbackList, error2);
33733
- throw error2;
33734
- }
33735
- if (ret instanceof Promise) {
33736
- return ret.then((value) => {
33737
- triggerSubscriptions(afterCallbackList, value);
33738
- return value;
33739
- }).catch((error2) => {
33740
- triggerSubscriptions(onErrorCallbackList, error2);
33741
- return Promise.reject(error2);
33742
- });
33743
- }
33744
- triggerSubscriptions(afterCallbackList, ret);
33745
- return ret;
33746
- };
33747
- wrappedAction[ACTION_MARKER] = true;
33748
- wrappedAction[ACTION_NAME] = name;
33749
- return wrappedAction;
33750
- };
33751
- const partialStore = {
33752
- _p: pinia,
33753
- $id,
33754
- $onAction: addSubscription.bind(null, actionSubscriptions),
33755
- $patch,
33756
- $reset,
33757
- $subscribe(callback, options2 = {}) {
33758
- const removeSubscription = addSubscription(subscriptions, callback, options2.detached, () => stopWatcher());
33759
- const stopWatcher = scope.run(() => watch(() => pinia.state.value[$id], (state) => {
33760
- if (options2.flush === "sync" ? isSyncListening : isListening) {
33761
- callback({
33762
- storeId: $id,
33763
- type: MutationType.direct,
33764
- events: debuggerEvents
33765
- }, state);
33766
- }
33767
- }, assign$1({}, $subscribeOptions, options2)));
33768
- return removeSubscription;
33769
- },
33770
- $dispose
33771
- };
33772
- const store = reactive(partialStore);
33773
- pinia._s.set($id, store);
33774
- const runWithContext = pinia._a && pinia._a.runWithContext || fallbackRunWithContext;
33775
- const setupStore = runWithContext(() => pinia._e.run(() => (scope = effectScope()).run(() => setup2({ action }))));
33776
- for (const key in setupStore) {
33777
- const prop = setupStore[key];
33778
- if (isRef(prop) && !isComputed(prop) || isReactive(prop)) {
33779
- if (!isOptionsStore) {
33780
- if (initialState && shouldHydrate(prop)) {
33781
- if (isRef(prop)) {
33782
- prop.value = initialState[key];
33783
- } else {
33784
- mergeReactiveObjects(prop, initialState[key]);
33785
- }
33786
- }
33787
- {
33788
- pinia.state.value[$id][key] = prop;
33789
- }
33790
- }
33791
- } else if (typeof prop === "function") {
33792
- const actionValue = action(prop, key);
33793
- {
33794
- setupStore[key] = actionValue;
33795
- }
33796
- optionsForPlugin.actions[key] = prop;
33797
- } else
33798
- ;
33799
- }
33800
- {
33801
- assign$1(store, setupStore);
33802
- assign$1(toRaw(store), setupStore);
33803
- }
33804
- Object.defineProperty(store, "$state", {
33805
- get: () => pinia.state.value[$id],
33806
- set: (state) => {
33807
- $patch(($state) => {
33808
- assign$1($state, state);
33809
- });
33810
- }
33811
- });
33812
- pinia._p.forEach((extender) => {
33813
- {
33814
- assign$1(store, scope.run(() => extender({
33815
- store,
33816
- app: pinia._a,
33817
- pinia,
33818
- options: optionsForPlugin
33819
- })));
33820
- }
33821
- });
33822
- if (initialState && isOptionsStore && options.hydrate) {
33823
- options.hydrate(store.$state, initialState);
33824
- }
33825
- isListening = true;
33826
- isSyncListening = true;
33827
- return store;
33828
- }
33829
- /*! #__NO_SIDE_EFFECTS__ */
33830
- function defineStore(idOrOptions, setup2, setupOptions) {
33831
- let id;
33832
- let options;
33833
- const isSetupStore = typeof setup2 === "function";
33834
- if (typeof idOrOptions === "string") {
33835
- id = idOrOptions;
33836
- options = isSetupStore ? setupOptions : setup2;
33837
- } else {
33838
- options = idOrOptions;
33839
- id = idOrOptions.id;
33840
- }
33841
- function useStore2(pinia, hot) {
33842
- const hasContext = hasInjectionContext();
33843
- pinia = pinia || (hasContext ? inject(piniaSymbol, null) : null);
33844
- if (pinia)
33845
- setActivePinia(pinia);
33846
- pinia = activePinia;
33847
- if (!pinia._s.has(id)) {
33848
- if (isSetupStore) {
33849
- createSetupStore(id, setup2, options, pinia);
33850
- } else {
33851
- createOptionsStore(id, options, pinia);
33852
- }
33853
- }
33854
- const store = pinia._s.get(id);
33855
- return store;
33856
- }
33857
- useStore2.$id = id;
33858
- return useStore2;
33859
- }
33860
34026
  var nodesConfig = {
33861
34027
  "1": {
33862
34028
  type: 1,
33863
34029
  name: "\u5BA1\u6279",
33864
34030
  iconfont: "iconfont icon-shenpiguanli",
33865
34031
  bgColor: "rgb(255, 148, 62)",
33866
- desc: "\u5BA1\u6279\u8282\u70B9\uFF0C\u6DFB\u52A0\u5BA1\u6279\u4EBA\u4FE1\u606F"
34032
+ desc: "\u5BA1\u6279\u8282\u70B9\uFF0C\u5BA1\u6279\u4EBA\u5BA1\u6279"
33867
34033
  },
33868
34034
  "2": {
33869
34035
  type: 2,
33870
34036
  name: "\u6284\u9001",
33871
34037
  iconfont: "iconfont icon-chaosong",
33872
34038
  bgColor: "rgb(50, 150, 250)",
33873
- desc: "\u6284\u9001\u8282\u70B9\uFF0C\u6DFB\u52A0\u5BA1\u6279\u4EBA\u4FE1\u606F"
34039
+ desc: "\u6284\u9001\u8282\u70B9\uFF0C\u5BA1\u6279\u4EBA\u5BA1\u6279"
33874
34040
  }
33875
34041
  };
33876
34042
  var operations = [
@@ -33927,10 +34093,29 @@ var drawerConfig = {
33927
34093
  }],
33928
34094
  defaultValue: 0
33929
34095
  },
34096
+ {
34097
+ name: "\u4E0A\u8282\u70B9\u663E\u793A\u5F53\u524D\u8282\u70B9\u529E\u7406\u4EBA",
34098
+ key: "show_assignee.type",
34099
+ type: "Select",
34100
+ options: [{
34101
+ label: "\u4E0D\u663E\u793A",
34102
+ value: 0
34103
+ }, {
34104
+ label: "\u663E\u793A",
34105
+ value: 1
34106
+ }, {
34107
+ label: "\u5141\u8BB8\u9009\u62E9",
34108
+ value: 2
34109
+ }, {
34110
+ label: "\u5168\u9009\u5E76\u5141\u8BB8\u9009\u62E9",
34111
+ value: 3
34112
+ }],
34113
+ defaultValue: 1
34114
+ },
33930
34115
  { name: "\u4F1A\u7B7E\u5B8C\u6210\u7387", key: "examine_complete_condition", type: "Expression", defaultValue: "", config: { hideInput: true }, vif(data2) {
33931
34116
  return [1, 2].includes(data2.examine_type);
33932
34117
  } },
33933
- { name: "\u5BA1\u6279\u4EBA\u8BBE\u7F6E", key: "assignee", type: "Personnel", defaultValue: {}, required: true },
34118
+ { name: "\u5BA1\u6279\u4EBA\u8BBE\u7F6E", key: "assignee", type: "Personnel", defaultValue: [], required: true },
33934
34119
  {
33935
34120
  name: "\u8282\u70B9\u573A\u666F",
33936
34121
  key: "task_type",
@@ -33946,8 +34131,7 @@ var drawerConfig = {
33946
34131
  }],
33947
34132
  defaultValue: 0
33948
34133
  },
33949
- { name: "\u64CD\u4F5C", key: "operations", type: "Operation", defaultValue: operations },
33950
- { name: "\u5904\u7406\u610F\u89C1", key: "enable_comment", type: "Switch", defaultValue: 0 }
34134
+ { name: "\u64CD\u4F5C", key: "operations", type: "Operation", defaultValue: operations }
33951
34135
  ],
33952
34136
  "2": [
33953
34137
  { name: "\u8282\u70B9\u540D\u79F0", key: "node_name", type: "Input", required: true },
@@ -34015,7 +34199,6 @@ const useStore = defineStore("store", {
34015
34199
  this.drawerConfig = payload;
34016
34200
  },
34017
34201
  setLcyqConfig(payload) {
34018
- console.log(payload.nodesConfig);
34019
34202
  this.nodesConfig = { ...nodesConfig, ...payload.nodesConfig };
34020
34203
  this.pluginsConfig = { ...drawerConfig, ...payload.pluginsConfig };
34021
34204
  this.expressionConfig = payload.expressionConfig;
@@ -34024,11 +34207,11 @@ const useStore = defineStore("store", {
34024
34207
  }
34025
34208
  }
34026
34209
  });
34027
- const _hoisted_1$f = { class: "lcyq_drawer_item" };
34028
- const _hoisted_2$e = { class: "title" };
34029
- const _hoisted_3$e = { key: 0 };
34030
- const _hoisted_4$c = { class: "plugin" };
34031
- const _sfc_main$g = {
34210
+ const _hoisted_1$h = { class: "lcyq_drawer_item" };
34211
+ const _hoisted_2$f = { class: "title" };
34212
+ const _hoisted_3$f = { key: 0 };
34213
+ const _hoisted_4$d = { class: "plugin" };
34214
+ const _sfc_main$i = {
34032
34215
  __name: "input",
34033
34216
  props: {
34034
34217
  info: {
@@ -34063,14 +34246,14 @@ const _sfc_main$g = {
34063
34246
  }
34064
34247
  });
34065
34248
  return (_ctx, _cache) => {
34066
- return openBlock(), createElementBlock("div", _hoisted_1$f, [
34067
- createElementVNode("div", _hoisted_2$e, [
34249
+ return openBlock(), createElementBlock("div", _hoisted_1$h, [
34250
+ createElementVNode("div", _hoisted_2$f, [
34068
34251
  createElementVNode("span", null, [
34069
34252
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
34070
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$e, "*")) : createCommentVNode("", true)
34253
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$f, "*")) : createCommentVNode("", true)
34071
34254
  ])
34072
34255
  ]),
34073
- createElementVNode("div", _hoisted_4$c, [
34256
+ createElementVNode("div", _hoisted_4$d, [
34074
34257
  createVNode(unref(NInput), {
34075
34258
  value: curValue.value,
34076
34259
  "onUpdate:value": _cache[0] || (_cache[0] = ($event) => curValue.value = $event),
@@ -34081,11 +34264,11 @@ const _sfc_main$g = {
34081
34264
  };
34082
34265
  }
34083
34266
  };
34084
- const _hoisted_1$e = { class: "lcyq_drawer_item" };
34085
- const _hoisted_2$d = { class: "title line" };
34086
- const _hoisted_3$d = { key: 0 };
34087
- const _hoisted_4$b = { class: "plugin" };
34088
- const _sfc_main$f = {
34267
+ const _hoisted_1$g = { class: "lcyq_drawer_item" };
34268
+ const _hoisted_2$e = { class: "title line" };
34269
+ const _hoisted_3$e = { key: 0 };
34270
+ const _hoisted_4$c = { class: "plugin" };
34271
+ const _sfc_main$h = {
34089
34272
  __name: "select",
34090
34273
  props: {
34091
34274
  info: {
@@ -34103,6 +34286,14 @@ const _sfc_main$f = {
34103
34286
  }
34104
34287
  });
34105
34288
  let props = __props;
34289
+ const nowValue = computed({
34290
+ get() {
34291
+ return _.get(drawerConfig2.value.node_config, props.info.key);
34292
+ },
34293
+ set(val) {
34294
+ _.set(drawerConfig2.value.node_config, props.info.key, val);
34295
+ }
34296
+ });
34106
34297
  function valueChange(val) {
34107
34298
  switch (props.info.key) {
34108
34299
  case "task_type":
@@ -34138,18 +34329,18 @@ const _sfc_main$f = {
34138
34329
  drawerConfig2.value.node_config.operations = _.cloneDeep(newOperations);
34139
34330
  }
34140
34331
  return (_ctx, _cache) => {
34141
- return openBlock(), createElementBlock("div", _hoisted_1$e, [
34142
- createElementVNode("div", _hoisted_2$d, [
34332
+ return openBlock(), createElementBlock("div", _hoisted_1$g, [
34333
+ createElementVNode("div", _hoisted_2$e, [
34143
34334
  createElementVNode("span", null, [
34144
34335
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
34145
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$d, "*")) : createCommentVNode("", true)
34336
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$e, "*")) : createCommentVNode("", true)
34146
34337
  ])
34147
34338
  ]),
34148
- createElementVNode("div", _hoisted_4$b, [
34339
+ createElementVNode("div", _hoisted_4$c, [
34149
34340
  createVNode(unref(NSelect), {
34150
- value: unref(drawerConfig2).node_config[__props.info.key],
34341
+ value: nowValue.value,
34151
34342
  "onUpdate:value": [
34152
- _cache[0] || (_cache[0] = ($event) => unref(drawerConfig2).node_config[__props.info.key] = $event),
34343
+ _cache[0] || (_cache[0] = ($event) => nowValue.value = $event),
34153
34344
  valueChange
34154
34345
  ],
34155
34346
  options: __props.info.options
@@ -34943,8 +35134,8 @@ const vLoading = {
34943
35134
  var base = /* @__PURE__ */ (() => '@charset "UTF-8";:root{--el-color-white:#ffffff;--el-color-black:#000000;--el-color-primary-rgb:64,158,255;--el-color-success-rgb:103,194,58;--el-color-warning-rgb:230,162,60;--el-color-danger-rgb:245,108,108;--el-color-error-rgb:245,108,108;--el-color-info-rgb:144,147,153;--el-font-size-extra-large:20px;--el-font-size-large:18px;--el-font-size-medium:16px;--el-font-size-base:14px;--el-font-size-small:13px;--el-font-size-extra-small:12px;--el-font-family:"Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","\\5fae\\8f6f\\96c5\\9ed1",Arial,sans-serif;--el-font-weight-primary:500;--el-font-line-height-primary:24px;--el-index-normal:1;--el-index-top:1000;--el-index-popper:2000;--el-border-radius-base:4px;--el-border-radius-small:2px;--el-border-radius-round:20px;--el-border-radius-circle:100%;--el-transition-duration:.3s;--el-transition-duration-fast:.2s;--el-transition-function-ease-in-out-bezier:cubic-bezier(.645,.045,.355,1);--el-transition-function-fast-bezier:cubic-bezier(.23,1,.32,1);--el-transition-all:all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);--el-transition-fade:opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);--el-transition-md-fade:transform var(--el-transition-duration) var(--el-transition-function-fast-bezier),opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);--el-transition-fade-linear:opacity var(--el-transition-duration-fast) linear;--el-transition-border:border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-transition-box-shadow:box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-transition-color:color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);--el-component-size-large:40px;--el-component-size:32px;--el-component-size-small:24px;color-scheme:light;--el-color-primary:#409eff;--el-color-primary-light-3:rgb(121.3,187.1,255);--el-color-primary-light-5:rgb(159.5,206.5,255);--el-color-primary-light-7:rgb(197.7,225.9,255);--el-color-primary-light-8:rgb(216.8,235.6,255);--el-color-primary-light-9:rgb(235.9,245.3,255);--el-color-primary-dark-2:rgb(51.2,126.4,204);--el-color-success:#67c23a;--el-color-success-light-3:rgb(148.6,212.3,117.1);--el-color-success-light-5:rgb(179,224.5,156.5);--el-color-success-light-7:rgb(209.4,236.7,195.9);--el-color-success-light-8:rgb(224.6,242.8,215.6);--el-color-success-light-9:rgb(239.8,248.9,235.3);--el-color-success-dark-2:rgb(82.4,155.2,46.4);--el-color-warning:#e6a23c;--el-color-warning-light-3:rgb(237.5,189.9,118.5);--el-color-warning-light-5:rgb(242.5,208.5,157.5);--el-color-warning-light-7:rgb(247.5,227.1,196.5);--el-color-warning-light-8:rgb(250,236.4,216);--el-color-warning-light-9:rgb(252.5,245.7,235.5);--el-color-warning-dark-2:rgb(184,129.6,48);--el-color-danger:#f56c6c;--el-color-danger-light-3:rgb(248,152.1,152.1);--el-color-danger-light-5:rgb(250,181.5,181.5);--el-color-danger-light-7:rgb(252,210.9,210.9);--el-color-danger-light-8:rgb(253,225.6,225.6);--el-color-danger-light-9:rgb(254,240.3,240.3);--el-color-danger-dark-2:rgb(196,86.4,86.4);--el-color-error:#f56c6c;--el-color-error-light-3:rgb(248,152.1,152.1);--el-color-error-light-5:rgb(250,181.5,181.5);--el-color-error-light-7:rgb(252,210.9,210.9);--el-color-error-light-8:rgb(253,225.6,225.6);--el-color-error-light-9:rgb(254,240.3,240.3);--el-color-error-dark-2:rgb(196,86.4,86.4);--el-color-info:#909399;--el-color-info-light-3:rgb(177.3,179.4,183.6);--el-color-info-light-5:rgb(199.5,201,204);--el-color-info-light-7:rgb(221.7,222.6,224.4);--el-color-info-light-8:rgb(232.8,233.4,234.6);--el-color-info-light-9:rgb(243.9,244.2,244.8);--el-color-info-dark-2:rgb(115.2,117.6,122.4);--el-bg-color:#ffffff;--el-bg-color-page:#f2f3f5;--el-bg-color-overlay:#ffffff;--el-text-color-primary:#303133;--el-text-color-regular:#606266;--el-text-color-secondary:#909399;--el-text-color-placeholder:#a8abb2;--el-text-color-disabled:#c0c4cc;--el-border-color:#dcdfe6;--el-border-color-light:#e4e7ed;--el-border-color-lighter:#ebeef5;--el-border-color-extra-light:#f2f6fc;--el-border-color-dark:#d4d7de;--el-border-color-darker:#cdd0d6;--el-fill-color:#f0f2f5;--el-fill-color-light:#f5f7fa;--el-fill-color-lighter:#fafafa;--el-fill-color-extra-light:#fafcff;--el-fill-color-dark:#ebedf0;--el-fill-color-darker:#e6e8eb;--el-fill-color-blank:#ffffff;--el-box-shadow:0px 12px 32px 4px rgba(0,0,0,.04),0px 8px 20px rgba(0,0,0,.08);--el-box-shadow-light:0px 0px 12px rgba(0,0,0,.12);--el-box-shadow-lighter:0px 0px 6px rgba(0,0,0,.12);--el-box-shadow-dark:0px 16px 48px 16px rgba(0,0,0,.08),0px 12px 32px rgba(0,0,0,.12),0px 8px 16px -8px rgba(0,0,0,.16);--el-disabled-bg-color:var(--el-fill-color-light);--el-disabled-text-color:var(--el-text-color-placeholder);--el-disabled-border-color:var(--el-border-color-light);--el-overlay-color:rgba(0,0,0,.8);--el-overlay-color-light:rgba(0,0,0,.7);--el-overlay-color-lighter:rgba(0,0,0,.5);--el-mask-color:rgba(255,255,255,.9);--el-mask-color-extra-light:rgba(255,255,255,.3);--el-border-width:1px;--el-border-style:solid;--el-border-color-hover:var(--el-text-color-disabled);--el-border:var(--el-border-width) var(--el-border-style) var(--el-border-color);--el-svg-monochrome-grey:var(--el-border-color)}.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.el-fade-in-linear-enter-from,.el-fade-in-linear-leave-to{opacity:0}.el-fade-in-enter-active,.el-fade-in-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-fade-in-enter-from,.el-fade-in-leave-active{opacity:0}.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter-from,.el-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--el-transition-md-fade)}.el-zoom-in-top-enter-active[data-popper-placement^=top],.el-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.el-zoom-in-top-enter-from,.el-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transform-origin:center bottom;transition:var(--el-transition-md-fade)}.el-zoom-in-bottom-enter-from,.el-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;transform:scale(1);transform-origin:top left;transition:var(--el-transition-md-fade)}.el-zoom-in-left-enter-from,.el-zoom-in-left-leave-active{opacity:0;transform:scale(.45)}.collapse-transition{transition:var(--el-transition-duration) height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.el-collapse-transition-enter-active,.el-collapse-transition-leave-active{transition:var(--el-transition-duration) max-height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--el-transition-duration) width ease-in-out,var(--el-transition-duration) padding-left ease-in-out,var(--el-transition-duration) padding-right ease-in-out}.el-list-enter-active,.el-list-leave-active{transition:all 1s}.el-list-enter-from,.el-list-leave-to{opacity:0;transform:translateY(-30px)}.el-list-leave-active{position:absolute!important}.el-opacity-transition{transition:opacity var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-icon-loading{animation:rotating 2s linear infinite}.el-icon--right{margin-left:5px}.el-icon--left{margin-right:5px}@keyframes rotating{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.el-icon{--color:inherit;align-items:center;display:inline-flex;height:1em;justify-content:center;line-height:1em;position:relative;width:1em;fill:currentColor;color:var(--color);font-size:inherit}.el-icon.is-loading{animation:rotating 2s linear infinite}.el-icon svg{height:1em;width:1em}\n')();
34944
35135
  var elLoading = /* @__PURE__ */ (() => ":root{--el-loading-spinner-size:42px;--el-loading-fullscreen-spinner-size:50px}.el-loading-parent--relative{position:relative!important}.el-loading-parent--hidden{overflow:hidden!important}.el-loading-mask{background-color:var(--el-mask-color);bottom:0;left:0;margin:0;position:absolute;right:0;top:0;transition:opacity var(--el-transition-duration);z-index:2000}.el-loading-mask.is-fullscreen{position:fixed}.el-loading-mask.is-fullscreen .el-loading-spinner{margin-top:calc((0px - var(--el-loading-fullscreen-spinner-size))/2)}.el-loading-mask.is-fullscreen .el-loading-spinner .circular{height:var(--el-loading-fullscreen-spinner-size);width:var(--el-loading-fullscreen-spinner-size)}.el-loading-spinner{margin-top:calc((0px - var(--el-loading-spinner-size))/2);position:absolute;text-align:center;top:50%;width:100%}.el-loading-spinner .el-loading-text{color:var(--el-color-primary);font-size:14px;margin:3px 0}.el-loading-spinner .circular{animation:loading-rotate 2s linear infinite;display:inline;height:var(--el-loading-spinner-size);width:var(--el-loading-spinner-size)}.el-loading-spinner .path{animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:var(--el-color-primary);stroke-linecap:round}.el-loading-spinner i{color:var(--el-color-primary)}.el-loading-fade-enter-from,.el-loading-fade-leave-to{opacity:0}@keyframes loading-rotate{to{transform:rotate(1turn)}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}to{stroke-dasharray:90,150;stroke-dashoffset:-120px}}\n")();
34945
35136
  var zModal_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".z_modal.is_full{min-height:100vh}.z_modal.is_full .z_modal_cont{height:calc(100vh - 1.38rem)}.z_modal .btnInterval{margin-top:20px}.z_modal>.n-card__content{padding:15px 20px 20px}.z_modal>.n-card__content>.btns{padding-top:15px;background-color:#fff}.z_modal>.n-card-header{padding:20px 20px 0}\n")();
34946
- const _hoisted_1$d = { class: "z_modal_cont" };
34947
- const _sfc_main$e = defineComponent({
35137
+ const _hoisted_1$f = { class: "z_modal_cont" };
35138
+ const _sfc_main$g = defineComponent({
34948
35139
  __name: "zModal",
34949
35140
  props: {
34950
35141
  size: { default: "medium" },
@@ -35033,7 +35224,7 @@ const _sfc_main$e = defineComponent({
35033
35224
  style: normalizeStyle({ maxHeight: props.height })
35034
35225
  }, {
35035
35226
  default: withCtx(() => [
35036
- createElementVNode("div", _hoisted_1$d, [
35227
+ createElementVNode("div", _hoisted_1$f, [
35037
35228
  renderSlot(_ctx.$slots, "default")
35038
35229
  ])
35039
35230
  ]),
@@ -39473,8 +39664,11 @@ var qs = lib;
39473
39664
  let config$1 = {};
39474
39665
  const _axios = axios$1.create(config$1);
39475
39666
  _axios.interceptors.request.use(function(config2) {
39667
+ if (config2.method === "get") {
39668
+ config2.params = { ...config2.params, creator: 1050043 };
39669
+ }
39476
39670
  if (config2.data && !(config2.data instanceof FormData)) {
39477
- config2.data = qs.stringify(config2.data);
39671
+ config2.data = qs.stringify({ ...config2.data, creator: 1050043 });
39478
39672
  }
39479
39673
  return config2;
39480
39674
  }, function(error2) {
@@ -39485,11 +39679,11 @@ _axios.interceptors.response.use(function(response) {
39485
39679
  }, function(error2) {
39486
39680
  return Promise.reject(error2);
39487
39681
  });
39488
- const _hoisted_1$c = { class: "content" };
39489
- const _hoisted_2$c = { class: "nav" };
39490
- const _hoisted_3$c = ["innerHTML"];
39491
- const _hoisted_4$a = { class: "wapper" };
39492
- const _hoisted_5$6 = { class: "left" };
39682
+ const _hoisted_1$e = { class: "content" };
39683
+ const _hoisted_2$d = { class: "nav" };
39684
+ const _hoisted_3$d = ["innerHTML"];
39685
+ const _hoisted_4$b = { class: "wapper" };
39686
+ const _hoisted_5$7 = { class: "left" };
39493
39687
  const _hoisted_6$6 = { class: "tree" };
39494
39688
  const _hoisted_7$3 = { class: "user_select" };
39495
39689
  const _hoisted_8$3 = {
@@ -39532,7 +39726,7 @@ const _hoisted_26 = { key: 0 };
39532
39726
  const _hoisted_27 = { key: 1 };
39533
39727
  const _hoisted_28 = ["onClick"];
39534
39728
  const _hoisted_29 = { key: 1 };
39535
- var _sfc_main$d = /* @__PURE__ */ defineComponent({
39729
+ var _sfc_main$f = /* @__PURE__ */ defineComponent({
39536
39730
  __name: "personnelPop",
39537
39731
  emits: ["ok"],
39538
39732
  setup(__props, { expose: __expose, emit: __emit }) {
@@ -39588,6 +39782,8 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39588
39782
  isOne.value = info.isOne ? info.isOne : false;
39589
39783
  isdepartOne.value = info.isdepartOne ? info.isdepartOne : false;
39590
39784
  topNav.value = _.cloneDeep(personnelPopTab);
39785
+ console.log(info.data);
39786
+ info.data = handleInfoData(info.data);
39591
39787
  if (info.nav && info.nav.length > 0) {
39592
39788
  let arr2 = [];
39593
39789
  for (let i in info.nav) {
@@ -39652,17 +39848,53 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39652
39848
  }
39653
39849
  }
39654
39850
  }
39851
+ function handleInfoData(data2) {
39852
+ let obj = {};
39853
+ for (let i of data2) {
39854
+ if (i.type === "depart") {
39855
+ if (!obj.depart) {
39856
+ obj.depart = {};
39857
+ }
39858
+ if (!obj.depart[i.organ_id]) {
39859
+ obj.depart[i.organ_id] = [];
39860
+ }
39861
+ obj.depart[i.organ_id].push(i);
39862
+ } else {
39863
+ if (!obj[i.type]) {
39864
+ obj[i.type] = [];
39865
+ }
39866
+ obj[i.type].push(i);
39867
+ }
39868
+ }
39869
+ return obj;
39870
+ }
39655
39871
  function popsure() {
39656
- emits("ok", chooseAll.value);
39872
+ emits("ok", handleSubValue(chooseAll.value));
39657
39873
  close();
39658
39874
  }
39875
+ function handleSubValue(val) {
39876
+ let arr2 = [];
39877
+ for (let key2 in val) {
39878
+ if (val[key2].length !== void 0) {
39879
+ for (let i of val[key2]) {
39880
+ arr2.push({ ...i, type: key2, value: i.id });
39881
+ }
39882
+ } else {
39883
+ for (let dKey in val[key2]) {
39884
+ for (let i of val[key2][dKey]) {
39885
+ arr2.push({ ...i, type: key2, value: i.id });
39886
+ }
39887
+ }
39888
+ }
39889
+ }
39890
+ return arr2;
39891
+ }
39659
39892
  function close() {
39660
39893
  modalRef.value.close();
39661
39894
  }
39662
39895
  const leftLoading = ref$1(true);
39663
39896
  const leftLoading2 = ref$1(true);
39664
39897
  function getorganizeTree(data2) {
39665
- console.log(leftLoading.value);
39666
39898
  _axios.get(personnelConfig.api.organApi).then((res) => {
39667
39899
  leftLoading.value = false;
39668
39900
  let newJson = {};
@@ -39678,7 +39910,6 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39678
39910
  } else {
39679
39911
  chooseAll.value.depart = newJson;
39680
39912
  }
39681
- console.log("\u90E8\u95E8", chooseAll.value.depart);
39682
39913
  if (isOne.value) {
39683
39914
  organizeTree.value = res.d.list.filter((item) => item.id == organ_id.value);
39684
39915
  } else {
@@ -39805,7 +40036,6 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39805
40036
  }
39806
40037
  let arr = [];
39807
40038
  function selectfn(keys2, option2, type2) {
39808
- console.log(88888, defaultCheckedKeys.value, keys2, option2, chooseAll.value[type2][organId.value]);
39809
40039
  if (type2 == "depart") {
39810
40040
  if (isdepartOne.value) {
39811
40041
  defaultCheckedKeys.value = keys2.length > 0 ? [keys2[keys2.length - 1]] : [];
@@ -39997,7 +40227,7 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39997
40227
  return (_ctx, _cache) => {
39998
40228
  const _component_n_radio = resolveComponent("n-radio");
39999
40229
  const _directive_loading = vLoading;
40000
- return openBlock(), createBlock(_sfc_main$e, {
40230
+ return openBlock(), createBlock(_sfc_main$g, {
40001
40231
  class: "all_modal",
40002
40232
  ref_key: "modalRef",
40003
40233
  ref: modalRef,
@@ -40006,8 +40236,8 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
40006
40236
  onOk: popsure
40007
40237
  }, {
40008
40238
  default: withCtx(() => [
40009
- createElementVNode("div", _hoisted_1$c, [
40010
- createElementVNode("div", _hoisted_2$c, [
40239
+ createElementVNode("div", _hoisted_1$e, [
40240
+ createElementVNode("div", _hoisted_2$d, [
40011
40241
  createVNode(unref(NTabs), {
40012
40242
  value: key.value,
40013
40243
  "onUpdate:value": [
@@ -40034,11 +40264,11 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
40034
40264
  key: 0,
40035
40265
  class: "desc",
40036
40266
  innerHTML: item.desc
40037
- }, null, 8, _hoisted_3$c)) : createCommentVNode("", true)
40267
+ }, null, 8, _hoisted_3$d)) : createCommentVNode("", true)
40038
40268
  ], 64);
40039
40269
  }), 256)),
40040
- createElementVNode("div", _hoisted_4$a, [
40041
- withDirectives((openBlock(), createElementBlock("div", _hoisted_5$6, [
40270
+ createElementVNode("div", _hoisted_4$b, [
40271
+ withDirectives((openBlock(), createElementBlock("div", _hoisted_5$7, [
40042
40272
  createElementVNode("div", _hoisted_6$6, [
40043
40273
  key.value == "organize" ? (openBlock(), createBlock(unref(NTree), {
40044
40274
  key: 0,
@@ -40293,7 +40523,7 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
40293
40523
  }
40294
40524
  });
40295
40525
  var personnelPop_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".all_modal .n-card-header{display:none}.all_modal .n-card__content{padding-top:0}.all_modal .n-tab-pane{display:none}.all_modal .n-tabs{padding-left:0!important}.all_modal .n-input{border:none!important}.all_modal .content .n-tree.depar_tree .n-tree-node-switcher.n-tree-node-switcher--hide{display:none}.all_modal .content .nav{display:flex;align-items:center}.all_modal .content .nav>div{padding:10px 20px;cursor:pointer}.all_modal .content .nav>div.active{color:var(--mainColor);border-bottom:2px solid var(--mainColor)}.all_modal .content .desc{margin:10px 0;line-height:26px;color:#7e7e7e;background-color:#f2f2f2;padding-left:10px}.all_modal .content .search{border-bottom:1px solid #eee}.all_modal .content .wapper{max-height:400px;min-height:200px;display:flex;border:1px solid #eee}.all_modal .content .wapper>div{flex:1;border-right:1px solid #eee;padding:8px;overflow-y:auto}.all_modal .content .wapper .enter_center{flex:none;width:70px;display:flex;justify-content:center;align-items:center;padding:0}.all_modal .content .wapper .enter_center>div>div{margin:0 auto 16px;width:24px;height:24px;background:#eeeeee;border-radius:3px;opacity:1;border:1px solid #dcdcdc;display:flex;justify-content:center;align-items:center;font-size:16px;font-weight:700}.all_modal .content .wapper .enter_center>div>div i{font-size:12px}.all_modal .content .wapper .left{overflow-y:auto}.all_modal .content .wapper .user_wapper li{padding:6px 10px;display:flex;justify-content:center;align-items:center}.all_modal .content .wapper .user_wapper li span{flex:1;width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis}.all_modal .content .wapper .user_wapper li .n-checkbox{margin-left:10px}.all_modal .content .wapper .filter_left p{border-bottom:1px solid #eee;padding:10px}.all_modal .content .wapper .filter_left>div{padding:6px 10px;display:flex;justify-content:center;align-items:center}.all_modal .content .wapper .filter_left>div span{flex:1;width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis}.all_modal .content .wapper .filter_left>div .n-checkbox{margin-left:10px}.all_modal .content .wapper .right{border-right:none;overflow-y:auto;padding:10px}.all_modal .content .wapper .right .right_top{display:flex;justify-content:flex-end}.all_modal .content .wapper .right>div>p{font-size:16px}.all_modal .content .wapper .right>div ul{margin-bottom:20px}.all_modal .content .wapper .right>div ul p{padding:10px 0 10px 10px;font-weight:700}.all_modal .content .wapper .right>div li{padding:6px 10px 6px 20px;display:flex;justify-content:center;align-items:center}.all_modal .content .wapper .right>div li span{flex:1;width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis}.all_modal .content .wapper .right>div li .n-radio{margin-left:10px}.all_modal .content .wapper .right>div li .i{margin-left:10px;cursor:pointer}\n")();
40296
- var personnel_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".assignee[data-v-435c2652]{height:140px;border:1px solid #e3e3e9;border-radius:3px}.assignee .tip_text[data-v-435c2652]{color:#999}\n")();
40526
+ var personnel_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".assignee[data-v-09d3a132]{height:140px;border:1px solid #e3e3e9;border-radius:3px}.assignee .tip_text[data-v-09d3a132]{color:#999}\n")();
40297
40527
  var _export_sfc = (sfc, props) => {
40298
40528
  const target = sfc.__vccOpts || sfc;
40299
40529
  for (const [key, val] of props) {
@@ -40301,13 +40531,13 @@ var _export_sfc = (sfc, props) => {
40301
40531
  }
40302
40532
  return target;
40303
40533
  };
40304
- const _hoisted_1$b = { class: "lcyq_drawer_item" };
40305
- const _hoisted_2$b = { class: "title" };
40306
- const _hoisted_3$b = { key: 0 };
40307
- const _hoisted_4$9 = { class: "plugin assignee" };
40308
- const _hoisted_5$5 = { style: { "padding": "12px 16px" } };
40534
+ const _hoisted_1$d = { class: "lcyq_drawer_item" };
40535
+ const _hoisted_2$c = { class: "title" };
40536
+ const _hoisted_3$c = { key: 0 };
40537
+ const _hoisted_4$a = { class: "plugin assignee" };
40538
+ const _hoisted_5$6 = { style: { "padding": "12px 16px" } };
40309
40539
  const _hoisted_6$5 = { class: "tip_text" };
40310
- const _sfc_main$c = {
40540
+ const _sfc_main$e = {
40311
40541
  __name: "personnel",
40312
40542
  props: {
40313
40543
  info: {
@@ -40328,20 +40558,7 @@ const _sfc_main$c = {
40328
40558
  const personnelPopRef = ref$1();
40329
40559
  const personnelPopTabObj = _.groupBy(personnelPopTab, "key");
40330
40560
  const valueArr = computed(() => {
40331
- let val = drawerConfig2.value.node_config[props.info.key];
40332
- let arr = [];
40333
- for (let aKey in val) {
40334
- for (let bKey in val[aKey]) {
40335
- if (aKey === "depart") {
40336
- for (let cKey in val[aKey][bKey]) {
40337
- arr.push({ ...val[aKey][bKey][cKey], type: aKey });
40338
- }
40339
- } else {
40340
- arr.push({ ...val[aKey][bKey], type: aKey });
40341
- }
40342
- }
40343
- }
40344
- return arr;
40561
+ return drawerConfig2.value.node_config[props.info.key];
40345
40562
  });
40346
40563
  let props = __props;
40347
40564
  function open() {
@@ -40355,11 +40572,11 @@ const _sfc_main$c = {
40355
40572
  }
40356
40573
  return (_ctx, _cache) => {
40357
40574
  return openBlock(), createElementBlock(Fragment, null, [
40358
- createElementVNode("div", _hoisted_1$b, [
40359
- createElementVNode("div", _hoisted_2$b, [
40575
+ createElementVNode("div", _hoisted_1$d, [
40576
+ createElementVNode("div", _hoisted_2$c, [
40360
40577
  createElementVNode("span", null, [
40361
40578
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
40362
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$b, "*")) : createCommentVNode("", true)
40579
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$c, "*")) : createCommentVNode("", true)
40363
40580
  ]),
40364
40581
  createVNode(unref(NButton), {
40365
40582
  text: "",
@@ -40372,10 +40589,10 @@ const _sfc_main$c = {
40372
40589
  _: 1
40373
40590
  })
40374
40591
  ]),
40375
- createElementVNode("div", _hoisted_4$9, [
40592
+ createElementVNode("div", _hoisted_4$a, [
40376
40593
  createVNode(unref(NScrollbar), null, {
40377
40594
  default: withCtx(() => [
40378
- createElementVNode("div", _hoisted_5$5, [
40595
+ createElementVNode("div", _hoisted_5$6, [
40379
40596
  createVNode(unref(NSpace), { vertical: "" }, {
40380
40597
  default: withCtx(() => [
40381
40598
  (openBlock(true), createElementBlock(Fragment, null, renderList(valueArr.value, (item) => {
@@ -40408,7 +40625,7 @@ const _sfc_main$c = {
40408
40625
  })
40409
40626
  ])
40410
40627
  ]),
40411
- createVNode(_sfc_main$d, {
40628
+ createVNode(_sfc_main$f, {
40412
40629
  ref_key: "personnelPopRef",
40413
40630
  ref: personnelPopRef,
40414
40631
  onOk: updateP
@@ -40417,7 +40634,7 @@ const _sfc_main$c = {
40417
40634
  };
40418
40635
  }
40419
40636
  };
40420
- var personnel = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-435c2652"]]);
40637
+ var personnel = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-09d3a132"]]);
40421
40638
  /**!
40422
40639
  * Sortable 1.15.6
40423
40640
  * @author RubaXa <trash@rubaxa.org>
@@ -42600,13 +42817,13 @@ let nanoid = (size2 = 21) => crypto.getRandomValues(new Uint8Array(size2)).reduc
42600
42817
  return id;
42601
42818
  }, "");
42602
42819
  var tableDrag_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".table_drag_div{position:relative;overflow:auto;z-index:1}.table_drag{text-align:center;overflow:auto}.table_drag .thead{position:sticky;top:0;z-index:20}.table_drag .isDrag tr th:nth-child(1){width:100px}.table_drag .icon-sort_big_icon{cursor:move;font-size:12px}\n")();
42603
- const _hoisted_1$a = { class: "thead" };
42604
- const _hoisted_2$a = { key: 0 };
42605
- const _hoisted_3$a = { key: 0 };
42606
- const _hoisted_4$8 = ["colspan"];
42607
- const _hoisted_5$4 = ["data-id"];
42820
+ const _hoisted_1$c = { class: "thead" };
42821
+ const _hoisted_2$b = { key: 0 };
42822
+ const _hoisted_3$b = { key: 0 };
42823
+ const _hoisted_4$9 = ["colspan"];
42824
+ const _hoisted_5$5 = ["data-id"];
42608
42825
  const _hoisted_6$4 = { key: 0 };
42609
- const _sfc_main$b = defineComponent({
42826
+ const _sfc_main$d = defineComponent({
42610
42827
  __name: "tableDrag",
42611
42828
  props: {
42612
42829
  modelValue: { default: () => [] },
@@ -42695,9 +42912,9 @@ const _sfc_main$b = defineComponent({
42695
42912
  class: ["table_drag", isDrag.value ? "isDrag" : ""]
42696
42913
  }), {
42697
42914
  default: withCtx(() => [
42698
- createElementVNode("thead", _hoisted_1$a, [
42915
+ createElementVNode("thead", _hoisted_1$c, [
42699
42916
  createElementVNode("tr", null, [
42700
- isDrag.value ? (openBlock(), createElementBlock("th", _hoisted_2$a, " \u6392\u5E8F ")) : createCommentVNode("", true),
42917
+ isDrag.value ? (openBlock(), createElementBlock("th", _hoisted_2$b, " \u6392\u5E8F ")) : createCommentVNode("", true),
42701
42918
  (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columnKey, (item) => {
42702
42919
  return openBlock(), createElementBlock("th", {
42703
42920
  key: item.key,
@@ -42717,7 +42934,7 @@ const _sfc_main$b = defineComponent({
42717
42934
  ref: fileTable,
42718
42935
  class: "tbody"
42719
42936
  }, [
42720
- !props.modelValue.length ? (openBlock(), createElementBlock("tr", _hoisted_3$a, [
42937
+ !props.modelValue.length ? (openBlock(), createElementBlock("tr", _hoisted_3$b, [
42721
42938
  createElementVNode("td", {
42722
42939
  colspan: _ctx.columnKey.length + 1
42723
42940
  }, [
@@ -42735,7 +42952,7 @@ const _sfc_main$b = defineComponent({
42735
42952
  _: 1
42736
42953
  })) : createCommentVNode("", true)
42737
42954
  ], 64))
42738
- ], 8, _hoisted_4$8)
42955
+ ], 8, _hoisted_4$9)
42739
42956
  ])) : (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(showList.value, (item, line) => {
42740
42957
  return openBlock(), createElementBlock("tr", {
42741
42958
  key: valKeyMaps.value.get(item),
@@ -42757,7 +42974,7 @@ const _sfc_main$b = defineComponent({
42757
42974
  ], 64)) : createCommentVNode("", true)
42758
42975
  ], 4);
42759
42976
  }), 128))
42760
- ], 8, _hoisted_5$4);
42977
+ ], 8, _hoisted_5$5);
42761
42978
  }), 128))
42762
42979
  ], 512)
42763
42980
  ]),
@@ -42785,14 +43002,14 @@ const _sfc_main$b = defineComponent({
42785
43002
  };
42786
43003
  }
42787
43004
  });
42788
- const _hoisted_1$9 = { class: "top_set" };
42789
- const _hoisted_2$9 = { class: "flex1" };
42790
- const _hoisted_3$9 = {
43005
+ const _hoisted_1$b = { class: "top_set" };
43006
+ const _hoisted_2$a = { class: "flex1" };
43007
+ const _hoisted_3$a = {
42791
43008
  key: 0,
42792
43009
  class: "flex1"
42793
43010
  };
42794
- const _hoisted_4$7 = { class: "title" };
42795
- var _sfc_main$a = /* @__PURE__ */ defineComponent({
43011
+ const _hoisted_4$8 = { class: "title" };
43012
+ var _sfc_main$c = /* @__PURE__ */ defineComponent({
42796
43013
  __name: "operationPop",
42797
43014
  props: {
42798
43015
  operations: {}
@@ -42912,7 +43129,7 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42912
43129
  });
42913
43130
  return (_ctx, _cache) => {
42914
43131
  const _component_ZExplainPop = resolveComponent("ZExplainPop");
42915
- return openBlock(), createBlock(_sfc_main$e, {
43132
+ return openBlock(), createBlock(_sfc_main$g, {
42916
43133
  ref_key: "modal",
42917
43134
  ref: modal,
42918
43135
  title: "\u5BA1\u6279\u8BBE\u7F6E",
@@ -42926,8 +43143,8 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42926
43143
  size: 26
42927
43144
  }, {
42928
43145
  default: withCtx(() => [
42929
- createElementVNode("div", _hoisted_1$9, [
42930
- createElementVNode("div", _hoisted_2$9, [
43146
+ createElementVNode("div", _hoisted_1$b, [
43147
+ createElementVNode("div", _hoisted_2$a, [
42931
43148
  createVNode(unref(NSpace), { vertical: "" }, {
42932
43149
  default: withCtx(() => [
42933
43150
  createVNode(unref(NSpace), null, {
@@ -42992,7 +43209,7 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42992
43209
  _: 1
42993
43210
  })
42994
43211
  ]),
42995
- config2.value.jump_nodes.length ? (openBlock(), createElementBlock("div", _hoisted_3$9, [
43212
+ config2.value.jump_nodes.length ? (openBlock(), createElementBlock("div", _hoisted_3$a, [
42996
43213
  createVNode(unref(NSpace), null, {
42997
43214
  default: withCtx(() => [
42998
43215
  _cache[7] || (_cache[7] = createElementVNode("div", { class: "jumpName" }, " \u8DF3\u8F6C\u65B9\u5F0F ", -1)),
@@ -43031,7 +43248,7 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
43031
43248
  ]),
43032
43249
  createVNode(unref(NSpace), { vertical: "" }, {
43033
43250
  default: withCtx(() => [
43034
- createElementVNode("div", _hoisted_4$7, [
43251
+ createElementVNode("div", _hoisted_4$8, [
43035
43252
  _cache[8] || (_cache[8] = createTextVNode(" \u6743\u9650\u9A8C\u8BC1")),
43036
43253
  createVNode(_component_ZExplainPop, { k: "SPSZ_QX" })
43037
43254
  ]),
@@ -43072,11 +43289,11 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
43072
43289
  }
43073
43290
  });
43074
43291
  var operationPop_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".form_operations .top_set{display:flex}.form_operations .flex1{flex:1}.form_operations .title{font-size:16px;font-weight:700}.form_operations .inp_sel{width:200px}.form_operations .jumpName{padding-top:10px}.form_operations .n-descriptions-table-row:last-child .n-descriptions-table-content:last-child .n-descriptions-table-content__label{display:none}.form_operations .n-descriptions-table-row:last-child .n-descriptions-table-content:last-child .n-descriptions-table-content__content{width:100%;text-align:right}.form_operations .option_value .name{width:56px}.form_operations .option_value .n-input{width:34px}.form_operations .option_value .n-input .n-input-wrapper{padding-right:0}\n")();
43075
- const _hoisted_1$8 = { class: "lcyq_drawer_item" };
43076
- const _hoisted_2$8 = { class: "title" };
43077
- const _hoisted_3$8 = { key: 0 };
43078
- const _hoisted_4$6 = { class: "plugin" };
43079
- const _sfc_main$9 = {
43292
+ const _hoisted_1$a = { class: "lcyq_drawer_item" };
43293
+ const _hoisted_2$9 = { class: "title" };
43294
+ const _hoisted_3$9 = { key: 0 };
43295
+ const _hoisted_4$7 = { class: "plugin" };
43296
+ const _sfc_main$b = {
43080
43297
  __name: "operation",
43081
43298
  props: {
43082
43299
  info: {
@@ -43126,11 +43343,11 @@ const _sfc_main$9 = {
43126
43343
  }
43127
43344
  return (_ctx, _cache) => {
43128
43345
  return openBlock(), createElementBlock(Fragment, null, [
43129
- createElementVNode("div", _hoisted_1$8, [
43130
- createElementVNode("div", _hoisted_2$8, [
43346
+ createElementVNode("div", _hoisted_1$a, [
43347
+ createElementVNode("div", _hoisted_2$9, [
43131
43348
  createElementVNode("span", null, [
43132
43349
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
43133
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$8, "*")) : createCommentVNode("", true)
43350
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$9, "*")) : createCommentVNode("", true)
43134
43351
  ]),
43135
43352
  createVNode(unref(NButton), {
43136
43353
  text: "",
@@ -43143,8 +43360,8 @@ const _sfc_main$9 = {
43143
43360
  _: 1
43144
43361
  })
43145
43362
  ]),
43146
- createElementVNode("div", _hoisted_4$6, [
43147
- createVNode(_sfc_main$b, {
43363
+ createElementVNode("div", _hoisted_4$7, [
43364
+ createVNode(_sfc_main$d, {
43148
43365
  modelValue: unref(drawerConfig2).node_config.operations,
43149
43366
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(drawerConfig2).node_config.operations = $event),
43150
43367
  "column-key": [{
@@ -43204,7 +43421,7 @@ const _sfc_main$9 = {
43204
43421
  }, 8, ["modelValue"])
43205
43422
  ])
43206
43423
  ]),
43207
- createVNode(_sfc_main$a, {
43424
+ createVNode(_sfc_main$c, {
43208
43425
  ref_key: "operationPopRef",
43209
43426
  ref: operationPopRef,
43210
43427
  operations: unref(drawerConfig2).node_config.operations,
@@ -43215,17 +43432,17 @@ const _sfc_main$9 = {
43215
43432
  }
43216
43433
  };
43217
43434
  var expressionSet_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".expression_set .expression_cont{display:flex;height:300px;overflow:hidden}.expression_set .expression_cont .flex1{flex:1}.expression_set .expression_cont .line{padding:0 10px;border-left:1px solid #E3E3E9}.expression_set .expression_cont .n-tag{width:80px;cursor:pointer;justify-content:center}.expression_set .expression_cont .n-select,.expression_set .expression_cont .n-input{width:210px}.expression_set .expression_cont .plugin_item{height:190px}.expression_set .functions_list{height:200px}.expression_set .functions_list .function_item{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;width:220px;cursor:pointer;margin-left:-5px}.expression_set .functions_list .function_item:hover{color:#0093e9}.expression_set .function_content{padding:10px;background-color:#f6f6f6;display:flex}.expression_set .function_content>div:first-child{margin-right:20px;width:33%}.expression_set .function_content>div:last-child{width:66%}.expression_set .function_value{width:100%;padding:10px 5px;background-color:#fff}.expression_set .function_right{max-height:300px;overflow:auto}.expression_set .function_right>.n-space{height:100%}.expression_set .function_right>.n-space>div:last-child{margin-top:auto}\n")();
43218
- const _hoisted_1$7 = { class: "expression_cont" };
43219
- const _hoisted_2$7 = { class: "name" };
43220
- const _hoisted_3$7 = { class: "plugin_item" };
43221
- const _hoisted_4$5 = { class: "name" };
43222
- const _hoisted_5$3 = { class: "character" };
43435
+ const _hoisted_1$9 = { class: "expression_cont" };
43436
+ const _hoisted_2$8 = { class: "name" };
43437
+ const _hoisted_3$8 = { class: "plugin_item" };
43438
+ const _hoisted_4$6 = { class: "name" };
43439
+ const _hoisted_5$4 = { class: "character" };
43223
43440
  const _hoisted_6$3 = { class: "function_content" };
43224
43441
  const _hoisted_7$2 = { class: "functions_list" };
43225
43442
  const _hoisted_8$2 = ["onClick"];
43226
43443
  const _hoisted_9$2 = { class: "function_right" };
43227
43444
  const _hoisted_10$2 = { class: "function_value" };
43228
- const _sfc_main$8 = defineComponent({
43445
+ const _sfc_main$a = defineComponent({
43229
43446
  __name: "expressionSet",
43230
43447
  props: {
43231
43448
  isShowSymbol: { type: Boolean, default: true },
@@ -43464,7 +43681,7 @@ const _sfc_main$8 = defineComponent({
43464
43681
  return (_ctx, _cache) => {
43465
43682
  const _component_ZExplainPop = resolveComponent("ZExplainPop");
43466
43683
  const _component_n_list = resolveComponent("n-list");
43467
- return openBlock(), createBlock(_sfc_main$e, {
43684
+ return openBlock(), createBlock(_sfc_main$g, {
43468
43685
  ref_key: "modal",
43469
43686
  ref: modal,
43470
43687
  "ok-disabled": props.disabled,
@@ -43477,13 +43694,13 @@ const _sfc_main$8 = defineComponent({
43477
43694
  default: withCtx(() => [
43478
43695
  createVNode(unref(NSpace), { vertical: "" }, {
43479
43696
  default: withCtx(() => [
43480
- createElementVNode("div", _hoisted_1$7, [
43697
+ createElementVNode("div", _hoisted_1$9, [
43481
43698
  createVNode(unref(NSpace), {
43482
43699
  class: "flex1",
43483
43700
  vertical: ""
43484
43701
  }, {
43485
43702
  default: withCtx(() => [
43486
- createElementVNode("div", _hoisted_2$7, [
43703
+ createElementVNode("div", _hoisted_2$8, [
43487
43704
  _cache[4] || (_cache[4] = createTextVNode(" \u9009\u62E9\u53D8\u91CF")),
43488
43705
  createVNode(_component_ZExplainPop, { k: "XZBL" })
43489
43706
  ]),
@@ -43520,7 +43737,7 @@ const _sfc_main$8 = defineComponent({
43520
43737
  ]),
43521
43738
  _: 1
43522
43739
  }),
43523
- createElementVNode("div", _hoisted_3$7, [
43740
+ createElementVNode("div", _hoisted_3$8, [
43524
43741
  createVNode(unref(NScrollbar), null, {
43525
43742
  default: withCtx(() => [
43526
43743
  props.scene === "editForm" ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(fields.value, (item) => {
@@ -43584,11 +43801,11 @@ const _sfc_main$8 = defineComponent({
43584
43801
  vertical: ""
43585
43802
  }, {
43586
43803
  default: withCtx(() => [
43587
- createElementVNode("div", _hoisted_4$5, [
43804
+ createElementVNode("div", _hoisted_4$6, [
43588
43805
  _cache[7] || (_cache[7] = createTextVNode(" \u516C\u5F0F\u8BBE\u7F6E")),
43589
43806
  createVNode(_component_ZExplainPop, { k: "GSSZ" })
43590
43807
  ]),
43591
- createElementVNode("div", _hoisted_5$3, [
43808
+ createElementVNode("div", _hoisted_5$4, [
43592
43809
  createVNode(unref(NSpace), null, {
43593
43810
  default: withCtx(() => [
43594
43811
  (openBlock(), createElementBlock(Fragment, null, renderList(symbol, (item, index2) => {
@@ -43723,14 +43940,14 @@ const _sfc_main$8 = defineComponent({
43723
43940
  }
43724
43941
  });
43725
43942
  var expression_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".assignee[data-v-4479d6f3]{height:120px}\n")();
43726
- const _hoisted_1$6 = { class: "lcyq_drawer_item" };
43727
- const _hoisted_2$6 = { class: "title" };
43728
- const _hoisted_3$6 = { key: 0 };
43729
- const _hoisted_4$4 = {
43943
+ const _hoisted_1$8 = { class: "lcyq_drawer_item" };
43944
+ const _hoisted_2$7 = { class: "title" };
43945
+ const _hoisted_3$7 = { key: 0 };
43946
+ const _hoisted_4$5 = {
43730
43947
  key: 0,
43731
43948
  class: "plugin"
43732
43949
  };
43733
- const _sfc_main$7 = {
43950
+ const _sfc_main$9 = {
43734
43951
  __name: "expression",
43735
43952
  props: {
43736
43953
  info: {
@@ -43762,11 +43979,11 @@ const _sfc_main$7 = {
43762
43979
  }
43763
43980
  return (_ctx, _cache) => {
43764
43981
  return openBlock(), createElementBlock(Fragment, null, [
43765
- createElementVNode("div", _hoisted_1$6, [
43766
- createElementVNode("div", _hoisted_2$6, [
43982
+ createElementVNode("div", _hoisted_1$8, [
43983
+ createElementVNode("div", _hoisted_2$7, [
43767
43984
  createElementVNode("span", null, [
43768
43985
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
43769
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$6, "*")) : createCommentVNode("", true)
43986
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$7, "*")) : createCommentVNode("", true)
43770
43987
  ]),
43771
43988
  createVNode(unref(NButton), {
43772
43989
  text: "",
@@ -43779,7 +43996,7 @@ const _sfc_main$7 = {
43779
43996
  _: 1
43780
43997
  })
43781
43998
  ]),
43782
- hideInput.value ? (openBlock(), createElementBlock("div", _hoisted_4$4, [
43999
+ hideInput.value ? (openBlock(), createElementBlock("div", _hoisted_4$5, [
43783
44000
  createVNode(unref(NCard), {
43784
44001
  size: "small",
43785
44002
  class: "assignee"
@@ -43791,7 +44008,7 @@ const _sfc_main$7 = {
43791
44008
  })
43792
44009
  ])) : createCommentVNode("", true)
43793
44010
  ]),
43794
- createVNode(_sfc_main$8, {
44011
+ createVNode(_sfc_main$a, {
43795
44012
  ref_key: "expressionSetRef",
43796
44013
  ref: expressionSetRef,
43797
44014
  onOk: updateExpression
@@ -43800,11 +44017,11 @@ const _sfc_main$7 = {
43800
44017
  };
43801
44018
  }
43802
44019
  };
43803
- var expression = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-4479d6f3"]]);
43804
- const _hoisted_1$5 = { class: "lcyq_drawer_item" };
43805
- const _hoisted_2$5 = { class: "title" };
43806
- const _hoisted_3$5 = { key: 0 };
43807
- const _sfc_main$6 = {
44020
+ var expression = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-4479d6f3"]]);
44021
+ const _hoisted_1$7 = { class: "lcyq_drawer_item" };
44022
+ const _hoisted_2$6 = { class: "title" };
44023
+ const _hoisted_3$6 = { key: 0 };
44024
+ const _sfc_main$8 = {
43808
44025
  __name: "switchPlugin",
43809
44026
  props: {
43810
44027
  info: {
@@ -43823,11 +44040,11 @@ const _sfc_main$6 = {
43823
44040
  });
43824
44041
  let props = __props;
43825
44042
  return (_ctx, _cache) => {
43826
- return openBlock(), createElementBlock("div", _hoisted_1$5, [
43827
- createElementVNode("div", _hoisted_2$5, [
44043
+ return openBlock(), createElementBlock("div", _hoisted_1$7, [
44044
+ createElementVNode("div", _hoisted_2$6, [
43828
44045
  createElementVNode("span", null, [
43829
44046
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
43830
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$5, "*")) : createCommentVNode("", true)
44047
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$6, "*")) : createCommentVNode("", true)
43831
44048
  ]),
43832
44049
  createVNode(unref(NSwitch), {
43833
44050
  value: unref(drawerConfig2)[unref(props).info.key],
@@ -43841,15 +44058,15 @@ const _sfc_main$6 = {
43841
44058
  }
43842
44059
  };
43843
44060
  var plugins = {
43844
- "Input": _sfc_main$g,
43845
- "Select": _sfc_main$f,
44061
+ "Input": _sfc_main$i,
44062
+ "Select": _sfc_main$h,
43846
44063
  "Personnel": personnel,
43847
- "Operation": _sfc_main$9,
44064
+ "Operation": _sfc_main$b,
43848
44065
  "Expression": expression,
43849
- "Switch": _sfc_main$6
44066
+ "Switch": _sfc_main$8
43850
44067
  };
43851
44068
  var approverDrawer_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".lcyq_drawer_item{margin-bottom:20px}.lcyq_drawer_item .title{display:flex;align-items:center;justify-content:space-between}.lcyq_drawer_item .title>span:first-child{font-weight:700}.lcyq_drawer_item .title>span:first-child i{color:red;font-weight:400}.lcyq_drawer_item .plugin{margin-top:10px}\n")();
43852
- const _sfc_main$5 = {
44069
+ const _sfc_main$7 = {
43853
44070
  __name: "approverDrawer",
43854
44071
  setup(__props) {
43855
44072
  let store = useStore();
@@ -43953,7 +44170,7 @@ const verifyFn = {
43953
44170
  },
43954
44171
  PersonnelVerify(data2, config2) {
43955
44172
  let curData = data2.node_config[config2.key];
43956
- return !!Object.values(curData).map((item) => !Array.isArray(item) ? Object.values(item) : item).flat(Infinity).length;
44173
+ return curData.length;
43957
44174
  },
43958
44175
  OperationVerify(data2, config2) {
43959
44176
  let curData = data2.node_config[config2.key];
@@ -43988,18 +44205,18 @@ var nodeUtil = {
43988
44205
  for (let i = 0; i < config2.length; i++) {
43989
44206
  if (config2[i].key === "node_name")
43990
44207
  continue;
43991
- obj[config2[i].key] = config2[i].defaultValue !== void 0 ? JSON.parse(JSON.stringify(config2[i].defaultValue)) : null;
44208
+ _.set(obj, config2[i].key, config2[i].defaultValue !== void 0 ? JSON.parse(JSON.stringify(config2[i].defaultValue)) : null);
43992
44209
  }
43993
44210
  return obj;
43994
44211
  }
43995
44212
  };
43996
- var addNode_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => '.add-node-btn-box[data-v-632f8ade]{width:240px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:1;-ms-flex-positive:1;position:relative}.add-node-btn-box[data-v-632f8ade]:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:-1;margin:auto;width:2px;height:100%;background-color:#cacaca}.add-node-btn-box .add-node-btn[data-v-632f8ade]{user-select:none;width:240px;padding:20px 0 32px;display:flex;-webkit-box-pack:center;justify-content:center;flex-shrink:0;-webkit-box-flex:1;flex-grow:1}.add-node-btn-box .add-node-btn .btn[data-v-632f8ade]{outline:none;box-shadow:0 2px 4px #0000001a;width:30px;height:30px;background:#3296fa;border-radius:50%;position:relative;border:none;line-height:30px;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.add-node-btn-box .add-node-btn .btn .iconfont[data-v-632f8ade]{color:#fff;font-size:16px}.add-node-btn-box .add-node-btn .btn[data-v-632f8ade]:hover{transform:scale(1.3);box-shadow:0 13px 27px #0000001a}.add-node-btn-box .add-node-btn .btn[data-v-632f8ade]:active{transform:none;background:#1e83e9;box-shadow:0 2px 4px #0000001a}\n')();
44213
+ var addNode_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => '.add-node-btn-box[data-v-224b3662]{width:240px;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:1;-ms-flex-positive:1;position:relative}.add-node-btn-box[data-v-224b3662]:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:-1;margin:auto;width:2px;height:100%;background-color:#cacaca}.add-node-btn-box .add-node-btn[data-v-224b3662]{user-select:none;width:240px;padding:20px 0 32px;display:flex;-webkit-box-pack:center;justify-content:center;flex-shrink:0;-webkit-box-flex:1;flex-grow:1}.add-node-btn-box .add-node-btn .btn[data-v-224b3662]{outline:none;box-shadow:0 2px 4px #0000001a;width:30px;height:30px;background:#3296fa;border-radius:50%;position:relative;border:none;line-height:30px;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.add-node-btn-box .add-node-btn .btn .iconfont[data-v-224b3662]{color:#fff;font-size:16px}.add-node-btn-box .add-node-btn .btn[data-v-224b3662]:hover{transform:scale(1.3);box-shadow:0 13px 27px #0000001a}.add-node-btn-box .add-node-btn .btn[data-v-224b3662]:active{transform:none;background:#1e83e9;box-shadow:0 2px 4px #0000001a}\n')();
43997
44214
  var addNode_vue_vue_type_style_index_1_lang = /* @__PURE__ */ (() => ".add-node-popover-body{display:flex;gap:15px}.add-node-popover-body .add-node-popover-item{cursor:pointer;text-align:center;flex:1;color:#191f25!important}.add-node-popover-body .add-node-popover-item .item-wrapper{display:inline-block;width:60px;height:60px;margin-bottom:5px;background:#fff;border:1px solid #e2e2e2;border-radius:50%;transition:all .3s cubic-bezier(.645,.045,.355,1);line-height:58px}.add-node-popover-body .add-node-popover-item .item-wrapper i{font-size:28px}.add-node-popover-body .add-node-popover-item.condition .item-wrapper{color:#15bc83}.add-node-popover-body .add-node-popover-item:hover .item-wrapper{background:#3296fa;box-shadow:0 10px 20px #3296fa66}.add-node-popover-body .add-node-popover-item:hover .iconfont{color:#fff}.add-node-popover-body .add-node-popover-item:active .item-wrapper{box-shadow:none;background:#eaeaea}.add-node-popover-body .add-node-popover-item:active .iconfont{color:inherit}\n")();
43998
- const _hoisted_1$4 = { class: "add-node-btn-box" };
43999
- const _hoisted_2$4 = { class: "add-node-btn" };
44000
- const _hoisted_3$4 = { class: "add-node-popover-body" };
44001
- const _hoisted_4$3 = ["onClick"];
44002
- const _sfc_main$4 = {
44215
+ const _hoisted_1$6 = { class: "add-node-btn-box" };
44216
+ const _hoisted_2$5 = { class: "add-node-btn" };
44217
+ const _hoisted_3$5 = { class: "add-node-popover-body" };
44218
+ const _hoisted_4$4 = ["onClick"];
44219
+ const _sfc_main$6 = {
44003
44220
  __name: "addNode",
44004
44221
  props: {
44005
44222
  childNodeP: {
@@ -44016,7 +44233,6 @@ const _sfc_main$4 = {
44016
44233
  const pluginsConfig = computed(() => store.pluginsConfig);
44017
44234
  const lcyqDisabled = computed(() => store.disabled);
44018
44235
  const addType = (type2) => {
44019
- console.log(nodesConfig2.value);
44020
44236
  if (type2 != 4) {
44021
44237
  let data2 = {}, node = nodesConfig2.value[type2];
44022
44238
  data2.node_name = node.name;
@@ -44040,7 +44256,7 @@ const _sfc_main$4 = {
44040
44256
  type: 3,
44041
44257
  priorityLevel: 1,
44042
44258
  node_config: nodeUtil.handleConfig(pluginsConfig.value["3"]),
44043
- childNode: props.childNodeP
44259
+ childNode: props.childNodeP && Object.keys(props.childNodeP).length ? props.childNodeP : null
44044
44260
  },
44045
44261
  {
44046
44262
  node_name: "\u6761\u4EF62",
@@ -44056,8 +44272,8 @@ const _sfc_main$4 = {
44056
44272
  }
44057
44273
  };
44058
44274
  return (_ctx, _cache) => {
44059
- return openBlock(), createElementBlock("div", _hoisted_1$4, [
44060
- createElementVNode("div", _hoisted_2$4, [
44275
+ return openBlock(), createElementBlock("div", _hoisted_1$6, [
44276
+ createElementVNode("div", _hoisted_2$5, [
44061
44277
  !lcyqDisabled.value ? (openBlock(), createBlock(unref(NPopover), {
44062
44278
  key: 0,
44063
44279
  trigger: "hover",
@@ -44072,7 +44288,7 @@ const _sfc_main$4 = {
44072
44288
  ], -1)
44073
44289
  ])),
44074
44290
  default: withCtx(() => [
44075
- createElementVNode("div", _hoisted_3$4, [
44291
+ createElementVNode("div", _hoisted_3$5, [
44076
44292
  (openBlock(true), createElementBlock(Fragment, null, renderList(nodesConfig2.value, (item) => {
44077
44293
  return openBlock(), createElementBlock(Fragment, null, [
44078
44294
  item ? (openBlock(), createElementBlock("a", {
@@ -44089,7 +44305,7 @@ const _sfc_main$4 = {
44089
44305
  }, null, 2)
44090
44306
  ], 4),
44091
44307
  createElementVNode("p", null, toDisplayString(item.name), 1)
44092
- ], 8, _hoisted_4$3)) : createCommentVNode("", true)
44308
+ ], 8, _hoisted_4$4)) : createCommentVNode("", true)
44093
44309
  ], 64);
44094
44310
  }), 256)),
44095
44311
  createElementVNode("a", {
@@ -44110,22 +44326,22 @@ const _sfc_main$4 = {
44110
44326
  };
44111
44327
  }
44112
44328
  };
44113
- var addNode = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-632f8ade"]]);
44329
+ var addNode = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-224b3662"]]);
44114
44330
  var nodeWrap_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".error_tip{position:absolute;top:0px;right:0px;transform:translate(150%);font-size:24px}.promoter_person .el-dialog__body{padding:10px 20px 14px}.selected_list{margin-bottom:20px;line-height:30px}.selected_list span{margin-right:10px;padding:3px 6px 3px 9px;line-height:12px;white-space:nowrap;border-radius:2px;border:1px solid rgba(220,220,220,1)}.selected_list img{margin-left:5px;width:7px;height:7px;cursor:pointer}\n")();
44115
- const _hoisted_1$3 = {
44331
+ const _hoisted_1$5 = {
44116
44332
  key: 0,
44117
44333
  class: "node-wrap"
44118
44334
  };
44119
- const _hoisted_2$3 = { class: "node-wrap-box start-node" };
44120
- const _hoisted_3$3 = {
44335
+ const _hoisted_2$4 = { class: "node-wrap-box start-node" };
44336
+ const _hoisted_3$4 = {
44121
44337
  class: "title",
44122
44338
  style: `background: rgb(87, 106, 149);`
44123
44339
  };
44124
- const _hoisted_4$2 = {
44340
+ const _hoisted_4$3 = {
44125
44341
  key: 1,
44126
44342
  class: "branch-wrap"
44127
44343
  };
44128
- const _hoisted_5$2 = { class: "branch-box-wrap" };
44344
+ const _hoisted_5$3 = { class: "branch-box-wrap" };
44129
44345
  const _hoisted_6$2 = { class: "branch-box" };
44130
44346
  const _hoisted_7$1 = { class: "condition-node" };
44131
44347
  const _hoisted_8$1 = { class: "condition-node-box" };
@@ -44150,7 +44366,7 @@ const _hoisted_20 = {
44150
44366
  key: 0,
44151
44367
  class: "error_tip"
44152
44368
  };
44153
- const _sfc_main$3 = {
44369
+ const _sfc_main$5 = {
44154
44370
  __name: "nodeWrap",
44155
44371
  props: {
44156
44372
  nodeConfig: {
@@ -44273,9 +44489,9 @@ const _sfc_main$3 = {
44273
44489
  const _component_templage = resolveComponent("templage");
44274
44490
  const _component_nodeWrap = resolveComponent("nodeWrap", true);
44275
44491
  return openBlock(), createElementBlock(Fragment, null, [
44276
- __props.nodeConfig.type == 0 ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
44277
- createElementVNode("div", _hoisted_2$3, [
44278
- createElementVNode("div", _hoisted_3$3, [
44492
+ __props.nodeConfig.type == 0 ? (openBlock(), createElementBlock("div", _hoisted_1$5, [
44493
+ createElementVNode("div", _hoisted_2$4, [
44494
+ createElementVNode("div", _hoisted_3$4, [
44279
44495
  createElementVNode("span", null, toDisplayString(__props.nodeConfig.node_name), 1)
44280
44496
  ]),
44281
44497
  _cache[9] || (_cache[9] = createElementVNode("div", { class: "content" }, [
@@ -44287,8 +44503,8 @@ const _sfc_main$3 = {
44287
44503
  "onUpdate:childNodeP": _cache[0] || (_cache[0] = ($event) => __props.nodeConfig.childNode = $event)
44288
44504
  }, null, 8, ["childNodeP"])
44289
44505
  ])) : createCommentVNode("", true),
44290
- __props.nodeConfig.type == 4 ? (openBlock(), createElementBlock("div", _hoisted_4$2, [
44291
- createElementVNode("div", _hoisted_5$2, [
44506
+ __props.nodeConfig.type == 4 ? (openBlock(), createElementBlock("div", _hoisted_4$3, [
44507
+ createElementVNode("div", _hoisted_5$3, [
44292
44508
  createElementVNode("div", _hoisted_6$2, [
44293
44509
  !lcyqDisabled.value ? (openBlock(), createElementBlock("button", {
44294
44510
  key: 0,
@@ -44435,17 +44651,11 @@ const _sfc_main$3 = {
44435
44651
  };
44436
44652
  }
44437
44653
  };
44438
- var defaultData = {
44439
- "node_name": "\u7533\u8BF7",
44440
- "node_key": "R8iKwcw4JuSoLkQc4uRL",
44441
- "type": 0,
44442
- "childNode": null
44443
- };
44444
- var lcyq_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => '.clearfix{zoom:1}.clearfix:after,.clearfix:before{content:"";display:table}.clearfix:after{clear:both}@font-face{font-family:anticon;font-display:fallback;src:url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.eot);src:url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.woff) format("woff"),url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.ttf) format("truetype"),url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.svg#iconfont) format("svg")}.clear:before,.clear:after{content:" ";display:table}.clear:after{clear:both}.ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.l{float:left}.ml_10{margin-left:10px}.mr_10{margin-right:10px}.radio_box a,.check_box a{font-size:12px;position:relative;padding-left:20px;margin-right:30px;cursor:pointer;color:#333;white-space:pre}.check_box.not a:hover{color:#333}.check_box.not a:before,.check_box.not a:hover:before{border:none}.check_box.not.active{background:#f3f3f3}.radio_box a:hover:before,.check_box a:hover:before{border:1px solid #46a6fe}.radio_box a:before,.check_box a:before{position:absolute;width:14px;height:14px;border:1px solid #dcdfe6;border-radius:2px;left:0;top:1px;content:""}.radio_box a:before{border-radius:50%}.check-dot.active:after,.radio_box a.active:after,.check_box a.active:after{position:absolute;width:10px;height:10px;border-radius:50%;top:3px;left:3px;content:""}.radio_box a.active:after{background:#46a6fe}.check_box a.active:after{background:url(~@/assets/images/check_box.png) no-repeat center}.anticon{display:inline-block;font-style:normal;vertical-align:baseline;text-align:center;text-transform:none;line-height:1;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.anticon:before{display:block;font-family:anticon!important}.anticon-close:before{content:"\\e633"}.anticon-right:before{content:"\\e61f"}.anticon-exclamation-circle{color:#f25643}.anticon-exclamation-circle:before{content:"\\e62c"}.anticon-left:before{content:"\\e620"}.anticon-close-circle:before{content:"\\e62e"}.ant-btn{line-height:1.5;display:inline-block;font-weight:400;text-align:center;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:0 15px;font-size:14px;border-radius:4px;height:32px;user-select:none;transition:all .3s cubic-bezier(.645,.045,.355,1);position:relative;color:#000000a6;background-color:#fff;border-color:#d9d9d9}.ant-btn>.anticon{line-height:1}.ant-btn,.ant-btn:active,.ant-btn:focus{outline:0}.ant-btn>a:only-child{color:currentColor}.ant-btn>a:only-child:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background:transparent}.ant-btn:focus,.ant-btn:hover{color:#40a9ff;background-color:#fff;border-color:#40a9ff}.ant-btn:focus>a:only-child,.ant-btn:hover>a:only-child{color:currentColor}.ant-btn:focus>a:only-child:after,.ant-btn:hover>a:only-child:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background:transparent}.ant-btn.active,.ant-btn:active{color:#096dd9;background-color:#fff;border-color:#096dd9}.ant-btn.active>a:only-child,.ant-btn:active>a:only-child{color:currentColor}.ant-btn.active>a:only-child:after,.ant-btn:active>a:only-child:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background:transparent}.ant-btn.active,.ant-btn:active,.ant-btn:focus,.ant-btn:hover{background:#fff;text-decoration:none}.ant-btn>i,.ant-btn>span{pointer-events:none}.ant-btn:before{position:absolute;top:-1px;left:-1px;bottom:-1px;right:-1px;background:#fff;opacity:.35;content:"";border-radius:inherit;z-index:1;transition:opacity .2s;pointer-events:none;display:none}.ant-btn .anticon{transition:margin-left .3s cubic-bezier(.645,.045,.355,1)}.ant-btn:active>span,.ant-btn:focus>span{position:relative}.ant-btn>.anticon+span,.ant-btn>span+.anticon{margin-left:8px}.fd-nav-container{display:inline-block;position:relative}.fd-nav-container .ghost-bar{position:absolute;width:150px;height:100%;left:0;background:#1583f2;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.fd-nav-container .ghost-bar:after{content:"";position:absolute;bottom:0;left:50%;margin-left:-5px;width:0;height:0;border-style:solid;border-width:0 5px 6px;border-color:transparent transparent #f6f6f6}.fd-nav-item{position:relative;cursor:pointer;display:inline-block;line-height:60px;width:150px;text-align:center;white-space:nowrap}.fd-nav-item .order-num{display:inline-block;width:20px;height:20px;line-height:20px;border:1px solid #fff;border-radius:50%;margin-right:6px;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.fd-nav-item.active .order-num{color:#1583f2;background:#fff}.ant-input{font-family:Chinese Quote,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;font-variant:tabular-nums;box-sizing:border-box;margin:0;list-style:none;position:relative;display:inline-block;padding:4px 11px;width:100%;height:32px;font-size:14px;line-height:1.5;color:#000000a6;background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px;transition:all .3s}.ant-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-input:-ms-input-placeholder{color:#bfbfbf}.ant-input::-webkit-input-placeholder{color:#bfbfbf}.ant-input:focus,.ant-input:hover{border-color:#40a9ff;border-right-width:1px!important}.ant-input:focus{outline:0;box-shadow:0 0 0 2px #1890ff33}.wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%}.fd-nav{position:fixed;top:0;left:0;right:0;z-index:997;width:100%;height:60px;font-size:14px;color:#fff;background:#3296fa;display:flex;align-items:center}.fd-nav>*{flex:1;width:100%}.fd-nav .fd-nav-left{display:-webkit-box;display:flex;align-items:center}.fd-nav .fd-nav-center{flex:none;width:600px;text-align:center}.fd-nav .fd-nav-right{display:flex;align-items:center;justify-content:flex-end;text-align:right}.fd-nav .fd-nav-back{display:inline-block;width:60px;height:60px;font-size:22px;border-right:1px solid #1583f2;text-align:center;cursor:pointer}.fd-nav .fd-nav-back:hover{background:#5af}.fd-nav .fd-nav-back:active{background:#1583f2}.fd-nav .fd-nav-back .anticon{line-height:60px}.fd-nav .fd-nav-title{width:0;flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:0 15px}.fd-nav a{color:#fff;margin-left:12px}.fd-nav .button-publish{min-width:80px;margin-left:4px;margin-right:15px;color:#3296fa;border-color:#fff}.fd-nav .button-publish.ant-btn:focus,.fd-nav .button-publish.ant-btn:hover{color:#3296fa;border-color:#fff;box-shadow:0 10px 20px #0000004d}.fd-nav .button-publish.ant-btn:active{color:#3296fa;background:#d6eaff;box-shadow:none}.fd-nav .button-preview{min-width:80px;margin-left:16px;margin-right:4px;color:#fff;border-color:#fff;background:transparent}.fd-nav .button-preview.ant-btn:focus,.fd-nav .button-preview.ant-btn:hover{color:#fff;border-color:#fff;background:#59acfc}.fd-nav .button-preview.ant-btn:active{color:#fff;border-color:#fff;background:#2186ef}.fd-nav-content{position:relative;top:0px;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1;overflow-x:hidden;overflow-y:auto;padding-bottom:30px}.error-modal-desc{font-size:13px;color:#191f258f;line-height:22px;margin-bottom:14px}.error-modal-list{height:200px;overflow-y:auto;margin-right:-25px;padding-right:25px}.error-modal-item{padding:10px 20px;line-height:21px;background:#f6f6f6;display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;border-radius:4px}.error-modal-item-label{flex:none;font-size:15px;color:#191f258f;padding-right:10px}.error-modal-item-content{text-align:right;flex:1;font-size:13px;color:#191f25}#body.blur{-webkit-filter:blur(3px);filter:blur(3px)}.zoom{display:flex;position:fixed;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:40px;width:125px;right:40px;margin-top:30px;z-index:10}.zoom .zoom-in,.zoom .zoom-out{width:30px;height:30px;background:#fff;color:#c1c1cd;cursor:pointer;background-size:100%;background-repeat:no-repeat}.zoom .zoom-out{background-image:url(https://gw.alicdn.com/tfs/TB1s0qhBHGYBuNjy0FoXXciBFXa-90-90.png)}.zoom .zoom-out.disabled{opacity:.5}.zoom .zoom-in{background-image:url(https://gw.alicdn.com/tfs/TB1UIgJBTtYBeNjy1XdXXXXyVXa-90-90.png)}.zoom .zoom-in.disabled{opacity:.5}.auto-judge.active:hover .editable-title,.node-wrap-box.active:hover .editable-title{border-bottom:1px dashed #fff}.auto-judge.active:hover .editable-title.editing,.node-wrap-box.active:hover .editable-title.editing{text-decoration:none;border:1px solid #d9d9d9}.auto-judge.active:hover .editable-title{border-color:#15bc83}.editable-title{line-height:15px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;border-bottom:1px dashed transparent}.editable-title:before{content:"";position:absolute;top:0;left:0;bottom:0;right:40px}.editable-title-input{flex:none;height:18px;padding-left:4px;text-indent:0;font-size:12px;line-height:18px;z-index:1}.editable-title-input:hover{text-decoration:none}.node-wrap-box{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative;width:220px;min-height:72px;-ms-flex-negative:0;flex-shrink:0;background:#fff;border-radius:4px}.node-wrap-box.active{cursor:pointer}.node-wrap-box:after{pointer-events:none;content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2;border-radius:4px;border:1px solid transparent;transition:all .1s cubic-bezier(.645,.045,.355,1);box-shadow:0 2px 5px #0000001a}.node-wrap-box.active:hover:after,.node-wrap-box.active:active:after{border:1px solid #3296fa;box-shadow:0 0 6px #3296fa4d}.node-wrap-box.active .close,.node-wrap-box:active .close,.node-wrap-box:hover .close{display:block}.node-wrap-box.error:after{border:1px solid #f25643;box-shadow:0 2px 5px #0000001a}.node-wrap-box .title{position:relative;display:flex;align-items:center;padding-left:16px;padding-right:30px;width:100%;height:24px;line-height:24px;font-size:12px;color:#fff;text-align:left;background:#576a95;border-radius:4px 4px 0 0}.node-wrap-box .title .iconfont{font-size:12px;margin-right:5px}.node-wrap-box .placeholder{color:#bfbfbf}.node-wrap-box .close{display:none;position:absolute;right:10px;top:50%;transform:translateY(-50%);width:20px;height:20px;font-size:14px;color:#fff;border-radius:50%;text-align:center;line-height:20px}.node-wrap-box .content{position:relative;font-size:14px;padding:16px 30px 16px 16px}.node-wrap-box .content .text{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.node-wrap-box .content .arrow{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:20px;height:14px;font-size:14px;color:#979797}.start-node.node-wrap-box .content .text{display:block;white-space:nowrap}.node-wrap-box:before{content:"";position:absolute;top:-12px;left:50%;-webkit-transform:translateX(-50%);transform:translate(-50%);width:0;height:4px;border-style:solid;border-width:8px 6px 4px;border-color:#cacaca transparent transparent;background:#f5f5f7}.start-node{cursor:default}.node-wrap-box.start-node:before{content:none}.top-left-cover-line{left:-1px}.top-left-cover-line,.top-right-cover-line{position:absolute;height:8px;width:50%;background-color:#f5f5f7;top:-4px}.top-right-cover-line{right:-1px}.bottom-left-cover-line{left:-1px}.bottom-left-cover-line,.bottom-right-cover-line{position:absolute;height:8px;width:50%;background-color:#f5f5f7;bottom:-4px}.bottom-right-cover-line{right:-1px}.dingflow-design{width:100%;background-color:#f5f5f7;overflow:auto;position:absolute;bottom:0;left:0;right:0;top:0}.dingflow-design .box-scale{transform:scale(1);display:inline-block;position:relative;width:100%;padding:54.5px 0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;background-color:#f5f5f7;transform-origin:50% 0px 0px}.dingflow-design .node-wrap{flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:1;-ms-flex-positive:1;padding:0 50px;position:relative}.dingflow-design .branch-wrap,.dingflow-design .node-wrap{display:inline-flex;width:100%}.dingflow-design .branch-box-wrap{display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:270px;width:100%;-ms-flex-negative:0;flex-shrink:0}.dingflow-design .branch-box{display:flex;overflow:visible;min-height:180px;height:auto;border-bottom:2px solid #ccc;border-top:2px solid #ccc;position:relative}.dingflow-design .branch-box .col-box{background:#f5f5f7}.dingflow-design .branch-box .col-box:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:0;margin:auto;width:2px;height:100%;background-color:#cacaca}.dingflow-design .add-branch{border:none;outline:none;user-select:none;justify-content:center;font-size:12px;padding:0 10px;height:30px;line-height:30px;border-radius:15px;color:#3296fa;background:#fff;box-shadow:0 2px 4px #0000001a;position:absolute;top:-16px;left:50%;transform:translate(-50%);transform-origin:center center;cursor:pointer;z-index:1;display:inline-flex;align-items:center;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.dingflow-design .add-branch:hover{transform:translate(-50%) scale(1.1);box-shadow:0 8px 16px #0000001a}.dingflow-design .add-branch:active{transform:translate(-50%);box-shadow:none}.dingflow-design .col-box{display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:center;align-items:center;position:relative}.dingflow-design .condition-node{min-height:220px}.dingflow-design .condition-node,.dingflow-design .condition-node-box{display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-flex:1}.dingflow-design .condition-node-box{padding-top:30px;padding-right:50px;padding-left:50px;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;flex-grow:1;position:relative}.dingflow-design .condition-node-box:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;width:2px;height:100%;background-color:#cacaca}.dingflow-design .auto-judge{position:relative;width:220px;min-height:72px;background:#fff;border-radius:4px;padding:14px 19px}.auto-judge.active{cursor:pointer}.dingflow-design .auto-judge:after{pointer-events:none;content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2;border-radius:4px;border:1px solid transparent;transition:all .1s cubic-bezier(.645,.045,.355,1);box-shadow:0 2px 5px #0000001a}.dingflow-design .auto-judge.active:active:after,.dingflow-design .auto-judge.active:hover:after{border:1px solid #3296fa;box-shadow:0 0 6px #3296fa4d}.dingflow-design .auto-judge.active .close,.dingflow-design .auto-judge:active .close,.dingflow-design .auto-judge:hover .close{display:block}.dingflow-design .auto-judge.error:after{border:1px solid #f25643;box-shadow:0 2px 5px #0000001a}.dingflow-design .auto-judge .title-wrapper{position:relative;font-size:12px;color:#15bc83;text-align:left;line-height:16px}.dingflow-design .auto-judge .title-wrapper .editable-title{display:inline-block;max-width:120px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dingflow-design .auto-judge .title-wrapper .priority-title{display:inline-block;float:right;margin-right:10px;color:#191f258f}.dingflow-design .auto-judge .placeholder{color:#bfbfbf}.dingflow-design .auto-judge .close{display:none;position:absolute;right:-10px;top:-10px;width:20px;height:20px;font-size:14px;color:#00000040;border-radius:50%;text-align:center;line-height:20px;z-index:2}.dingflow-design .auto-judge .content{font-size:14px;color:#191f25;text-align:left;margin-top:6px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.dingflow-design .auto-judge .sort-left,.dingflow-design .auto-judge .sort-right{position:absolute;top:0;bottom:0;display:none;z-index:1}.dingflow-design .auto-judge .sort-left{left:0;border-right:1px solid #f6f6f6}.dingflow-design .auto-judge .sort-right{right:0;border-left:1px solid #f6f6f6}.dingflow-design .auto-judge:hover .sort-left,.dingflow-design .auto-judge:hover .sort-right{display:flex;align-items:center}.dingflow-design .auto-judge .sort-left:hover,.dingflow-design .auto-judge .sort-right:hover{background:#efefef}.dingflow-design .end-node{border-radius:50%;font-size:14px;color:#191f2566;text-align:left}.dingflow-design .end-node .end-node-circle{width:10px;height:10px;margin:auto;border-radius:50%;background:#dbdcdc}.dingflow-design .end-node .end-node-text{margin-top:5px;text-align:center}.approval-setting{border-radius:2px;margin:20px 0;position:relative;background:#fff}.ant-btn{position:relative}@font-face{font-family:iconfont;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(data:font/ttf;base64,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AAEAEACpAAMAAQQJAAIADgC5AAMAAQQJAAMAEADHAAMAAQQJAAQAEADXAAMAAQQJAAUAFgDnAAMAAQQJAAYAEAD9AAMAAQQJAAoAVgENAAMAAQQJAAsAJgFjQ3JlYXRlZCBieSBpY29uZm9udGljb25mb250UmVndWxhcmljb25mb250aWNvbmZvbnRWZXJzaW9uIDEuMGljb25mb250R2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20AQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdABpAGMAbwBuAGYAbwBuAHQAUgBlAGcAdQBsAGEAcgBpAGMAbwBuAGYAbwBuAHQAaQBjAG8AbgBmAG8AbgB0AFYAZQByAHMAaQBvAG4AIAAxAC4AMABpAGMAbwBuAGYAbwBuAHQARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAAd6aGFua2FpBnNob3VxaQ94aWFuZ3lvdWppYW50b3UPeGlhbmd6dW9qaWFudG91BnF1eGlhbwVwYWl4dQhjaGFvc29uZwxzaGVucGlndWFubGkHdGlhbmppYQ50aWFvamlhbmZlbnpoaQAA) format("truetype")}.iconfont{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-zhankai:before{content:"\\e617"}.icon-shouqi:before{content:"\\e619"}.icon-xiangyoujiantou:before{content:"\\e65f"}.icon-xiangzuojiantou:before{content:"\\e660"}.icon-quxiao:before{content:"\\e627"}.icon-paixu:before{content:"\\e7e9"}.icon-chaosong:before{content:"\\e606"}.icon-shenpiguanli:before{content:"\\e61e"}.icon-tianjia:before{content:"\\e605"}.icon-tiaojianfenzhi:before{content:"\\e68b"}.error-modal-list{width:455px}\n')();
44445
- const _hoisted_1$2 = { class: "fd-nav-content" };
44446
- const _hoisted_2$2 = { class: "dingflow-design" };
44447
- const _hoisted_3$2 = { class: "zoom" };
44448
- const _sfc_main$2 = {
44654
+ var lcyq_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => '.clearfix{zoom:1}.clearfix:after,.clearfix:before{content:"";display:table}.clearfix:after{clear:both}@font-face{font-family:anticon;font-display:fallback;src:url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.eot);src:url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.woff) format("woff"),url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.ttf) format("truetype"),url(https://at.alicdn.com/t/font_148784_v4ggb6wrjmkotj4i.svg#iconfont) format("svg")}.clear:before,.clear:after{content:" ";display:table}.clear:after{clear:both}.ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.l{float:left}.ml_10{margin-left:10px}.mr_10{margin-right:10px}.radio_box a,.check_box a{font-size:12px;position:relative;padding-left:20px;margin-right:30px;cursor:pointer;color:#333;white-space:pre}.check_box.not a:hover{color:#333}.check_box.not a:before,.check_box.not a:hover:before{border:none}.check_box.not.active{background:#f3f3f3}.radio_box a:hover:before,.check_box a:hover:before{border:1px solid #46a6fe}.radio_box a:before,.check_box a:before{position:absolute;width:14px;height:14px;border:1px solid #dcdfe6;border-radius:2px;left:0;top:1px;content:""}.radio_box a:before{border-radius:50%}.check-dot.active:after,.radio_box a.active:after,.check_box a.active:after{position:absolute;width:10px;height:10px;border-radius:50%;top:3px;left:3px;content:""}.radio_box a.active:after{background:#46a6fe}.check_box a.active:after{background:url(~@/assets/images/check_box.png) no-repeat center}.anticon{display:inline-block;font-style:normal;vertical-align:baseline;text-align:center;text-transform:none;line-height:1;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.anticon:before{display:block;font-family:anticon!important}.anticon-close:before{content:"\\e633"}.anticon-right:before{content:"\\e61f"}.anticon-exclamation-circle{color:#f25643}.anticon-exclamation-circle:before{content:"\\e62c"}.anticon-left:before{content:"\\e620"}.anticon-close-circle:before{content:"\\e62e"}.ant-btn{line-height:1.5;display:inline-block;font-weight:400;text-align:center;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:0 15px;font-size:14px;border-radius:4px;height:32px;user-select:none;transition:all .3s cubic-bezier(.645,.045,.355,1);position:relative;color:#000000a6;background-color:#fff;border-color:#d9d9d9}.ant-btn>.anticon{line-height:1}.ant-btn,.ant-btn:active,.ant-btn:focus{outline:0}.ant-btn>a:only-child{color:currentColor}.ant-btn>a:only-child:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background:transparent}.ant-btn:focus,.ant-btn:hover{color:#40a9ff;background-color:#fff;border-color:#40a9ff}.ant-btn:focus>a:only-child,.ant-btn:hover>a:only-child{color:currentColor}.ant-btn:focus>a:only-child:after,.ant-btn:hover>a:only-child:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background:transparent}.ant-btn.active,.ant-btn:active{color:#096dd9;background-color:#fff;border-color:#096dd9}.ant-btn.active>a:only-child,.ant-btn:active>a:only-child{color:currentColor}.ant-btn.active>a:only-child:after,.ant-btn:active>a:only-child:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background:transparent}.ant-btn.active,.ant-btn:active,.ant-btn:focus,.ant-btn:hover{background:#fff;text-decoration:none}.ant-btn>i,.ant-btn>span{pointer-events:none}.ant-btn:before{position:absolute;top:-1px;left:-1px;bottom:-1px;right:-1px;background:#fff;opacity:.35;content:"";border-radius:inherit;z-index:1;transition:opacity .2s;pointer-events:none;display:none}.ant-btn .anticon{transition:margin-left .3s cubic-bezier(.645,.045,.355,1)}.ant-btn:active>span,.ant-btn:focus>span{position:relative}.ant-btn>.anticon+span,.ant-btn>span+.anticon{margin-left:8px}.fd-nav-container{display:inline-block;position:relative}.fd-nav-container .ghost-bar{position:absolute;width:150px;height:100%;left:0;background:#1583f2;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.fd-nav-container .ghost-bar:after{content:"";position:absolute;bottom:0;left:50%;margin-left:-5px;width:0;height:0;border-style:solid;border-width:0 5px 6px;border-color:transparent transparent #f6f6f6}.fd-nav-item{position:relative;cursor:pointer;display:inline-block;line-height:60px;width:150px;text-align:center;white-space:nowrap}.fd-nav-item .order-num{display:inline-block;width:20px;height:20px;line-height:20px;border:1px solid #fff;border-radius:50%;margin-right:6px;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.fd-nav-item.active .order-num{color:#1583f2;background:#fff}.ant-input{font-family:Chinese Quote,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;font-variant:tabular-nums;box-sizing:border-box;margin:0;list-style:none;position:relative;display:inline-block;padding:4px 11px;width:100%;height:32px;font-size:14px;line-height:1.5;color:#000000a6;background-color:#fff;background-image:none;border:1px solid #d9d9d9;border-radius:4px;transition:all .3s}.ant-input::-moz-placeholder{color:#bfbfbf;opacity:1}.ant-input:-ms-input-placeholder{color:#bfbfbf}.ant-input::-webkit-input-placeholder{color:#bfbfbf}.ant-input:focus,.ant-input:hover{border-color:#40a9ff;border-right-width:1px!important}.ant-input:focus{outline:0;box-shadow:0 0 0 2px #1890ff33}.wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%}.fd-nav{position:fixed;top:0;left:0;right:0;z-index:997;width:100%;height:60px;font-size:14px;color:#fff;background:#3296fa;display:flex;align-items:center}.fd-nav>*{flex:1;width:100%}.fd-nav .fd-nav-left{display:-webkit-box;display:flex;align-items:center}.fd-nav .fd-nav-center{flex:none;width:600px;text-align:center}.fd-nav .fd-nav-right{display:flex;align-items:center;justify-content:flex-end;text-align:right}.fd-nav .fd-nav-back{display:inline-block;width:60px;height:60px;font-size:22px;border-right:1px solid #1583f2;text-align:center;cursor:pointer}.fd-nav .fd-nav-back:hover{background:#5af}.fd-nav .fd-nav-back:active{background:#1583f2}.fd-nav .fd-nav-back .anticon{line-height:60px}.fd-nav .fd-nav-title{width:0;flex:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:0 15px}.fd-nav a{color:#fff;margin-left:12px}.fd-nav .button-publish{min-width:80px;margin-left:4px;margin-right:15px;color:#3296fa;border-color:#fff}.fd-nav .button-publish.ant-btn:focus,.fd-nav .button-publish.ant-btn:hover{color:#3296fa;border-color:#fff;box-shadow:0 10px 20px #0000004d}.fd-nav .button-publish.ant-btn:active{color:#3296fa;background:#d6eaff;box-shadow:none}.fd-nav .button-preview{min-width:80px;margin-left:16px;margin-right:4px;color:#fff;border-color:#fff;background:transparent}.fd-nav .button-preview.ant-btn:focus,.fd-nav .button-preview.ant-btn:hover{color:#fff;border-color:#fff;background:#59acfc}.fd-nav .button-preview.ant-btn:active{color:#fff;border-color:#fff;background:#2186ef}.fd-nav-content{position:relative;top:0px;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1;overflow-x:hidden;overflow-y:auto;padding-bottom:30px}.error-modal-desc{font-size:13px;color:#191f258f;line-height:22px;margin-bottom:14px}.error-modal-list{height:200px;overflow-y:auto;margin-right:-25px;padding-right:25px}.error-modal-item{padding:10px 20px;line-height:21px;background:#f6f6f6;display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;border-radius:4px}.error-modal-item-label{flex:none;font-size:15px;color:#191f258f;padding-right:10px}.error-modal-item-content{text-align:right;flex:1;font-size:13px;color:#191f25}#body.blur{-webkit-filter:blur(3px);filter:blur(3px)}.zoom{display:flex;position:absolute;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:40px;width:125px;right:40px;margin-top:30px;z-index:10}.zoom .zoom-in,.zoom .zoom-out{width:30px;height:30px;background:#fff;color:#c1c1cd;cursor:pointer;background-size:100%;background-repeat:no-repeat}.zoom .zoom-out{background-image:url(https://gw.alicdn.com/tfs/TB1s0qhBHGYBuNjy0FoXXciBFXa-90-90.png)}.zoom .zoom-out.disabled{opacity:.5}.zoom .zoom-in{background-image:url(https://gw.alicdn.com/tfs/TB1UIgJBTtYBeNjy1XdXXXXyVXa-90-90.png)}.zoom .zoom-in.disabled{opacity:.5}.auto-judge.active:hover .editable-title,.node-wrap-box.active:hover .editable-title{border-bottom:1px dashed #fff}.auto-judge.active:hover .editable-title.editing,.node-wrap-box.active:hover .editable-title.editing{text-decoration:none;border:1px solid #d9d9d9}.auto-judge.active:hover .editable-title{border-color:#15bc83}.editable-title{line-height:15px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;border-bottom:1px dashed transparent}.editable-title:before{content:"";position:absolute;top:0;left:0;bottom:0;right:40px}.editable-title-input{flex:none;height:18px;padding-left:4px;text-indent:0;font-size:12px;line-height:18px;z-index:1}.editable-title-input:hover{text-decoration:none}.node-wrap-box{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:relative;width:220px;min-height:72px;-ms-flex-negative:0;flex-shrink:0;background:#fff;border-radius:4px}.node-wrap-box.active{cursor:pointer}.node-wrap-box:after{pointer-events:none;content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2;border-radius:4px;border:1px solid transparent;transition:all .1s cubic-bezier(.645,.045,.355,1);box-shadow:0 2px 5px #0000001a}.node-wrap-box.active:hover:after,.node-wrap-box.active:active:after{border:1px solid #3296fa;box-shadow:0 0 6px #3296fa4d}.node-wrap-box.active .close,.node-wrap-box:active .close,.node-wrap-box:hover .close{display:block}.node-wrap-box.error:after{border:1px solid #f25643;box-shadow:0 2px 5px #0000001a}.node-wrap-box .title{position:relative;display:flex;align-items:center;padding-left:16px;padding-right:30px;width:100%;height:24px;line-height:24px;font-size:12px;color:#fff;text-align:left;background:#576a95;border-radius:4px 4px 0 0}.node-wrap-box .title .iconfont{font-size:12px;margin-right:5px}.node-wrap-box .placeholder{color:#bfbfbf}.node-wrap-box .close{display:none;position:absolute;right:10px;top:50%;transform:translateY(-50%);width:20px;height:20px;font-size:14px;color:#fff;border-radius:50%;text-align:center;line-height:20px}.node-wrap-box .content{position:relative;font-size:14px;padding:16px 30px 16px 16px}.node-wrap-box .content .text{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.node-wrap-box .content .arrow{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:20px;height:14px;font-size:14px;color:#979797}.start-node.node-wrap-box .content .text{display:block;white-space:nowrap}.node-wrap-box:before{content:"";position:absolute;top:-12px;left:50%;-webkit-transform:translateX(-50%);transform:translate(-50%);width:0;height:4px;border-style:solid;border-width:8px 6px 4px;border-color:#cacaca transparent transparent;background:#f5f5f7}.start-node{cursor:default}.node-wrap-box.start-node:before{content:none}.top-left-cover-line{left:-1px}.top-left-cover-line,.top-right-cover-line{position:absolute;height:8px;width:50%;background-color:#f5f5f7;top:-4px}.top-right-cover-line{right:-1px}.bottom-left-cover-line{left:-1px}.bottom-left-cover-line,.bottom-right-cover-line{position:absolute;height:8px;width:50%;background-color:#f5f5f7;bottom:-4px}.bottom-right-cover-line{right:-1px}.dingflow-design{width:100%;background-color:#f5f5f7;overflow:auto;position:absolute;bottom:0;left:0;right:0;top:0}.dingflow-design .box-scale{transform:scale(1);display:inline-block;position:relative;width:100%;padding:54.5px 0;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;background-color:#f5f5f7;transform-origin:50% 0px 0px}.dingflow-design .node-wrap{flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-flex:1;-ms-flex-positive:1;padding:0 50px;position:relative}.dingflow-design .branch-wrap,.dingflow-design .node-wrap{display:inline-flex;width:100%}.dingflow-design .branch-box-wrap{display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:270px;width:100%;-ms-flex-negative:0;flex-shrink:0}.dingflow-design .branch-box{display:flex;overflow:visible;min-height:180px;height:auto;border-bottom:2px solid #ccc;border-top:2px solid #ccc;position:relative}.dingflow-design .branch-box .col-box{background:#f5f5f7}.dingflow-design .branch-box .col-box:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;z-index:0;margin:auto;width:2px;height:100%;background-color:#cacaca}.dingflow-design .add-branch{border:none;outline:none;user-select:none;justify-content:center;font-size:12px;padding:0 10px;height:30px;line-height:30px;border-radius:15px;color:#3296fa;background:#fff;box-shadow:0 2px 4px #0000001a;position:absolute;top:-16px;left:50%;transform:translate(-50%);transform-origin:center center;cursor:pointer;z-index:1;display:inline-flex;align-items:center;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1)}.dingflow-design .add-branch:hover{transform:translate(-50%) scale(1.1);box-shadow:0 8px 16px #0000001a}.dingflow-design .add-branch:active{transform:translate(-50%);box-shadow:none}.dingflow-design .col-box{display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-align:center;align-items:center;position:relative}.dingflow-design .condition-node{min-height:220px}.dingflow-design .condition-node,.dingflow-design .condition-node-box{display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;-webkit-box-flex:1}.dingflow-design .condition-node-box{padding-top:30px;padding-right:50px;padding-left:50px;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center;flex-grow:1;position:relative}.dingflow-design .condition-node-box:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;width:2px;height:100%;background-color:#cacaca}.dingflow-design .auto-judge{position:relative;width:220px;min-height:72px;background:#fff;border-radius:4px;padding:14px 19px}.auto-judge.active{cursor:pointer}.dingflow-design .auto-judge:after{pointer-events:none;content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:2;border-radius:4px;border:1px solid transparent;transition:all .1s cubic-bezier(.645,.045,.355,1);box-shadow:0 2px 5px #0000001a}.dingflow-design .auto-judge.active:active:after,.dingflow-design .auto-judge.active:hover:after{border:1px solid #3296fa;box-shadow:0 0 6px #3296fa4d}.dingflow-design .auto-judge.active .close,.dingflow-design .auto-judge:active .close,.dingflow-design .auto-judge:hover .close{display:block}.dingflow-design .auto-judge.error:after{border:1px solid #f25643;box-shadow:0 2px 5px #0000001a}.dingflow-design .auto-judge .title-wrapper{position:relative;font-size:12px;color:#15bc83;text-align:left;line-height:16px}.dingflow-design .auto-judge .title-wrapper .editable-title{display:inline-block;max-width:120px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dingflow-design .auto-judge .title-wrapper .priority-title{display:inline-block;float:right;margin-right:10px;color:#191f258f}.dingflow-design .auto-judge .placeholder{color:#bfbfbf}.dingflow-design .auto-judge .close{display:none;position:absolute;right:-10px;top:-10px;width:20px;height:20px;font-size:14px;color:#00000040;border-radius:50%;text-align:center;line-height:20px;z-index:2}.dingflow-design .auto-judge .content{font-size:14px;color:#191f25;text-align:left;margin-top:6px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}.dingflow-design .auto-judge .sort-left,.dingflow-design .auto-judge .sort-right{position:absolute;top:0;bottom:0;display:none;z-index:1}.dingflow-design .auto-judge .sort-left{left:0;border-right:1px solid #f6f6f6}.dingflow-design .auto-judge .sort-right{right:0;border-left:1px solid #f6f6f6}.dingflow-design .auto-judge:hover .sort-left,.dingflow-design .auto-judge:hover .sort-right{display:flex;align-items:center}.dingflow-design .auto-judge .sort-left:hover,.dingflow-design .auto-judge .sort-right:hover{background:#efefef}.dingflow-design .end-node{border-radius:50%;font-size:14px;color:#191f2566;text-align:left}.dingflow-design .end-node .end-node-circle{width:10px;height:10px;margin:auto;border-radius:50%;background:#dbdcdc}.dingflow-design .end-node .end-node-text{margin-top:5px;text-align:center}.approval-setting{border-radius:2px;margin:20px 0;position:relative;background:#fff}.ant-btn{position:relative}@font-face{font-family:iconfont;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(data:font/ttf;base64,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) format("truetype")}.iconfont{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-time_big_icon:before{content:"\\e67e"}.icon-zhankai:before{content:"\\e617"}.icon-shouqi:before{content:"\\e619"}.icon-xiangyoujiantou:before{content:"\\e65f"}.icon-xiangzuojiantou:before{content:"\\e660"}.icon-quxiao:before{content:"\\e627"}.icon-paixu:before{content:"\\e7e9"}.icon-chaosong:before{content:"\\e606"}.icon-shenpiguanli:before{content:"\\e61e"}.icon-tianjia:before{content:"\\e605"}.icon-tiaojianfenzhi:before{content:"\\e68b"}.error-modal-list{width:455px}\n')();
44655
+ const _hoisted_1$4 = { class: "fd-nav-content" };
44656
+ const _hoisted_2$3 = { class: "dingflow-design" };
44657
+ const _hoisted_3$3 = { class: "zoom" };
44658
+ const _sfc_main$4 = {
44449
44659
  __name: "lcyq",
44450
44660
  props: {
44451
44661
  expressionConfig: {
@@ -44476,10 +44686,18 @@ const _sfc_main$2 = {
44476
44686
  let props = __props;
44477
44687
  setLcyqConfig(props);
44478
44688
  let nowVal = ref$1(100);
44479
- let nodeConfig = ref$1(defaultData);
44689
+ let nodeConfig = ref$1(initData());
44480
44690
  let directorMaxLevel = ref$1(0);
44481
44691
  let verifyResult = false;
44482
44692
  provide("nodeConfig", nodeConfig);
44693
+ function initData() {
44694
+ return {
44695
+ "node_name": "\u7533\u8BF7",
44696
+ "node_key": nanoid(20),
44697
+ "type": 0,
44698
+ "childNode": null
44699
+ };
44700
+ }
44483
44701
  watch(props, (newValue, oldValue) => {
44484
44702
  setLcyqConfig(props);
44485
44703
  }, { deep: true });
@@ -44521,21 +44739,46 @@ const _sfc_main$2 = {
44521
44739
  warning2("\u8BF7\u586B\u5199\u5FC5\u586B\u9879");
44522
44740
  cb(false);
44523
44741
  } else {
44742
+ handleNodeConfig(nodeConfig.value);
44524
44743
  cb(JSON.stringify(nodeConfig.value));
44525
44744
  }
44526
44745
  }
44746
+ function handleNodeConfig(node, parentNode) {
44747
+ node.parent_key = parentNode ? parentNode.node_key : null;
44748
+ if (node.type === 3) {
44749
+ node.sourceRef = parentNode.parent_key;
44750
+ node.parent_key = parentNode.parent_key;
44751
+ if (node.childNode) {
44752
+ node.targetRef = node.childNode.node_key;
44753
+ } else {
44754
+ node.targetRef = parentNode.childNode ? parentNode.childNode.node_key : "endEvent";
44755
+ }
44756
+ }
44757
+ if (node.childNode) {
44758
+ handleNodeConfig(node.childNode, node);
44759
+ }
44760
+ if (node.type === 4) {
44761
+ for (let i = 0; i < node.conditionNodes.length; i++) {
44762
+ handleNodeConfig(node.conditionNodes[i], node);
44763
+ }
44764
+ }
44765
+ }
44766
+ function resetValue() {
44767
+ setValue(initData());
44768
+ }
44527
44769
  function setValue(val) {
44528
44770
  nodeConfig.value = val;
44529
44771
  }
44530
44772
  __expose({
44531
44773
  getValue: getValue2,
44532
- setValue
44774
+ setValue,
44775
+ resetValue
44533
44776
  });
44534
44777
  return (_ctx, _cache) => {
44535
44778
  return openBlock(), createElementBlock(Fragment, null, [
44536
- createElementVNode("div", _hoisted_1$2, [
44537
- createElementVNode("section", _hoisted_2$2, [
44538
- createElementVNode("div", _hoisted_3$2, [
44779
+ createElementVNode("div", _hoisted_1$4, [
44780
+ createElementVNode("section", _hoisted_2$3, [
44781
+ createElementVNode("div", _hoisted_3$3, [
44539
44782
  createElementVNode("div", {
44540
44783
  class: normalizeClass(["zoom-out", unref(nowVal) == 50 && "disabled"]),
44541
44784
  onClick: _cache[0] || (_cache[0] = ($event) => zoomSize(1))
@@ -44550,7 +44793,7 @@ const _sfc_main$2 = {
44550
44793
  class: "box-scale",
44551
44794
  style: normalizeStyle(`transform: scale(${unref(nowVal) / 100});`)
44552
44795
  }, [
44553
- createVNode(_sfc_main$3, {
44796
+ createVNode(_sfc_main$5, {
44554
44797
  nodeConfig: unref(nodeConfig),
44555
44798
  "onUpdate:nodeConfig": _cache[2] || (_cache[2] = ($event) => isRef(nodeConfig) ? nodeConfig.value = $event : nodeConfig = $event)
44556
44799
  }, null, 8, ["nodeConfig"]),
@@ -44561,13 +44804,13 @@ const _sfc_main$2 = {
44561
44804
  ], 4)
44562
44805
  ])
44563
44806
  ]),
44564
- createVNode(_sfc_main$5, { directorMaxLevel: unref(directorMaxLevel) }, null, 8, ["directorMaxLevel"])
44807
+ createVNode(_sfc_main$7, { directorMaxLevel: unref(directorMaxLevel) }, null, 8, ["directorMaxLevel"])
44565
44808
  ], 64);
44566
44809
  };
44567
44810
  }
44568
44811
  };
44569
- _sfc_main$2.install = (App) => {
44570
- App.component(_sfc_main$2.__name, _sfc_main$2);
44812
+ _sfc_main$4.install = (App) => {
44813
+ App.component(_sfc_main$4.__name, _sfc_main$4);
44571
44814
  };
44572
44815
  const { message } = createDiscreteApi(["message"]);
44573
44816
  function warning(message2, options) {
@@ -44643,20 +44886,20 @@ function useMessage() {
44643
44886
  success: success.bind(ctx2)
44644
44887
  };
44645
44888
  }
44646
- var operation_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => '@font-face{font-family:iconfont;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(data:font/ttf;base64,AAEAAAALAIAAAwAwR1NVQiCLJXoAAAE4AAAAVE9TLzI8Gkq5AAABjAAAAGBjbWFwNcI33QAAAhgAAAImZ2x5ZhPraJcAAARYAAAFsGhlYWQqyVvkAAAA4AAAADZoaGVhB+ADiwAAALwAAAAkaG10eCwAAAAAAAHsAAAALGxvY2EFrAdSAAAEQAAAABhtYXhwARkAagAAARgAAAAgbmFtZRCjPLAAAAoIAAACZ3Bvc3TuabsAAAAMcAAAAKQAAQAAA4D/gABcBAAAAP//BAEAAQAAAAAAAAAAAAAAAAAAAAsAAQAAAAEAAEinHxJfDzz1AAsEAAAAAADj1IvzAAAAAOPUi/MAAP+ABAEDgQAAAAgAAgAAAAAAAAABAAAACwBeAAQAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKADAAPgACREZMVAAObGF0bgAaAAQAAAAAAAAAAQAAAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAQEAAGQAAUAAAKJAswAAACPAokCzAAAAesAMgEIAAACAAUDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFBmRWQAwOYF5+kDgP+AAAAD3ACAAAAAAQAAAAAAAAAAAAAAAAACBAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAFAAAAAwAAACwAAAAEAAABngABAAAAAACYAAMAAQAAACwAAwAKAAABngAEAGwAAAASABAAAwAC5gbmF+YZ5h7mJ+Zg5ovn6f//AADmBeYX5hnmHuYn5l/mi+fp//8AAAAAAAAAAAAAAAAAAAAAAAEAEgAUABQAFAAUABQAFgAWAAAACQAHAAEAAgAIAAUAAwAEAAoABgAAAQYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAiAAAAAAAAAAKAADmBQAA5gUAAAAJAADmBgAA5gYAAAAHAADmFwAA5hcAAAABAADmGQAA5hkAAAACAADmHgAA5h4AAAAIAADmJwAA5icAAAAFAADmXwAA5l8AAAADAADmYAAA5mAAAAAEAADmiwAA5osAAAAKAADn6QAA5+kAAAAGAAAAAAAAACIARgBqAI4BCAFuAbQCOAJkAtgAAgAA/4AD7gOAAAUACwAABQE3CQEXBQE3CQEXAgD+EkoBpAGkSv4S/hJKAaQBpEqAAe5J/lwBpEklAe1K/lwBpEoAAAACAAD/gAPuA4AABQALAAAJAicJAQMJAScJAQOk/lz+XEoB7gHuSv5c/lxKAe4B7gFJAaT+XEkB7v4S/e4BpP5cSgHt/hMAAAABAAD/sgMBA1EAEAAACQEmIgYUFwkBBhQWMjcBNjQC+v5QCBQPBwGg/mAHDxQIAbAHAZYBtAcPFAj+YP5XBxUPCAG5BxUAAAABAAD/sgLhA1EAEAAABQkBNjQmIgcBBhQXARYyNjQC2v5gAaAHDxQI/lAHBwGwCBQPIwGpAaAIFA8H/kwHFQf+RwgPFQAAAAAEAAD/gAQBA4EAGAAxAD4ASwAAATIXHgEXFhQHDgEHBiInLgEnJjQ3PgE3NjciBw4BBwYUFx4BFxYyNz4BNzY0Jy4BJyYBIiY0NwE2MhYUBwEGISInASY0NjIXARYUBgIAWlFPeiEjIiJ6T1G0UU96ISMiInpPUVpoX1yOJygoJ45cX9BfXI4nKCgnjlxf/vcPFQoBQwoeFQr+vQoBMw8K/r0KFR4KAUMKFQM4IiJ6T1G0UU96ISMiInpPUbRRT3ohI0goJ45cX9BfXI4nKCgnjlxf0F9cjico/TsVHgoBQwoVHgr+vQoKAUMKHhUK/r0KHhUABAAA//cDlgLrABYAJgA2AEYAAAEyFhURNzYyHwEWFA8BDgEuAScRNDYzAzIWHQEUBiMhIiY9ATQ2MwEyFh0BFAYjISImPQE0NjMBMhYdARQGIyEiJj0BNDYzAwAJDD4GEgYeBgZ0Cx8dEwEMCaoJDAwJ/lUJDAwJAasJDAwJ/lUJDAwJAwAJDAwJ/QAJDAwJAhUMCf58PgYGHgcRB3QLBgsZEAHUCQz+Vg0JKgkNDQkqCQ0BQA0JKgkNDQkqCQ0BQA0JKgkNDQkqCQ0AAgAA/+oD2wMLABkAJwAAJQYnMSUuAjY3ATYeAgcDDgEnJS4BNDcJARceAQ8BDgEuAT0BNDYBfg4S/uoMDwIMCwNeCxYSBwKhBB0Q/tgFBwUBZf6kNggFBTYCCgoGDcwMBFQEExgVBQGkBQIPFgv9iBEQBVkBCQwEAZH+JhIDDgZSBQMDCAVkCAkAAAACAAD/xAOfAzoAEQBVAAAFIRcWFx4BFxYzITI3PgE3Nj0BNCYrAS4CJyYnJicmNzY3Njc2NzY3NTYvASYnJicmJyYnJgYHBgcGBwYXFhcWFx4BFxYHBgcOAQcjIgYHBhcVFCMhA5/8wgEBAwUPDAgSAsITCAwQAwMeGqUDDgYHCQQNCA0VCxoPBwwHBAYGBAEBAggPDRUiOSNbI2ohBwIEBAUECRAKLAodEQ0fBBMEpw4hBAIBAgM+BgkKCQsMAgEBAgwMCAu3GBcCFAcHCQUTEiMyFycWDBMSDBsDGhcNDQYhGxkXJxUOAg4qaBYWHBcbDRobEDwPMCgeGQIVAx0OCkQQHQAAAAABAAAAAAOBAwAAGwAAAREUBiImNREhIiY0NjMhETQ2MhYVESEyFhQGIwIwHCgc/uAUHBwUASAcKBwBIBQcHBQBUP7gFBwcFAEgHCgcASAUHBwU/uAcKBwAAQAA/80D6AM1AF0AAAEyFh0BFAYrARUzMh4BHQEzMhYdARQGKwEiJj0BNDY7ATU0JichFTMyFh0BFAYrASImPQE0NjsBNSMiBh0BMx4BHQEUBisBIiY9ATQ2OwE1ND4BNyE1IyImPQE0NjMCkxQdHRRh/x0yHhkUHBwUkhQdHRQYBgX/ABgVHB0UkhQdHRQY/wUHGBUcHRSSFBwcFBkcMR0BAmEUHR0UAzQeFtAVH1QeNCBkHxWcFh4eFpwVH2EFBwFuHxWcFh4eFpwVH24HBGMBHhWcFh4eFpwVH2EfNSABVB8V0BYeAAAAEgDeAAEAAAAAAAAAEwAAAAEAAAAAAAEACAATAAEAAAAAAAIABwAbAAEAAAAAAAMACAAiAAEAAAAAAAQACAAqAAEAAAAAAAUACwAyAAEAAAAAAAYACAA9AAEAAAAAAAoAKwBFAAEAAAAAAAsAEwBwAAMAAQQJAAAAJgCDAAMAAQQJAAEAEACpAAMAAQQJAAIADgC5AAMAAQQJAAMAEADHAAMAAQQJAAQAEADXAAMAAQQJAAUAFgDnAAMAAQQJAAYAEAD9AAMAAQQJAAoAVgENAAMAAQQJAAsAJgFjQ3JlYXRlZCBieSBpY29uZm9udGljb25mb250UmVndWxhcmljb25mb250aWNvbmZvbnRWZXJzaW9uIDEuMGljb25mb250R2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20AQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdABpAGMAbwBuAGYAbwBuAHQAUgBlAGcAdQBsAGEAcgBpAGMAbwBuAGYAbwBuAHQAaQBjAG8AbgBmAG8AbgB0AFYAZQByAHMAaQBvAG4AIAAxAC4AMABpAGMAbwBuAGYAbwBuAHQARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAAd6aGFua2FpBnNob3VxaQ94aWFuZ3lvdWppYW50b3UPeGlhbmd6dW9qaWFudG91BnF1eGlhbwVwYWl4dQhjaGFvc29uZwxzaGVucGlndWFubGkHdGlhbmppYQ50aWFvamlhbmZlbnpoaQAA) format("truetype")}.iconfont[data-v-54731654]{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-zhankai[data-v-54731654]:before{content:"\\e617"}.icon-shouqi[data-v-54731654]:before{content:"\\e619"}.icon-xiangyoujiantou[data-v-54731654]:before{content:"\\e65f"}.icon-xiangzuojiantou[data-v-54731654]:before{content:"\\e660"}.icon-quxiao[data-v-54731654]:before{content:"\\e627"}.icon-paixu[data-v-54731654]:before{content:"\\e7e9"}.icon-chaosong[data-v-54731654]:before{content:"\\e606"}.icon-shenpiguanli[data-v-54731654]:before{content:"\\e61e"}.icon-tianjia[data-v-54731654]:before{content:"\\e605"}.icon-tiaojianfenzhi[data-v-54731654]:before{content:"\\e68b"}.operation[data-v-54731654]{border:1px dashed #E3E3E9;margin:0 auto;max-width:1200px}.operation .operation_item[data-v-54731654]{display:flex;width:100%;flex-wrap:wrap;border-bottom:1px solid #EEEEEE}.operation .operation_item .item_label[data-v-54731654]{flex:0 0 160px;padding:16px 20px;background-color:#f5f6fa;border-left:1px solid #EEEEEE}.operation .operation_item .item_label span[data-v-54731654]{color:red}.operation .operation_item .item_info[data-v-54731654]{display:flex;flex:1;align-items:center;flex-wrap:wrap;padding:0 20px;min-height:52px}.operation .operation_item .item_info.opinion_input[data-v-54731654]{padding:7px 20px}.operation .operation_item .item_info.opinion_input .n-input[data-v-54731654]{min-height:78px}.operation .operation_submit[data-v-54731654]{padding:20px 20px 20px 300px;position:sticky;display:flex;justify-content:center;align-items:center}.operation .operation_submit .n-button[data-v-54731654]{width:120px;height:30px;margin-right:80px}.operation .operation_submit .n-button[data-v-54731654]:first{margin-right:80px}.operation .operation_submit .collapse_btn[data-v-54731654]{margin-right:16px;cursor:pointer}.operation .operation_submit .collapse_tip[data-v-54731654]{color:#999}\n')();
44647
- const _hoisted_1$1 = { class: "operation" };
44648
- const _hoisted_2$1 = { class: "operation_item" };
44649
- const _hoisted_3$1 = { class: "item_info" };
44650
- const _hoisted_4$1 = {
44889
+ var operation_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => '@font-face{font-family:iconfont;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(data:font/ttf;base64,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) format("truetype")}.iconfont[data-v-2a135494]{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-time_big_icon[data-v-2a135494]:before{content:"\\e67e"}.icon-zhankai[data-v-2a135494]:before{content:"\\e617"}.icon-shouqi[data-v-2a135494]:before{content:"\\e619"}.icon-xiangyoujiantou[data-v-2a135494]:before{content:"\\e65f"}.icon-xiangzuojiantou[data-v-2a135494]:before{content:"\\e660"}.icon-quxiao[data-v-2a135494]:before{content:"\\e627"}.icon-paixu[data-v-2a135494]:before{content:"\\e7e9"}.icon-chaosong[data-v-2a135494]:before{content:"\\e606"}.icon-shenpiguanli[data-v-2a135494]:before{content:"\\e61e"}.icon-tianjia[data-v-2a135494]:before{content:"\\e605"}.icon-tiaojianfenzhi[data-v-2a135494]:before{content:"\\e68b"}.operation[data-v-2a135494]{border:1px dashed #E3E3E9;margin:0 auto;max-width:1200px}.operation .operation_item[data-v-2a135494]{display:flex;width:100%;flex-wrap:wrap;border-bottom:1px solid #EEEEEE}.operation .operation_item .item_label[data-v-2a135494]{flex:0 0 160px;padding:16px 20px;background-color:#f5f6fa;border-left:1px solid #EEEEEE}.operation .operation_item .item_label span[data-v-2a135494]{color:red}.operation .operation_item .item_info[data-v-2a135494]{display:flex;flex:1;align-items:center;flex-wrap:wrap;padding:0 20px;min-height:52px}.operation .operation_item .item_info.opinion_input[data-v-2a135494]{padding:7px 20px}.operation .operation_item .item_info.opinion_input .n-input[data-v-2a135494]{min-height:78px}.operation .operation_submit[data-v-2a135494]{padding:20px 20px 20px 300px;position:sticky;display:flex;justify-content:center;align-items:center}.operation .operation_submit .n-button[data-v-2a135494]{width:120px;height:30px;margin-right:80px}.operation .operation_submit .n-button[data-v-2a135494]:first{margin-right:80px}.operation .operation_submit .collapse_btn[data-v-2a135494]{margin-right:16px;cursor:pointer}.operation .operation_submit .collapse_tip[data-v-2a135494]{color:#999}\n')();
44890
+ const _hoisted_1$3 = { class: "operation" };
44891
+ const _hoisted_2$2 = { class: "operation_item" };
44892
+ const _hoisted_3$2 = { class: "item_info" };
44893
+ const _hoisted_4$2 = {
44651
44894
  key: 0,
44652
44895
  class: "operation_item"
44653
44896
  };
44654
- const _hoisted_5$1 = { class: "item_info opinion_input" };
44897
+ const _hoisted_5$2 = { class: "item_info opinion_input" };
44655
44898
  const _hoisted_6$1 = {
44656
44899
  ref: "actionSubmit",
44657
44900
  class: "operation_submit"
44658
44901
  };
44659
- const _sfc_main$1 = {
44902
+ const _sfc_main$3 = {
44660
44903
  __name: "operation",
44661
44904
  props: {
44662
44905
  nodeConfig: {
@@ -44673,14 +44916,14 @@ const _sfc_main$1 = {
44673
44916
  const props = __props;
44674
44917
  const emits = __emit;
44675
44918
  let actionForm = ref$1({
44676
- type: null,
44677
- operation: ""
44919
+ value: null,
44920
+ comment: ""
44678
44921
  });
44679
44922
  let isCollapse = ref$1(false);
44680
44923
  let clickCollapse = ref$1(false);
44681
44924
  let isDisabled2 = ref$1(false);
44682
44925
  function saveForm() {
44683
- if (!actionForm.value.type) {
44926
+ if (!actionForm.value.value) {
44684
44927
  warning2("\u8BF7\u9009\u62E9\u5BA1\u6279\u64CD\u4F5C");
44685
44928
  return;
44686
44929
  }
@@ -44703,17 +44946,17 @@ const _sfc_main$1 = {
44703
44946
  saveForm
44704
44947
  });
44705
44948
  return (_ctx, _cache) => {
44706
- return openBlock(), createElementBlock("div", _hoisted_1$1, [
44949
+ return openBlock(), createElementBlock("div", _hoisted_1$3, [
44707
44950
  !unref(isCollapse) || !unref(clickCollapse) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
44708
- createElementVNode("div", _hoisted_2$1, [
44951
+ createElementVNode("div", _hoisted_2$2, [
44709
44952
  _cache[4] || (_cache[4] = createElementVNode("div", { class: "item_label" }, [
44710
44953
  createTextVNode(" \u5BA1\u6279\u64CD\u4F5C "),
44711
44954
  createElementVNode("span", { class: "color_red" }, "*")
44712
44955
  ], -1)),
44713
- createElementVNode("div", _hoisted_3$1, [
44956
+ createElementVNode("div", _hoisted_3$2, [
44714
44957
  createVNode(unref(NRadioGroup), {
44715
- value: unref(actionForm).type,
44716
- "onUpdate:value": _cache[0] || (_cache[0] = ($event) => unref(actionForm).type = $event),
44958
+ value: unref(actionForm).value,
44959
+ "onUpdate:value": _cache[0] || (_cache[0] = ($event) => unref(actionForm).value = $event),
44717
44960
  name: "action"
44718
44961
  }, {
44719
44962
  default: withCtx(() => [
@@ -44743,12 +44986,12 @@ const _sfc_main$1 = {
44743
44986
  }, 8, ["value"])
44744
44987
  ])
44745
44988
  ]),
44746
- unref(actionForm).type ? (openBlock(), createElementBlock("div", _hoisted_4$1, [
44989
+ unref(actionForm).value ? (openBlock(), createElementBlock("div", _hoisted_4$2, [
44747
44990
  _cache[5] || (_cache[5] = createElementVNode("div", { class: "item_label" }, " \u5BA1\u6279\u610F\u89C1 ", -1)),
44748
- createElementVNode("div", _hoisted_5$1, [
44991
+ createElementVNode("div", _hoisted_5$2, [
44749
44992
  createVNode(unref(NInput), {
44750
- value: unref(actionForm).operation,
44751
- "onUpdate:value": _cache[1] || (_cache[1] = ($event) => unref(actionForm).operation = $event),
44993
+ value: unref(actionForm).comment,
44994
+ "onUpdate:value": _cache[1] || (_cache[1] = ($event) => unref(actionForm).comment = $event),
44752
44995
  placeholder: "\u8BF7\u8F93\u5165\u5BA1\u6279\u610F\u89C1",
44753
44996
  type: "textarea",
44754
44997
  autosize: ""
@@ -44795,19 +45038,19 @@ const _sfc_main$1 = {
44795
45038
  };
44796
45039
  }
44797
45040
  };
44798
- var Operation = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-54731654"]]);
45041
+ var Operation = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-2a135494"]]);
44799
45042
  Operation.install = (App) => {
44800
45043
  App.component(Operation.__name, Operation);
44801
45044
  };
44802
45045
  var log_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => '.process_log{width:100vw;min-height:100vh;align-items:center}.process_log .n-card-header{height:70px;width:100vw;background-color:#fff;padding-left:calc((100vw - 1200px)/2);padding-right:calc((100vw - 1200px)/2)}.process_log .n-card__content{width:1200px;background-color:#fff}.process_log .panel{margin-top:10px;width:100%;padding:10px 10px 10px 154px}.process_log .item_box{list-style:none;box-sizing:border-box;padding-left:18px;position:relative;padding-bottom:30px}.process_log .borderLeft{width:2px;height:100%;background-color:#cecece;position:absolute;top:17.225px;bottom:0;left:-1px}.process_log .node{color:#333;background:rgba(223,195,143,.12);padding:10px 20px;width:max-content}.process_log .node .title{position:absolute;width:140px;left:-152px;text-align:right;font-weight:700}.process_log .node .fields{width:240px}.process_log .node .fields>div+div{margin-top:10px}.process_log .node .fields>div{display:flex}.process_log .node .fields>div>div:last-child{flex:1;width:1px;word-break:break-all;white-space:break-spaces}.process_log .node .fields .n-button{text-decoration:underline}.process_log .node .fields .icon-fujian{font-size:14px}.process_log .node .rightFileds{width:400px}.process_log .node .fields+.fields{margin-left:20px}.process_log .node.active:before{background-color:#f59a23}.process_log .node.active:after{border-color:#f59a23}.process_log .node.active .icon-time_big_icon{color:#f59a23;margin-top:-1px}.process_log .node:before{z-index:2;content:"";background-color:#3a65df;width:10px;height:10px;position:absolute;border-radius:50%;left:0;top:21.225px;transform:translate(-50%,-50%)}.process_log .node:after{z-index:1;content:"";width:16px;height:16px;border:2px solid #3a65df;position:absolute;border-radius:50%;left:0;top:21.225px;transform:translate(-50%,-50%);background-color:#fff}.process_log .opinion{max-width:720px;margin-top:10px}.process_log .relatedAttachments{margin-top:10px}.process_log .content{display:flex;margin-top:12px}.process_log .card{min-width:500px;margin-right:30px;background:rgba(223,195,143,.12);padding:0 27px}.process_log .card .cardHead{height:40px;display:flex;align-items:center}.process_log .card .cardHead .cardName{flex:2}.process_log .card .cardHead .department_name{flex:2;color:#909090;font-weight:400}.process_log .card .cardHead .time{flex:3;color:#909090;font-weight:400}.process_log .card .cardContent{border-top:1px solid #E3E3E3;display:flex;flex-direction:column;justify-content:flex-start}.process_log .card .cardContent>div:last-child{margin-bottom:20px}.process_log .card .describe,.process_log .card .annex{height:22.5px;width:100%;display:flex;margin-top:20px}.process_log .card .iconfont,.process_log .card .attachments{margin-right:10px}.process_log .node1{color:#ff3b30}.process_log .node1:before{background-color:#ff3b30}.process_log .node2{color:#000}.process_log .node2:before{background-color:#e6e6e6;width:10px;height:10px}.process_log .name{width:50px;padding:10px 40px 20px 0;color:#333}.process_log .time{color:#666;font-size:15px}.process_log .two{display:flex;align-items:baseline}.process_log .advice{font-size:14px;color:#999;padding-bottom:20px}.process_log .item_box:last-child .borderLeft{display:none}\n')();
44803
- const _hoisted_1 = { class: "process_log_pop_main" };
44804
- const _hoisted_2 = {
45046
+ const _hoisted_1$2 = { class: "process_log_pop_main" };
45047
+ const _hoisted_2$1 = {
44805
45048
  class: "panel",
44806
45049
  style: { maxHeight: "680px" }
44807
45050
  };
44808
- const _hoisted_3 = { style: { "display": "flex" } };
44809
- const _hoisted_4 = { class: "title" };
44810
- const _hoisted_5 = {
45051
+ const _hoisted_3$1 = { style: { "display": "flex" } };
45052
+ const _hoisted_4$1 = { class: "title" };
45053
+ const _hoisted_5$1 = {
44811
45054
  key: 0,
44812
45055
  class: "fields"
44813
45056
  };
@@ -44835,7 +45078,7 @@ const _hoisted_14 = {
44835
45078
  const _hoisted_15 = { key: 0 };
44836
45079
  const _hoisted_16 = { class: "relatedAttachments" };
44837
45080
  const _hoisted_17 = { key: 0 };
44838
- const _sfc_main = {
45081
+ const _sfc_main$2 = {
44839
45082
  __name: "log",
44840
45083
  setup(__props, { expose: __expose }) {
44841
45084
  const showModal = ref$1(false);
@@ -44846,28 +45089,10 @@ const _sfc_main = {
44846
45089
  };
44847
45090
  const processLogData = ref$1([]);
44848
45091
  function show(logList) {
44849
- const list = logList;
44850
- const newList = [];
44851
- for (const item of list) {
44852
- if (!item.src_id) {
44853
- item.children = list.filter((v) => v.src_id !== 0 && v.src_id === item.id);
44854
- newList.push(item);
44855
- }
44856
- }
44857
- processLogData.value = mergeUsersWithSameNodeId(newList);
45092
+ processLogData.value = logList;
45093
+ console.log(processLogData.value);
44858
45094
  showModal.value = true;
44859
45095
  }
44860
- function mergeUsersWithSameNodeId(inputList) {
44861
- const nodeMap = /* @__PURE__ */ new Map();
44862
- inputList.forEach((item) => {
44863
- const nodeId = item.type === 12 ? item.node_id : new Date().getTime();
44864
- if (nodeMap.has(nodeId))
44865
- nodeMap.get(nodeId).users.push(...item.users || []);
44866
- else
44867
- nodeMap.set(nodeId, { ...item, users: item.users ? [...item.users] : [] });
44868
- });
44869
- return Array.from(nodeMap.values());
44870
- }
44871
45096
  function close() {
44872
45097
  showModal.value = false;
44873
45098
  }
@@ -44897,8 +45122,8 @@ const _sfc_main = {
44897
45122
  ]),
44898
45123
  footer: withCtx(() => _cache[13] || (_cache[13] = [])),
44899
45124
  default: withCtx(() => [
44900
- createElementVNode("div", _hoisted_1, [
44901
- createElementVNode("div", _hoisted_2, [
45125
+ createElementVNode("div", _hoisted_1$2, [
45126
+ createElementVNode("div", _hoisted_2$1, [
44902
45127
  (openBlock(true), createElementBlock(Fragment, null, renderList(processLogData.value, (item, index2) => {
44903
45128
  var _a2;
44904
45129
  return openBlock(), createElementBlock("div", {
@@ -44908,9 +45133,9 @@ const _sfc_main = {
44908
45133
  createElementVNode("div", {
44909
45134
  class: normalizeClass(["node", { active: item.type === 12 }])
44910
45135
  }, [
44911
- createElementVNode("div", _hoisted_3, [
44912
- createElementVNode("div", _hoisted_4, toDisplayString(item.node_name), 1),
44913
- item.type === 1 ? (openBlock(), createElementBlock("div", _hoisted_5, [
45136
+ createElementVNode("div", _hoisted_3$1, [
45137
+ createElementVNode("div", _hoisted_4$1, toDisplayString(item.node_name), 1),
45138
+ item.type === 1 ? (openBlock(), createElementBlock("div", _hoisted_5$1, [
44914
45139
  createElementVNode("div", null, [
44915
45140
  _cache[1] || (_cache[1] = createElementVNode("div", null, "\u63D0\u4EA4\u4EBA\uFF1A", -1)),
44916
45141
  createElementVNode("div", null, toDisplayString(`${item.user.name} ${item.user.department_name}`), 1)
@@ -45002,14 +45227,281 @@ const _sfc_main = {
45002
45227
  };
45003
45228
  }
45004
45229
  };
45230
+ _sfc_main$2.install = (App) => {
45231
+ App.component(_sfc_main$2.__name, _sfc_main$2);
45232
+ };
45233
+ var nextNode_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".select_approval .approval_depart{display:flex;flex-wrap:wrap;column-gap:60px}.select_approval .approval_depart .n-checkbox{margin-left:auto}.select_approval .user_list{margin:20px 0 30px;padding:20px;min-height:120px;background:#F5F6FA;border-radius:2px;overflow-y:auto;max-height:220px}.select_approval .user_list .n-checkbox__label{width:max-content}.select_approval_footer{display:flex;justify-content:flex-end}.select_approval_footer .n-button{width:80px;height:38px;border-radius:2px;border:none;margin-left:20px}.n-checkbox .n-checkbox-box .n-checkbox-box__border{border:1px solid #818181}\n")();
45234
+ const _hoisted_1$1 = { class: "select_approval" };
45235
+ const _hoisted_2 = { class: "approval_depart" };
45236
+ const _hoisted_3 = ["onClick"];
45237
+ const _hoisted_4 = { class: "user_list" };
45238
+ const _hoisted_5 = { class: "select_approval_footer" };
45239
+ const _sfc_main$1 = defineComponent({
45240
+ __name: "nextNode",
45241
+ props: ["assigneeList", "node", "isSubmitEnd"],
45242
+ emits: ["submitNextNode"],
45243
+ setup(__props, { expose: __expose, emit: __emit }) {
45244
+ const props = __props;
45245
+ const emits = __emit;
45246
+ const showModal = ref$1(false);
45247
+ ref$1();
45248
+ const checkAll = ref$1(false);
45249
+ const assigneeList = ref$1([]);
45250
+ const nextCurrentNodeId = ref$1(null);
45251
+ watch(() => props.assigneeList, (val) => {
45252
+ var _a2;
45253
+ assigneeList.value = val.map((v) => {
45254
+ let isCheck = v.require_assignee;
45255
+ if (defaultSelectAll(isCheck))
45256
+ isCheck = false;
45257
+ return {
45258
+ ...v,
45259
+ check: isCheck ? [] : v.assignee.map((j) => j.id)
45260
+ };
45261
+ });
45262
+ nextCurrentNodeId.value = ((_a2 = val[0]) == null ? void 0 : _a2.node_id) || null;
45263
+ });
45264
+ const checkAllDisabled = computed(() => {
45265
+ const currentInfo = assigneeList.value.find((item) => nextCurrentNodeId.value === item.node_id);
45266
+ if (currentInfo) {
45267
+ (!currentInfo.require_assignee || defaultSelectAll(currentInfo.require_assignee)) && (checkAll.value = true);
45268
+ return !currentInfo.require_assignee;
45269
+ }
45270
+ });
45271
+ function show() {
45272
+ showModal.value = true;
45273
+ }
45274
+ function close() {
45275
+ showModal.value = false;
45276
+ }
45277
+ function setCheckAll(val) {
45278
+ for (const item of assigneeList.value) {
45279
+ if (nextCurrentNodeId.value === item.node_id) {
45280
+ if (!item.require_assignee)
45281
+ return;
45282
+ if (val)
45283
+ item.check = item.assignee.map((j) => j.id);
45284
+ else
45285
+ item.check = [];
45286
+ }
45287
+ }
45288
+ }
45289
+ function changeNode(item) {
45290
+ nextCurrentNodeId.value = item.node_id;
45291
+ checkAll.value = item.check.length === item.assignee.length;
45292
+ }
45293
+ function submit() {
45294
+ const assignee = {};
45295
+ for (const item of assigneeList.value)
45296
+ assignee[item.node_id] = item.check;
45297
+ emits("submitNextNode", {
45298
+ assignee
45299
+ });
45300
+ }
45301
+ function checkCheckAll() {
45302
+ var _a2, _b;
45303
+ const info = assigneeList.value.find((item) => item.node_id === nextCurrentNodeId.value);
45304
+ checkAll.value = info ? ((_a2 = info == null ? void 0 : info.assignee) == null ? void 0 : _a2.length) === ((_b = info == null ? void 0 : info.check) == null ? void 0 : _b.length) : false;
45305
+ }
45306
+ function setValue(item) {
45307
+ if (item.max_assignee && item.check.length > item.max_assignee)
45308
+ item.check = item.check.splice(item.max_assignee * -1);
45309
+ checkCheckAll();
45310
+ }
45311
+ function defaultSelectAll(require_assignee) {
45312
+ return require_assignee === 2;
45313
+ }
45314
+ function handleShowUpdate(val) {
45315
+ if (!val)
45316
+ close();
45317
+ }
45318
+ __expose({
45319
+ show,
45320
+ close,
45321
+ submit
45322
+ });
45323
+ return (_ctx, _cache) => {
45324
+ const _component_n_popover = resolveComponent("n-popover");
45325
+ return openBlock(), createBlock(unref(NModal), {
45326
+ show: showModal.value,
45327
+ title: "\u8BF7\u8BBE\u7F6E\u4E0B\u4E00\u4E2A\u8282\u70B9\u5BA1\u6279\u4EBA",
45328
+ style: { width: "800px" },
45329
+ preset: "card",
45330
+ "onUpdate:show": handleShowUpdate
45331
+ }, {
45332
+ footer: withCtx(() => [
45333
+ createElementVNode("div", _hoisted_5, [
45334
+ createVNode(unref(NButton), { onClick: close }, {
45335
+ default: withCtx(() => _cache[2] || (_cache[2] = [
45336
+ createTextVNode(" \u8FD4\u56DE\u4FEE\u6539 ")
45337
+ ])),
45338
+ _: 1
45339
+ }),
45340
+ createVNode(unref(NButton), {
45341
+ type: "primary",
45342
+ disabled: __props.isSubmitEnd,
45343
+ onClick: submit
45344
+ }, {
45345
+ default: withCtx(() => _cache[3] || (_cache[3] = [
45346
+ createTextVNode(" \u786E\u8BA4 ")
45347
+ ])),
45348
+ _: 1
45349
+ }, 8, ["disabled"])
45350
+ ])
45351
+ ]),
45352
+ default: withCtx(() => [
45353
+ createElementVNode("div", _hoisted_1$1, [
45354
+ createElementVNode("div", _hoisted_2, [
45355
+ (openBlock(true), createElementBlock(Fragment, null, renderList(assigneeList.value, (item) => {
45356
+ return openBlock(), createElementBlock("span", {
45357
+ key: item.node_id,
45358
+ class: normalizeClass(nextCurrentNodeId.value === item.node_id ? "active" : ""),
45359
+ style: normalizeStyle(assigneeList.value.length > 1 ? "cursor: pointer;" : ""),
45360
+ onClick: ($event) => changeNode(item)
45361
+ }, toDisplayString(item.node_name), 15, _hoisted_3);
45362
+ }), 128)),
45363
+ createVNode(unref(NCheckbox), {
45364
+ checked: checkAll.value,
45365
+ "onUpdate:checked": _cache[0] || (_cache[0] = ($event) => checkAll.value = $event),
45366
+ disabled: checkAllDisabled.value,
45367
+ onChange: setCheckAll
45368
+ }, {
45369
+ default: withCtx(() => _cache[1] || (_cache[1] = [
45370
+ createTextVNode(" \u5168\u9009 ")
45371
+ ])),
45372
+ _: 1
45373
+ }, 8, ["checked", "disabled"])
45374
+ ]),
45375
+ createElementVNode("div", _hoisted_4, [
45376
+ (openBlock(true), createElementBlock(Fragment, null, renderList(assigneeList.value, (item) => {
45377
+ return openBlock(), createElementBlock(Fragment, {
45378
+ key: item.node_id
45379
+ }, [
45380
+ item.node_id === nextCurrentNodeId.value ? (openBlock(), createBlock(unref(NCheckboxGroup), {
45381
+ key: 0,
45382
+ value: item.check,
45383
+ "onUpdate:value": [($event) => item.check = $event, ($event) => setValue(item)]
45384
+ }, {
45385
+ default: withCtx(() => [
45386
+ createVNode(unref(NGrid), {
45387
+ "y-gap": "20",
45388
+ "x-gap": "10",
45389
+ cols: 2
45390
+ }, {
45391
+ default: withCtx(() => [
45392
+ (openBlock(true), createElementBlock(Fragment, null, renderList(item.assignee, (user) => {
45393
+ return openBlock(), createBlock(unref(NGi), {
45394
+ key: user.id
45395
+ }, {
45396
+ default: withCtx(() => [
45397
+ user.department_name.length > 16 ? (openBlock(), createBlock(_component_n_popover, {
45398
+ key: 0,
45399
+ trigger: "hover"
45400
+ }, {
45401
+ trigger: withCtx(() => [
45402
+ createVNode(unref(NCheckbox), {
45403
+ value: user.id,
45404
+ label: `${user.name}\uFF08${user.department_name.slice(0, 15)}...\uFF09`,
45405
+ disabled: !item.require_assignee
45406
+ }, null, 8, ["value", "label", "disabled"])
45407
+ ]),
45408
+ default: withCtx(() => [
45409
+ createElementVNode("span", null, toDisplayString(user.department_name), 1)
45410
+ ]),
45411
+ _: 2
45412
+ }, 1024)) : (openBlock(), createBlock(unref(NCheckbox), {
45413
+ key: 1,
45414
+ value: user.id,
45415
+ label: `${user.name}${user.department_name ? `\uFF08${user.department_name}\uFF09` : ""}`,
45416
+ disabled: !item.require_assignee
45417
+ }, null, 8, ["value", "label", "disabled"]))
45418
+ ]),
45419
+ _: 2
45420
+ }, 1024);
45421
+ }), 128))
45422
+ ]),
45423
+ _: 2
45424
+ }, 1024)
45425
+ ]),
45426
+ _: 2
45427
+ }, 1032, ["value", "onUpdate:value"])) : createCommentVNode("", true)
45428
+ ], 64);
45429
+ }), 128))
45430
+ ])
45431
+ ])
45432
+ ]),
45433
+ _: 1
45434
+ }, 8, ["show"]);
45435
+ };
45436
+ }
45437
+ });
45438
+ _sfc_main$1.install = (App) => {
45439
+ App.component(_sfc_main$1.__name, _sfc_main$1);
45440
+ };
45441
+ var flow_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => ".process_flow{width:100vw;min-height:100vh}.process_flow .n-card-header{height:70px;width:100vw;background-color:#fff;padding-left:calc((100vw - 1200px)/2);padding-right:calc((100vw - 1200px)/2)}.process_flow .n-card__content{padding:0;border-top:1px solid #ededed;background-color:#fff}.process_flow .n-card__content .process_flow_main{height:calc(100vh - 71px)}\n")();
45442
+ const _hoisted_1 = { class: "process_flow_main" };
45443
+ const _sfc_main = {
45444
+ __name: "flow",
45445
+ setup(__props, { expose: __expose }) {
45446
+ const showModal = ref$1(false);
45447
+ const lcyqRef = ref$1(null);
45448
+ function show(json) {
45449
+ showModal.value = true;
45450
+ nextTick(() => {
45451
+ lcyqRef.value.setValue(json);
45452
+ });
45453
+ }
45454
+ function close() {
45455
+ showModal.value = false;
45456
+ }
45457
+ __expose({
45458
+ show
45459
+ });
45460
+ return (_ctx, _cache) => {
45461
+ return openBlock(), createBlock(unref(NModal), {
45462
+ show: showModal.value,
45463
+ title: "\u6D41\u7A0B\u56FE",
45464
+ "transform-origin": "center",
45465
+ "mask-closable": false,
45466
+ preset: "card",
45467
+ closable: false,
45468
+ class: "process_flow"
45469
+ }, {
45470
+ "header-extra": withCtx(() => [
45471
+ createVNode(unref(NButton), {
45472
+ type: "primary",
45473
+ onClick: close
45474
+ }, {
45475
+ default: withCtx(() => _cache[0] || (_cache[0] = [
45476
+ createTextVNode(" \u5173\u95ED ")
45477
+ ])),
45478
+ _: 1
45479
+ })
45480
+ ]),
45481
+ footer: withCtx(() => _cache[1] || (_cache[1] = [])),
45482
+ default: withCtx(() => [
45483
+ createElementVNode("div", _hoisted_1, [
45484
+ showModal.value ? (openBlock(), createBlock(_sfc_main$4, {
45485
+ key: 0,
45486
+ ref_key: "lcyqRef",
45487
+ ref: lcyqRef,
45488
+ disabled: ""
45489
+ }, null, 512)) : createCommentVNode("", true)
45490
+ ])
45491
+ ]),
45492
+ _: 1
45493
+ }, 8, ["show"]);
45494
+ };
45495
+ }
45496
+ };
45005
45497
  _sfc_main.install = (App) => {
45006
45498
  App.component(_sfc_main.__name, _sfc_main);
45007
45499
  };
45008
- const components = [_sfc_main$2, Operation, _sfc_main];
45500
+ const components = [_sfc_main$4, Operation, _sfc_main$2, _sfc_main$1, _sfc_main];
45009
45501
  const install = (App) => {
45010
45502
  components.forEach((item) => {
45011
45503
  App.component(item.__name, item);
45012
45504
  });
45013
45505
  };
45014
45506
  var index = { install };
45015
- export { index as default, _sfc_main$2 as lcyq, _sfc_main as log, Operation as operation };
45507
+ export { index as default, _sfc_main as flow, _sfc_main$4 as lcyq, _sfc_main$2 as log, _sfc_main$1 as nextNode, Operation as operation };