zl-lcyq 0.0.2 → 1.0.0

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,4 @@
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, 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";
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
2
  import { defineStore } from "pinia";
3
3
  let onceCbs = [];
4
4
  const paramsMap = /* @__PURE__ */ new WeakMap();
@@ -26,6 +26,54 @@ function happensIn(e, dataSetPropName) {
26
26
  function getPreciseEventTarget(event) {
27
27
  return event.composedPath()[0] || null;
28
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
+ }
29
77
  function depx(value) {
30
78
  if (typeof value === "string") {
31
79
  if (value.endsWith("px")) {
@@ -583,6 +631,13 @@ function mergeEventHandlers(handlers) {
583
631
  });
584
632
  };
585
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
+ }
586
641
  const Wrapper = defineComponent({
587
642
  render() {
588
643
  var _a2, _b;
@@ -1660,6 +1715,79 @@ const isIos = (typeof window === "undefined" ? false : /iPad|iPhone|iPod/.test(n
1660
1715
  function useIsIos() {
1661
1716
  return isIos;
1662
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
+ }
1663
1791
  const internalSelectionMenuInjectionKey = createInjectionKey("n-internal-select-menu");
1664
1792
  const internalSelectionMenuBodyInjectionKey = createInjectionKey("n-internal-select-menu-body");
1665
1793
  const modalBodyInjectionKey = createInjectionKey("n-modal-body");
@@ -16674,7 +16802,7 @@ const checkboxGroupProps = {
16674
16802
  onUpdateValue: [Function, Array],
16675
16803
  onChange: [Function, Array]
16676
16804
  };
16677
- defineComponent({
16805
+ var NCheckboxGroup = defineComponent({
16678
16806
  name: "CheckboxGroup",
16679
16807
  props: checkboxGroupProps,
16680
16808
  setup(props) {
@@ -16990,10 +17118,10 @@ var NCheckbox = defineComponent({
16990
17118
  } = props;
16991
17119
  if (size2 !== void 0)
16992
17120
  return size2;
16993
- if (NCheckboxGroup) {
17121
+ if (NCheckboxGroup2) {
16994
17122
  const {
16995
17123
  value: mergedSize
16996
- } = NCheckboxGroup.mergedSizeRef;
17124
+ } = NCheckboxGroup2.mergedSizeRef;
16997
17125
  if (mergedSize !== void 0) {
16998
17126
  return mergedSize;
16999
17127
  }
@@ -17013,15 +17141,15 @@ var NCheckbox = defineComponent({
17013
17141
  } = props;
17014
17142
  if (disabled !== void 0)
17015
17143
  return disabled;
17016
- if (NCheckboxGroup) {
17017
- if (NCheckboxGroup.disabledRef.value)
17144
+ if (NCheckboxGroup2) {
17145
+ if (NCheckboxGroup2.disabledRef.value)
17018
17146
  return true;
17019
17147
  const {
17020
17148
  maxRef: {
17021
17149
  value: max2
17022
17150
  },
17023
17151
  checkedCountRef
17024
- } = NCheckboxGroup;
17152
+ } = NCheckboxGroup2;
17025
17153
  if (max2 !== void 0 && checkedCountRef.value >= max2 && !renderedCheckedRef.value) {
17026
17154
  return true;
17027
17155
  }
@@ -17029,7 +17157,7 @@ var NCheckbox = defineComponent({
17029
17157
  minRef: {
17030
17158
  value: min2
17031
17159
  }
17032
- } = NCheckboxGroup;
17160
+ } = NCheckboxGroup2;
17033
17161
  if (min2 !== void 0 && checkedCountRef.value <= min2 && renderedCheckedRef.value) {
17034
17162
  return true;
17035
17163
  }
@@ -17044,13 +17172,13 @@ var NCheckbox = defineComponent({
17044
17172
  mergedDisabledRef,
17045
17173
  mergedSizeRef
17046
17174
  } = formItem;
17047
- const NCheckboxGroup = inject(checkboxGroupInjectionKey, null);
17175
+ const NCheckboxGroup2 = inject(checkboxGroupInjectionKey, null);
17048
17176
  const uncontrolledCheckedRef = ref$1(props.defaultChecked);
17049
17177
  const controlledCheckedRef = toRef(props, "checked");
17050
17178
  const mergedCheckedRef = useMergedState(controlledCheckedRef, uncontrolledCheckedRef);
17051
17179
  const renderedCheckedRef = useMemo(() => {
17052
- if (NCheckboxGroup) {
17053
- const groupValueSet = NCheckboxGroup.valueSetRef.value;
17180
+ if (NCheckboxGroup2) {
17181
+ const groupValueSet = NCheckboxGroup2.valueSetRef.value;
17054
17182
  if (groupValueSet && props.value !== void 0) {
17055
17183
  return groupValueSet.has(props.value);
17056
17184
  }
@@ -17061,8 +17189,8 @@ var NCheckbox = defineComponent({
17061
17189
  });
17062
17190
  const themeRef = useTheme("Checkbox", "-checkbox", style$d, checkboxLight$1, props, mergedClsPrefixRef);
17063
17191
  function toggle(e) {
17064
- if (NCheckboxGroup && props.value !== void 0) {
17065
- NCheckboxGroup.toggleCheckbox(!renderedCheckedRef.value, props.value);
17192
+ if (NCheckboxGroup2 && props.value !== void 0) {
17193
+ NCheckboxGroup2.toggleCheckbox(!renderedCheckedRef.value, props.value);
17066
17194
  } else {
17067
17195
  const {
17068
17196
  onChange,
@@ -21467,6 +21595,347 @@ var NSpace = defineComponent({
21467
21595
  }, child)));
21468
21596
  }
21469
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
+ });
21470
21939
  var commonVars$1 = {
21471
21940
  closeMargin: "16px 12px",
21472
21941
  closeSize: "20px",
@@ -33560,14 +34029,7 @@ var nodesConfig = {
33560
34029
  name: "\u5BA1\u6279",
33561
34030
  iconfont: "iconfont icon-shenpiguanli",
33562
34031
  bgColor: "rgb(255, 148, 62)",
33563
- desc: "\u5BA1\u6279\u8282\u70B9\uFF0C\u6DFB\u52A0\u5BA1\u6279\u4EBA\u4FE1\u606F"
33564
- },
33565
- "2": {
33566
- type: 2,
33567
- name: "\u6284\u9001",
33568
- iconfont: "iconfont icon-chaosong",
33569
- bgColor: "rgb(50, 150, 250)",
33570
- desc: "\u6284\u9001\u8282\u70B9\uFF0C\u6DFB\u52A0\u5BA1\u6279\u4EBA\u4FE1\u606F"
34032
+ desc: "\u5BA1\u6279\u8282\u70B9\uFF0C\u5BA1\u6279\u4EBA\u5BA1\u6279"
33571
34033
  }
33572
34034
  };
33573
34035
  var operations = [
@@ -33624,10 +34086,29 @@ var drawerConfig = {
33624
34086
  }],
33625
34087
  defaultValue: 0
33626
34088
  },
34089
+ {
34090
+ name: "\u4E0A\u8282\u70B9\u663E\u793A\u5F53\u524D\u8282\u70B9\u529E\u7406\u4EBA",
34091
+ key: "show_assignee.type",
34092
+ type: "Select",
34093
+ options: [{
34094
+ label: "\u4E0D\u663E\u793A",
34095
+ value: 0
34096
+ }, {
34097
+ label: "\u663E\u793A",
34098
+ value: 1
34099
+ }, {
34100
+ label: "\u5141\u8BB8\u9009\u62E9",
34101
+ value: 2
34102
+ }, {
34103
+ label: "\u5168\u9009\u5E76\u5141\u8BB8\u9009\u62E9",
34104
+ value: 3
34105
+ }],
34106
+ defaultValue: 1
34107
+ },
33627
34108
  { name: "\u4F1A\u7B7E\u5B8C\u6210\u7387", key: "examine_complete_condition", type: "Expression", defaultValue: "", config: { hideInput: true }, vif(data2) {
33628
34109
  return [1, 2].includes(data2.examine_type);
33629
34110
  } },
33630
- { name: "\u5BA1\u6279\u4EBA\u8BBE\u7F6E", key: "assignee", type: "Personnel", defaultValue: {}, required: true },
34111
+ { name: "\u5BA1\u6279\u4EBA\u8BBE\u7F6E", key: "assignee", type: "Personnel", defaultValue: [], required: true },
33631
34112
  {
33632
34113
  name: "\u8282\u70B9\u573A\u666F",
33633
34114
  key: "task_type",
@@ -33643,8 +34124,7 @@ var drawerConfig = {
33643
34124
  }],
33644
34125
  defaultValue: 0
33645
34126
  },
33646
- { name: "\u64CD\u4F5C", key: "operations", type: "Operation", defaultValue: operations },
33647
- { name: "\u5904\u7406\u610F\u89C1", key: "enable_comment", type: "Switch", defaultValue: 0 }
34127
+ { name: "\u64CD\u4F5C", key: "operations", type: "Operation", defaultValue: operations }
33648
34128
  ],
33649
34129
  "2": [
33650
34130
  { name: "\u8282\u70B9\u540D\u79F0", key: "node_name", type: "Input", required: true },
@@ -33712,7 +34192,6 @@ const useStore = defineStore("store", {
33712
34192
  this.drawerConfig = payload;
33713
34193
  },
33714
34194
  setLcyqConfig(payload) {
33715
- console.log(payload.nodesConfig);
33716
34195
  this.nodesConfig = { ...nodesConfig, ...payload.nodesConfig };
33717
34196
  this.pluginsConfig = { ...drawerConfig, ...payload.pluginsConfig };
33718
34197
  this.expressionConfig = payload.expressionConfig;
@@ -33721,11 +34200,11 @@ const useStore = defineStore("store", {
33721
34200
  }
33722
34201
  }
33723
34202
  });
33724
- const _hoisted_1$f = { class: "lcyq_drawer_item" };
33725
- const _hoisted_2$e = { class: "title" };
33726
- const _hoisted_3$e = { key: 0 };
33727
- const _hoisted_4$c = { class: "plugin" };
33728
- const _sfc_main$g = {
34203
+ const _hoisted_1$h = { class: "lcyq_drawer_item" };
34204
+ const _hoisted_2$f = { class: "title" };
34205
+ const _hoisted_3$f = { key: 0 };
34206
+ const _hoisted_4$d = { class: "plugin" };
34207
+ const _sfc_main$i = {
33729
34208
  __name: "input",
33730
34209
  props: {
33731
34210
  info: {
@@ -33739,7 +34218,8 @@ const _sfc_main$g = {
33739
34218
  if (store.drawerConfig.value.type == 4) {
33740
34219
  return store.drawerConfig.value.conditionNodes.find((item) => item.priorityLevel == store.drawerConfig.priorityLevel);
33741
34220
  } else {
33742
- return store.drawerConfig.value;
34221
+ console.log(store.drawerConfig.priorityLevel);
34222
+ return store.drawerConfig.priorityLevel ? store.drawerConfig.value[store.drawerConfig.priorityLevel] : store.drawerConfig.value;
33743
34223
  }
33744
34224
  });
33745
34225
  let props = __props;
@@ -33760,14 +34240,14 @@ const _sfc_main$g = {
33760
34240
  }
33761
34241
  });
33762
34242
  return (_ctx, _cache) => {
33763
- return openBlock(), createElementBlock("div", _hoisted_1$f, [
33764
- createElementVNode("div", _hoisted_2$e, [
34243
+ return openBlock(), createElementBlock("div", _hoisted_1$h, [
34244
+ createElementVNode("div", _hoisted_2$f, [
33765
34245
  createElementVNode("span", null, [
33766
34246
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
33767
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$e, "*")) : createCommentVNode("", true)
34247
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$f, "*")) : createCommentVNode("", true)
33768
34248
  ])
33769
34249
  ]),
33770
- createElementVNode("div", _hoisted_4$c, [
34250
+ createElementVNode("div", _hoisted_4$d, [
33771
34251
  createVNode(unref(NInput), {
33772
34252
  value: curValue.value,
33773
34253
  "onUpdate:value": _cache[0] || (_cache[0] = ($event) => curValue.value = $event),
@@ -33778,11 +34258,11 @@ const _sfc_main$g = {
33778
34258
  };
33779
34259
  }
33780
34260
  };
33781
- const _hoisted_1$e = { class: "lcyq_drawer_item" };
33782
- const _hoisted_2$d = { class: "title line" };
33783
- const _hoisted_3$d = { key: 0 };
33784
- const _hoisted_4$b = { class: "plugin" };
33785
- const _sfc_main$f = {
34261
+ const _hoisted_1$g = { class: "lcyq_drawer_item" };
34262
+ const _hoisted_2$e = { class: "title line" };
34263
+ const _hoisted_3$e = { key: 0 };
34264
+ const _hoisted_4$c = { class: "plugin" };
34265
+ const _sfc_main$h = {
33786
34266
  __name: "select",
33787
34267
  props: {
33788
34268
  info: {
@@ -33796,10 +34276,18 @@ const _sfc_main$f = {
33796
34276
  if (store.drawerConfig.value.type == 4) {
33797
34277
  return store.drawerConfig.value.conditionNodes.find((item) => item.priorityLevel == store.drawerConfig.priorityLevel);
33798
34278
  } else {
33799
- return store.drawerConfig.value;
34279
+ return store.drawerConfig.priorityLevel ? store.drawerConfig.value[store.drawerConfig.priorityLevel] : store.drawerConfig.value;
33800
34280
  }
33801
34281
  });
33802
34282
  let props = __props;
34283
+ const nowValue = computed({
34284
+ get() {
34285
+ return _.get(drawerConfig2.value.node_config, props.info.key);
34286
+ },
34287
+ set(val) {
34288
+ _.set(drawerConfig2.value.node_config, props.info.key, val);
34289
+ }
34290
+ });
33803
34291
  function valueChange(val) {
33804
34292
  switch (props.info.key) {
33805
34293
  case "task_type":
@@ -33835,18 +34323,18 @@ const _sfc_main$f = {
33835
34323
  drawerConfig2.value.node_config.operations = _.cloneDeep(newOperations);
33836
34324
  }
33837
34325
  return (_ctx, _cache) => {
33838
- return openBlock(), createElementBlock("div", _hoisted_1$e, [
33839
- createElementVNode("div", _hoisted_2$d, [
34326
+ return openBlock(), createElementBlock("div", _hoisted_1$g, [
34327
+ createElementVNode("div", _hoisted_2$e, [
33840
34328
  createElementVNode("span", null, [
33841
34329
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
33842
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$d, "*")) : createCommentVNode("", true)
34330
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$e, "*")) : createCommentVNode("", true)
33843
34331
  ])
33844
34332
  ]),
33845
- createElementVNode("div", _hoisted_4$b, [
34333
+ createElementVNode("div", _hoisted_4$c, [
33846
34334
  createVNode(unref(NSelect), {
33847
- value: unref(drawerConfig2).node_config[__props.info.key],
34335
+ value: nowValue.value,
33848
34336
  "onUpdate:value": [
33849
- _cache[0] || (_cache[0] = ($event) => unref(drawerConfig2).node_config[__props.info.key] = $event),
34337
+ _cache[0] || (_cache[0] = ($event) => nowValue.value = $event),
33850
34338
  valueChange
33851
34339
  ],
33852
34340
  options: __props.info.options
@@ -34640,8 +35128,8 @@ const vLoading = {
34640
35128
  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')();
34641
35129
  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")();
34642
35130
  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")();
34643
- const _hoisted_1$d = { class: "z_modal_cont" };
34644
- const _sfc_main$e = defineComponent({
35131
+ const _hoisted_1$f = { class: "z_modal_cont" };
35132
+ const _sfc_main$g = defineComponent({
34645
35133
  __name: "zModal",
34646
35134
  props: {
34647
35135
  size: { default: "medium" },
@@ -34730,7 +35218,7 @@ const _sfc_main$e = defineComponent({
34730
35218
  style: normalizeStyle({ maxHeight: props.height })
34731
35219
  }, {
34732
35220
  default: withCtx(() => [
34733
- createElementVNode("div", _hoisted_1$d, [
35221
+ createElementVNode("div", _hoisted_1$f, [
34734
35222
  renderSlot(_ctx.$slots, "default")
34735
35223
  ])
34736
35224
  ]),
@@ -39170,8 +39658,13 @@ var qs = lib;
39170
39658
  let config$1 = {};
39171
39659
  const _axios = axios$1.create(config$1);
39172
39660
  _axios.interceptors.request.use(function(config2) {
39661
+ let c2 = "zhangxuezhe";
39662
+ c2 = "litiandong";
39663
+ if (config2.method === "get") {
39664
+ config2.params = { ...config2.params, creator: c2 };
39665
+ }
39173
39666
  if (config2.data && !(config2.data instanceof FormData)) {
39174
- config2.data = qs.stringify(config2.data);
39667
+ config2.data = qs.stringify({ ...config2.data, creator: c2 });
39175
39668
  }
39176
39669
  return config2;
39177
39670
  }, function(error2) {
@@ -39182,11 +39675,11 @@ _axios.interceptors.response.use(function(response) {
39182
39675
  }, function(error2) {
39183
39676
  return Promise.reject(error2);
39184
39677
  });
39185
- const _hoisted_1$c = { class: "content" };
39186
- const _hoisted_2$c = { class: "nav" };
39187
- const _hoisted_3$c = ["innerHTML"];
39188
- const _hoisted_4$a = { class: "wapper" };
39189
- const _hoisted_5$6 = { class: "left" };
39678
+ const _hoisted_1$e = { class: "content" };
39679
+ const _hoisted_2$d = { class: "nav" };
39680
+ const _hoisted_3$d = ["innerHTML"];
39681
+ const _hoisted_4$b = { class: "wapper" };
39682
+ const _hoisted_5$7 = { class: "left" };
39190
39683
  const _hoisted_6$6 = { class: "tree" };
39191
39684
  const _hoisted_7$3 = { class: "user_select" };
39192
39685
  const _hoisted_8$3 = {
@@ -39217,11 +39710,11 @@ const _hoisted_17$2 = { class: "right_top" };
39217
39710
  const _hoisted_18$1 = { key: 0 };
39218
39711
  const _hoisted_19$1 = { key: 1 };
39219
39712
  const _hoisted_20$1 = { key: 2 };
39220
- const _hoisted_21 = { key: 3 };
39221
- const _hoisted_22 = { key: 4 };
39222
- const _hoisted_23 = { key: 0 };
39223
- const _hoisted_24 = ["onClick"];
39224
- const _hoisted_25 = {
39713
+ const _hoisted_21$1 = { key: 3 };
39714
+ const _hoisted_22$1 = { key: 4 };
39715
+ const _hoisted_23$1 = { key: 0 };
39716
+ const _hoisted_24$1 = ["onClick"];
39717
+ const _hoisted_25$1 = {
39225
39718
  key: 6,
39226
39719
  class: "user_wapper"
39227
39720
  };
@@ -39229,7 +39722,7 @@ const _hoisted_26 = { key: 0 };
39229
39722
  const _hoisted_27 = { key: 1 };
39230
39723
  const _hoisted_28 = ["onClick"];
39231
39724
  const _hoisted_29 = { key: 1 };
39232
- var _sfc_main$d = /* @__PURE__ */ defineComponent({
39725
+ var _sfc_main$f = /* @__PURE__ */ defineComponent({
39233
39726
  __name: "personnelPop",
39234
39727
  emits: ["ok"],
39235
39728
  setup(__props, { expose: __expose, emit: __emit }) {
@@ -39285,6 +39778,8 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39285
39778
  isOne.value = info.isOne ? info.isOne : false;
39286
39779
  isdepartOne.value = info.isdepartOne ? info.isdepartOne : false;
39287
39780
  topNav.value = _.cloneDeep(personnelPopTab);
39781
+ console.log(info.data);
39782
+ info.data = handleInfoData(info.data);
39288
39783
  if (info.nav && info.nav.length > 0) {
39289
39784
  let arr2 = [];
39290
39785
  for (let i in info.nav) {
@@ -39349,17 +39844,53 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39349
39844
  }
39350
39845
  }
39351
39846
  }
39847
+ function handleInfoData(data2) {
39848
+ let obj = {};
39849
+ for (let i of data2) {
39850
+ if (i.type === "depart") {
39851
+ if (!obj.depart) {
39852
+ obj.depart = {};
39853
+ }
39854
+ if (!obj.depart[i.organ_id]) {
39855
+ obj.depart[i.organ_id] = [];
39856
+ }
39857
+ obj.depart[i.organ_id].push(i);
39858
+ } else {
39859
+ if (!obj[i.type]) {
39860
+ obj[i.type] = [];
39861
+ }
39862
+ obj[i.type].push(i);
39863
+ }
39864
+ }
39865
+ return obj;
39866
+ }
39352
39867
  function popsure() {
39353
- emits("ok", chooseAll.value);
39868
+ emits("ok", handleSubValue(chooseAll.value));
39354
39869
  close();
39355
39870
  }
39871
+ function handleSubValue(val) {
39872
+ let arr2 = [];
39873
+ for (let key2 in val) {
39874
+ if (val[key2].length !== void 0) {
39875
+ for (let i of val[key2]) {
39876
+ arr2.push({ ...i, type: key2, value: key2 == "user" ? i.username : i.id });
39877
+ }
39878
+ } else {
39879
+ for (let dKey in val[key2]) {
39880
+ for (let i of val[key2][dKey]) {
39881
+ arr2.push({ ...i, type: key2, value: i.id });
39882
+ }
39883
+ }
39884
+ }
39885
+ }
39886
+ return arr2;
39887
+ }
39356
39888
  function close() {
39357
39889
  modalRef.value.close();
39358
39890
  }
39359
39891
  const leftLoading = ref$1(true);
39360
39892
  const leftLoading2 = ref$1(true);
39361
39893
  function getorganizeTree(data2) {
39362
- console.log(leftLoading.value);
39363
39894
  _axios.get(personnelConfig.api.organApi).then((res) => {
39364
39895
  leftLoading.value = false;
39365
39896
  let newJson = {};
@@ -39375,7 +39906,6 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39375
39906
  } else {
39376
39907
  chooseAll.value.depart = newJson;
39377
39908
  }
39378
- console.log("\u90E8\u95E8", chooseAll.value.depart);
39379
39909
  if (isOne.value) {
39380
39910
  organizeTree.value = res.d.list.filter((item) => item.id == organ_id.value);
39381
39911
  } else {
@@ -39502,7 +40032,6 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39502
40032
  }
39503
40033
  let arr = [];
39504
40034
  function selectfn(keys2, option2, type2) {
39505
- console.log(88888, defaultCheckedKeys.value, keys2, option2, chooseAll.value[type2][organId.value]);
39506
40035
  if (type2 == "depart") {
39507
40036
  if (isdepartOne.value) {
39508
40037
  defaultCheckedKeys.value = keys2.length > 0 ? [keys2[keys2.length - 1]] : [];
@@ -39583,7 +40112,6 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39583
40112
  } else {
39584
40113
  chooseAll.value[type2].push(item);
39585
40114
  }
39586
- console.log(limitMum.value);
39587
40115
  if (limitMum.value === 1) {
39588
40116
  chooseAll.value[type2] = [];
39589
40117
  chooseAll.value[type2].push(item);
@@ -39694,7 +40222,7 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39694
40222
  return (_ctx, _cache) => {
39695
40223
  const _component_n_radio = resolveComponent("n-radio");
39696
40224
  const _directive_loading = vLoading;
39697
- return openBlock(), createBlock(_sfc_main$e, {
40225
+ return openBlock(), createBlock(_sfc_main$g, {
39698
40226
  class: "all_modal",
39699
40227
  ref_key: "modalRef",
39700
40228
  ref: modalRef,
@@ -39703,8 +40231,8 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39703
40231
  onOk: popsure
39704
40232
  }, {
39705
40233
  default: withCtx(() => [
39706
- createElementVNode("div", _hoisted_1$c, [
39707
- createElementVNode("div", _hoisted_2$c, [
40234
+ createElementVNode("div", _hoisted_1$e, [
40235
+ createElementVNode("div", _hoisted_2$d, [
39708
40236
  createVNode(unref(NTabs), {
39709
40237
  value: key.value,
39710
40238
  "onUpdate:value": [
@@ -39731,11 +40259,11 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39731
40259
  key: 0,
39732
40260
  class: "desc",
39733
40261
  innerHTML: item.desc
39734
- }, null, 8, _hoisted_3$c)) : createCommentVNode("", true)
40262
+ }, null, 8, _hoisted_3$d)) : createCommentVNode("", true)
39735
40263
  ], 64);
39736
40264
  }), 256)),
39737
- createElementVNode("div", _hoisted_4$a, [
39738
- withDirectives((openBlock(), createElementBlock("div", _hoisted_5$6, [
40265
+ createElementVNode("div", _hoisted_4$b, [
40266
+ withDirectives((openBlock(), createElementBlock("div", _hoisted_5$7, [
39739
40267
  createElementVNode("div", _hoisted_6$6, [
39740
40268
  key.value == "organize" ? (openBlock(), createBlock(unref(NTree), {
39741
40269
  key: 0,
@@ -39937,11 +40465,11 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39937
40465
  key2 == "organize" && chooseAll.value.organize.length > 0 ? (openBlock(), createElementBlock("p", _hoisted_18$1, "\u7EC4\u7EC7\uFF08\u5DF2\u9009\u62E9" + toDisplayString(chooseAll.value.organize.length) + "\uFF09", 1)) : createCommentVNode("", true),
39938
40466
  key2 == "depart" && checkObjectProperties(chooseAll.value.depart) ? (openBlock(), createElementBlock("p", _hoisted_19$1, "\u90E8\u95E8\uFF08\u5DF2\u9009\u62E9" + toDisplayString(getdepartLeng(chooseAll.value.depart)) + "\uFF09", 1)) : createCommentVNode("", true),
39939
40467
  key2 == "user" && chooseAll.value.user.length > 0 ? (openBlock(), createElementBlock("p", _hoisted_20$1, "\u7528\u6237\uFF08\u5DF2\u9009\u62E9" + toDisplayString(chooseAll.value.user.length) + "\uFF09", 1)) : createCommentVNode("", true),
39940
- key2 == "tag" && chooseAll.value.tag.length > 0 ? (openBlock(), createElementBlock("p", _hoisted_21, "\u6807\u7B7E\uFF08\u5DF2\u9009\u62E9" + toDisplayString(chooseAll.value.tag.length) + "\uFF09", 1)) : createCommentVNode("", true),
39941
- key2 == "filter" && chooseAll.value.filter.length > 0 ? (openBlock(), createElementBlock("p", _hoisted_22, "\u7B5B\u9009\u5668\uFF08\u5DF2\u9009\u62E9" + toDisplayString(chooseAll.value.filter.length) + "\uFF09", 1)) : createCommentVNode("", true),
40468
+ key2 == "tag" && chooseAll.value.tag.length > 0 ? (openBlock(), createElementBlock("p", _hoisted_21$1, "\u6807\u7B7E\uFF08\u5DF2\u9009\u62E9" + toDisplayString(chooseAll.value.tag.length) + "\uFF09", 1)) : createCommentVNode("", true),
40469
+ key2 == "filter" && chooseAll.value.filter.length > 0 ? (openBlock(), createElementBlock("p", _hoisted_22$1, "\u7B5B\u9009\u5668\uFF08\u5DF2\u9009\u62E9" + toDisplayString(chooseAll.value.filter.length) + "\uFF09", 1)) : createCommentVNode("", true),
39942
40470
  key2 == "depart" ? (openBlock(true), createElementBlock(Fragment, { key: 5 }, renderList(item, (items, keys2, index2) => {
39943
40471
  return openBlock(), createElementBlock(Fragment, null, [
39944
- items.length > 0 ? (openBlock(), createElementBlock("ul", _hoisted_23, [
40472
+ items.length > 0 ? (openBlock(), createElementBlock("ul", _hoisted_23$1, [
39945
40473
  createElementVNode("p", null, toDisplayString(getName(keys2)), 1),
39946
40474
  (openBlock(true), createElementBlock(Fragment, null, renderList(items, (itemchild, indexchild) => {
39947
40475
  return openBlock(), createElementBlock("li", null, [
@@ -39962,12 +40490,12 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39962
40490
  createElementVNode("i", {
39963
40491
  class: "icon iconfont icon-quxiao",
39964
40492
  onClick: ($event) => deldepart(itemchild.id, indexchild, keys2)
39965
- }, null, 8, _hoisted_24)
40493
+ }, null, 8, _hoisted_24$1)
39966
40494
  ]);
39967
40495
  }), 256))
39968
40496
  ])) : createCommentVNode("", true)
39969
40497
  ], 64);
39970
- }), 256)) : (openBlock(), createElementBlock("ul", _hoisted_25, [
40498
+ }), 256)) : (openBlock(), createElementBlock("ul", _hoisted_25$1, [
39971
40499
  (openBlock(true), createElementBlock(Fragment, null, renderList(item, (items, index2) => {
39972
40500
  return openBlock(), createElementBlock("li", null, [
39973
40501
  key2 == "user" ? (openBlock(), createElementBlock("span", _hoisted_26, toDisplayString(items.name) + "(" + toDisplayString(items.username) + ")", 1)) : (openBlock(), createElementBlock("span", _hoisted_27, toDisplayString(items.name), 1)),
@@ -39990,7 +40518,7 @@ var _sfc_main$d = /* @__PURE__ */ defineComponent({
39990
40518
  }
39991
40519
  });
39992
40520
  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")();
39993
- 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")();
40521
+ var personnel_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".assignee[data-v-3154b183]{height:140px;border:1px solid #e3e3e9;border-radius:3px}.assignee .tip_text[data-v-3154b183]{color:#999}\n")();
39994
40522
  var _export_sfc = (sfc, props) => {
39995
40523
  const target = sfc.__vccOpts || sfc;
39996
40524
  for (const [key, val] of props) {
@@ -39998,13 +40526,13 @@ var _export_sfc = (sfc, props) => {
39998
40526
  }
39999
40527
  return target;
40000
40528
  };
40001
- const _hoisted_1$b = { class: "lcyq_drawer_item" };
40002
- const _hoisted_2$b = { class: "title" };
40003
- const _hoisted_3$b = { key: 0 };
40004
- const _hoisted_4$9 = { class: "plugin assignee" };
40005
- const _hoisted_5$5 = { style: { "padding": "12px 16px" } };
40529
+ const _hoisted_1$d = { class: "lcyq_drawer_item" };
40530
+ const _hoisted_2$c = { class: "title" };
40531
+ const _hoisted_3$c = { key: 0 };
40532
+ const _hoisted_4$a = { class: "plugin assignee" };
40533
+ const _hoisted_5$6 = { style: { "padding": "12px 16px" } };
40006
40534
  const _hoisted_6$5 = { class: "tip_text" };
40007
- const _sfc_main$c = {
40535
+ const _sfc_main$e = {
40008
40536
  __name: "personnel",
40009
40537
  props: {
40010
40538
  info: {
@@ -40019,26 +40547,13 @@ const _sfc_main$c = {
40019
40547
  if (store.drawerConfig.value.type == 4) {
40020
40548
  return store.drawerConfig.value.conditionNodes.find((item) => item.priorityLevel == store.drawerConfig.priorityLevel);
40021
40549
  } else {
40022
- return store.drawerConfig.value;
40550
+ return store.drawerConfig.priorityLevel ? store.drawerConfig.value[store.drawerConfig.priorityLevel] : store.drawerConfig.value;
40023
40551
  }
40024
40552
  });
40025
40553
  const personnelPopRef = ref$1();
40026
40554
  const personnelPopTabObj = _.groupBy(personnelPopTab, "key");
40027
40555
  const valueArr = computed(() => {
40028
- let val = drawerConfig2.value.node_config[props.info.key];
40029
- let arr = [];
40030
- for (let aKey in val) {
40031
- for (let bKey in val[aKey]) {
40032
- if (aKey === "depart") {
40033
- for (let cKey in val[aKey][bKey]) {
40034
- arr.push({ ...val[aKey][bKey][cKey], type: aKey });
40035
- }
40036
- } else {
40037
- arr.push({ ...val[aKey][bKey], type: aKey });
40038
- }
40039
- }
40040
- }
40041
- return arr;
40556
+ return drawerConfig2.value.node_config[props.info.key];
40042
40557
  });
40043
40558
  let props = __props;
40044
40559
  function open() {
@@ -40052,11 +40567,11 @@ const _sfc_main$c = {
40052
40567
  }
40053
40568
  return (_ctx, _cache) => {
40054
40569
  return openBlock(), createElementBlock(Fragment, null, [
40055
- createElementVNode("div", _hoisted_1$b, [
40056
- createElementVNode("div", _hoisted_2$b, [
40570
+ createElementVNode("div", _hoisted_1$d, [
40571
+ createElementVNode("div", _hoisted_2$c, [
40057
40572
  createElementVNode("span", null, [
40058
40573
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
40059
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$b, "*")) : createCommentVNode("", true)
40574
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$c, "*")) : createCommentVNode("", true)
40060
40575
  ]),
40061
40576
  createVNode(unref(NButton), {
40062
40577
  text: "",
@@ -40069,10 +40584,10 @@ const _sfc_main$c = {
40069
40584
  _: 1
40070
40585
  })
40071
40586
  ]),
40072
- createElementVNode("div", _hoisted_4$9, [
40587
+ createElementVNode("div", _hoisted_4$a, [
40073
40588
  createVNode(unref(NScrollbar), null, {
40074
40589
  default: withCtx(() => [
40075
- createElementVNode("div", _hoisted_5$5, [
40590
+ createElementVNode("div", _hoisted_5$6, [
40076
40591
  createVNode(unref(NSpace), { vertical: "" }, {
40077
40592
  default: withCtx(() => [
40078
40593
  (openBlock(true), createElementBlock(Fragment, null, renderList(valueArr.value, (item) => {
@@ -40105,7 +40620,7 @@ const _sfc_main$c = {
40105
40620
  })
40106
40621
  ])
40107
40622
  ]),
40108
- createVNode(_sfc_main$d, {
40623
+ createVNode(_sfc_main$f, {
40109
40624
  ref_key: "personnelPopRef",
40110
40625
  ref: personnelPopRef,
40111
40626
  onOk: updateP
@@ -40114,7 +40629,7 @@ const _sfc_main$c = {
40114
40629
  };
40115
40630
  }
40116
40631
  };
40117
- var personnel = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-435c2652"]]);
40632
+ var personnel = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-3154b183"]]);
40118
40633
  /**!
40119
40634
  * Sortable 1.15.6
40120
40635
  * @author RubaXa <trash@rubaxa.org>
@@ -42297,13 +42812,13 @@ let nanoid = (size2 = 21) => crypto.getRandomValues(new Uint8Array(size2)).reduc
42297
42812
  return id;
42298
42813
  }, "");
42299
42814
  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")();
42300
- const _hoisted_1$a = { class: "thead" };
42301
- const _hoisted_2$a = { key: 0 };
42302
- const _hoisted_3$a = { key: 0 };
42303
- const _hoisted_4$8 = ["colspan"];
42304
- const _hoisted_5$4 = ["data-id"];
42815
+ const _hoisted_1$c = { class: "thead" };
42816
+ const _hoisted_2$b = { key: 0 };
42817
+ const _hoisted_3$b = { key: 0 };
42818
+ const _hoisted_4$9 = ["colspan"];
42819
+ const _hoisted_5$5 = ["data-id"];
42305
42820
  const _hoisted_6$4 = { key: 0 };
42306
- const _sfc_main$b = defineComponent({
42821
+ const _sfc_main$d = defineComponent({
42307
42822
  __name: "tableDrag",
42308
42823
  props: {
42309
42824
  modelValue: { default: () => [] },
@@ -42392,9 +42907,9 @@ const _sfc_main$b = defineComponent({
42392
42907
  class: ["table_drag", isDrag.value ? "isDrag" : ""]
42393
42908
  }), {
42394
42909
  default: withCtx(() => [
42395
- createElementVNode("thead", _hoisted_1$a, [
42910
+ createElementVNode("thead", _hoisted_1$c, [
42396
42911
  createElementVNode("tr", null, [
42397
- isDrag.value ? (openBlock(), createElementBlock("th", _hoisted_2$a, " \u6392\u5E8F ")) : createCommentVNode("", true),
42912
+ isDrag.value ? (openBlock(), createElementBlock("th", _hoisted_2$b, " \u6392\u5E8F ")) : createCommentVNode("", true),
42398
42913
  (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.columnKey, (item) => {
42399
42914
  return openBlock(), createElementBlock("th", {
42400
42915
  key: item.key,
@@ -42414,7 +42929,7 @@ const _sfc_main$b = defineComponent({
42414
42929
  ref: fileTable,
42415
42930
  class: "tbody"
42416
42931
  }, [
42417
- !props.modelValue.length ? (openBlock(), createElementBlock("tr", _hoisted_3$a, [
42932
+ !props.modelValue.length ? (openBlock(), createElementBlock("tr", _hoisted_3$b, [
42418
42933
  createElementVNode("td", {
42419
42934
  colspan: _ctx.columnKey.length + 1
42420
42935
  }, [
@@ -42432,7 +42947,7 @@ const _sfc_main$b = defineComponent({
42432
42947
  _: 1
42433
42948
  })) : createCommentVNode("", true)
42434
42949
  ], 64))
42435
- ], 8, _hoisted_4$8)
42950
+ ], 8, _hoisted_4$9)
42436
42951
  ])) : (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(showList.value, (item, line) => {
42437
42952
  return openBlock(), createElementBlock("tr", {
42438
42953
  key: valKeyMaps.value.get(item),
@@ -42454,7 +42969,7 @@ const _sfc_main$b = defineComponent({
42454
42969
  ], 64)) : createCommentVNode("", true)
42455
42970
  ], 4);
42456
42971
  }), 128))
42457
- ], 8, _hoisted_5$4);
42972
+ ], 8, _hoisted_5$5);
42458
42973
  }), 128))
42459
42974
  ], 512)
42460
42975
  ]),
@@ -42482,14 +42997,14 @@ const _sfc_main$b = defineComponent({
42482
42997
  };
42483
42998
  }
42484
42999
  });
42485
- const _hoisted_1$9 = { class: "top_set" };
42486
- const _hoisted_2$9 = { class: "flex1" };
42487
- const _hoisted_3$9 = {
43000
+ const _hoisted_1$b = { class: "top_set" };
43001
+ const _hoisted_2$a = { class: "flex1" };
43002
+ const _hoisted_3$a = {
42488
43003
  key: 0,
42489
43004
  class: "flex1"
42490
43005
  };
42491
- const _hoisted_4$7 = { class: "title" };
42492
- var _sfc_main$a = /* @__PURE__ */ defineComponent({
43006
+ const _hoisted_4$8 = { class: "title" };
43007
+ var _sfc_main$c = /* @__PURE__ */ defineComponent({
42493
43008
  __name: "operationPop",
42494
43009
  props: {
42495
43010
  operations: {}
@@ -42566,6 +43081,12 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42566
43081
  node_name: n.node_name,
42567
43082
  node_key: n.node_key
42568
43083
  };
43084
+ if (n.childNodeBh) {
43085
+ jumpnodeList.value[n.childNodeBh.node_key] = {
43086
+ node_name: n.childNodeBh.node_name,
43087
+ node_key: n.childNodeBh.node_key
43088
+ };
43089
+ }
42569
43090
  }
42570
43091
  if (n.childNode) {
42571
43092
  traverseTree(n.childNode);
@@ -42609,7 +43130,7 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42609
43130
  });
42610
43131
  return (_ctx, _cache) => {
42611
43132
  const _component_ZExplainPop = resolveComponent("ZExplainPop");
42612
- return openBlock(), createBlock(_sfc_main$e, {
43133
+ return openBlock(), createBlock(_sfc_main$g, {
42613
43134
  ref_key: "modal",
42614
43135
  ref: modal,
42615
43136
  title: "\u5BA1\u6279\u8BBE\u7F6E",
@@ -42623,8 +43144,8 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42623
43144
  size: 26
42624
43145
  }, {
42625
43146
  default: withCtx(() => [
42626
- createElementVNode("div", _hoisted_1$9, [
42627
- createElementVNode("div", _hoisted_2$9, [
43147
+ createElementVNode("div", _hoisted_1$b, [
43148
+ createElementVNode("div", _hoisted_2$a, [
42628
43149
  createVNode(unref(NSpace), { vertical: "" }, {
42629
43150
  default: withCtx(() => [
42630
43151
  createVNode(unref(NSpace), null, {
@@ -42689,7 +43210,7 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42689
43210
  _: 1
42690
43211
  })
42691
43212
  ]),
42692
- config2.value.jump_nodes.length ? (openBlock(), createElementBlock("div", _hoisted_3$9, [
43213
+ config2.value.jump_nodes.length ? (openBlock(), createElementBlock("div", _hoisted_3$a, [
42693
43214
  createVNode(unref(NSpace), null, {
42694
43215
  default: withCtx(() => [
42695
43216
  _cache[7] || (_cache[7] = createElementVNode("div", { class: "jumpName" }, " \u8DF3\u8F6C\u65B9\u5F0F ", -1)),
@@ -42728,7 +43249,7 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42728
43249
  ]),
42729
43250
  createVNode(unref(NSpace), { vertical: "" }, {
42730
43251
  default: withCtx(() => [
42731
- createElementVNode("div", _hoisted_4$7, [
43252
+ createElementVNode("div", _hoisted_4$8, [
42732
43253
  _cache[8] || (_cache[8] = createTextVNode(" \u6743\u9650\u9A8C\u8BC1")),
42733
43254
  createVNode(_component_ZExplainPop, { k: "SPSZ_QX" })
42734
43255
  ]),
@@ -42769,11 +43290,11 @@ var _sfc_main$a = /* @__PURE__ */ defineComponent({
42769
43290
  }
42770
43291
  });
42771
43292
  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")();
42772
- const _hoisted_1$8 = { class: "lcyq_drawer_item" };
42773
- const _hoisted_2$8 = { class: "title" };
42774
- const _hoisted_3$8 = { key: 0 };
42775
- const _hoisted_4$6 = { class: "plugin" };
42776
- const _sfc_main$9 = {
43293
+ const _hoisted_1$a = { class: "lcyq_drawer_item" };
43294
+ const _hoisted_2$9 = { class: "title" };
43295
+ const _hoisted_3$9 = { key: 0 };
43296
+ const _hoisted_4$7 = { class: "plugin" };
43297
+ const _sfc_main$b = {
42777
43298
  __name: "operation",
42778
43299
  props: {
42779
43300
  info: {
@@ -42791,7 +43312,7 @@ const _sfc_main$9 = {
42791
43312
  if (store.drawerConfig.value.type == 4) {
42792
43313
  return store.drawerConfig.value.conditionNodes.find((item) => item.priorityLevel == store.drawerConfig.priorityLevel);
42793
43314
  } else {
42794
- return store.drawerConfig.value;
43315
+ return store.drawerConfig.priorityLevel ? store.drawerConfig.value[store.drawerConfig.priorityLevel] : store.drawerConfig.value;
42795
43316
  }
42796
43317
  });
42797
43318
  const operationPopRef = ref$1(null);
@@ -42823,11 +43344,11 @@ const _sfc_main$9 = {
42823
43344
  }
42824
43345
  return (_ctx, _cache) => {
42825
43346
  return openBlock(), createElementBlock(Fragment, null, [
42826
- createElementVNode("div", _hoisted_1$8, [
42827
- createElementVNode("div", _hoisted_2$8, [
43347
+ createElementVNode("div", _hoisted_1$a, [
43348
+ createElementVNode("div", _hoisted_2$9, [
42828
43349
  createElementVNode("span", null, [
42829
43350
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
42830
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$8, "*")) : createCommentVNode("", true)
43351
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$9, "*")) : createCommentVNode("", true)
42831
43352
  ]),
42832
43353
  createVNode(unref(NButton), {
42833
43354
  text: "",
@@ -42840,8 +43361,8 @@ const _sfc_main$9 = {
42840
43361
  _: 1
42841
43362
  })
42842
43363
  ]),
42843
- createElementVNode("div", _hoisted_4$6, [
42844
- createVNode(_sfc_main$b, {
43364
+ createElementVNode("div", _hoisted_4$7, [
43365
+ createVNode(_sfc_main$d, {
42845
43366
  modelValue: unref(drawerConfig2).node_config.operations,
42846
43367
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(drawerConfig2).node_config.operations = $event),
42847
43368
  "column-key": [{
@@ -42901,7 +43422,7 @@ const _sfc_main$9 = {
42901
43422
  }, 8, ["modelValue"])
42902
43423
  ])
42903
43424
  ]),
42904
- createVNode(_sfc_main$a, {
43425
+ createVNode(_sfc_main$c, {
42905
43426
  ref_key: "operationPopRef",
42906
43427
  ref: operationPopRef,
42907
43428
  operations: unref(drawerConfig2).node_config.operations,
@@ -42912,17 +43433,17 @@ const _sfc_main$9 = {
42912
43433
  }
42913
43434
  };
42914
43435
  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")();
42915
- const _hoisted_1$7 = { class: "expression_cont" };
42916
- const _hoisted_2$7 = { class: "name" };
42917
- const _hoisted_3$7 = { class: "plugin_item" };
42918
- const _hoisted_4$5 = { class: "name" };
42919
- const _hoisted_5$3 = { class: "character" };
43436
+ const _hoisted_1$9 = { class: "expression_cont" };
43437
+ const _hoisted_2$8 = { class: "name" };
43438
+ const _hoisted_3$8 = { class: "plugin_item" };
43439
+ const _hoisted_4$6 = { class: "name" };
43440
+ const _hoisted_5$4 = { class: "character" };
42920
43441
  const _hoisted_6$3 = { class: "function_content" };
42921
43442
  const _hoisted_7$2 = { class: "functions_list" };
42922
43443
  const _hoisted_8$2 = ["onClick"];
42923
43444
  const _hoisted_9$2 = { class: "function_right" };
42924
43445
  const _hoisted_10$2 = { class: "function_value" };
42925
- const _sfc_main$8 = defineComponent({
43446
+ const _sfc_main$a = defineComponent({
42926
43447
  __name: "expressionSet",
42927
43448
  props: {
42928
43449
  isShowSymbol: { type: Boolean, default: true },
@@ -43078,7 +43599,9 @@ const _sfc_main$8 = defineComponent({
43078
43599
  formula.value.keyword = "";
43079
43600
  condition.value.active = 0;
43080
43601
  variableCommon();
43081
- variableFunctions();
43602
+ if (expressionConfig.value.functionsApi) {
43603
+ variableFunctions();
43604
+ }
43082
43605
  expression2.value = setExpression || "";
43083
43606
  modal.value.show();
43084
43607
  }
@@ -43133,21 +43656,8 @@ const _sfc_main$8 = defineComponent({
43133
43656
  emits("ok", expression2.value);
43134
43657
  return;
43135
43658
  }
43136
- testFormula(props.isShowSymbol ? 2 : 1, expression2.value, () => {
43137
- saveLoading.value = false;
43138
- emits("ok", expression2.value);
43139
- });
43140
- }
43141
- function testFormula(type2, str, callback) {
43142
- _axios.get(expressionConfig.value.api.evaluatorApi, { params: { str: "xxx" } }).then((res) => {
43143
- if (res.e) {
43144
- error2(res.m);
43145
- return;
43146
- }
43147
- callback();
43148
- }).catch(() => {
43149
- error2("\u7CFB\u7EDF\u9519\u8BEF");
43150
- });
43659
+ saveLoading.value = false;
43660
+ emits("ok", expression2.value);
43151
43661
  }
43152
43662
  function close() {
43153
43663
  condition.value.keyword = "";
@@ -43161,7 +43671,7 @@ const _sfc_main$8 = defineComponent({
43161
43671
  return (_ctx, _cache) => {
43162
43672
  const _component_ZExplainPop = resolveComponent("ZExplainPop");
43163
43673
  const _component_n_list = resolveComponent("n-list");
43164
- return openBlock(), createBlock(_sfc_main$e, {
43674
+ return openBlock(), createBlock(_sfc_main$g, {
43165
43675
  ref_key: "modal",
43166
43676
  ref: modal,
43167
43677
  "ok-disabled": props.disabled,
@@ -43174,13 +43684,13 @@ const _sfc_main$8 = defineComponent({
43174
43684
  default: withCtx(() => [
43175
43685
  createVNode(unref(NSpace), { vertical: "" }, {
43176
43686
  default: withCtx(() => [
43177
- createElementVNode("div", _hoisted_1$7, [
43687
+ createElementVNode("div", _hoisted_1$9, [
43178
43688
  createVNode(unref(NSpace), {
43179
43689
  class: "flex1",
43180
43690
  vertical: ""
43181
43691
  }, {
43182
43692
  default: withCtx(() => [
43183
- createElementVNode("div", _hoisted_2$7, [
43693
+ createElementVNode("div", _hoisted_2$8, [
43184
43694
  _cache[4] || (_cache[4] = createTextVNode(" \u9009\u62E9\u53D8\u91CF")),
43185
43695
  createVNode(_component_ZExplainPop, { k: "XZBL" })
43186
43696
  ]),
@@ -43217,7 +43727,7 @@ const _sfc_main$8 = defineComponent({
43217
43727
  ]),
43218
43728
  _: 1
43219
43729
  }),
43220
- createElementVNode("div", _hoisted_3$7, [
43730
+ createElementVNode("div", _hoisted_3$8, [
43221
43731
  createVNode(unref(NScrollbar), null, {
43222
43732
  default: withCtx(() => [
43223
43733
  props.scene === "editForm" ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(fields.value, (item) => {
@@ -43281,11 +43791,11 @@ const _sfc_main$8 = defineComponent({
43281
43791
  vertical: ""
43282
43792
  }, {
43283
43793
  default: withCtx(() => [
43284
- createElementVNode("div", _hoisted_4$5, [
43794
+ createElementVNode("div", _hoisted_4$6, [
43285
43795
  _cache[7] || (_cache[7] = createTextVNode(" \u516C\u5F0F\u8BBE\u7F6E")),
43286
43796
  createVNode(_component_ZExplainPop, { k: "GSSZ" })
43287
43797
  ]),
43288
- createElementVNode("div", _hoisted_5$3, [
43798
+ createElementVNode("div", _hoisted_5$4, [
43289
43799
  createVNode(unref(NSpace), null, {
43290
43800
  default: withCtx(() => [
43291
43801
  (openBlock(), createElementBlock(Fragment, null, renderList(symbol, (item, index2) => {
@@ -43321,7 +43831,7 @@ const _sfc_main$8 = defineComponent({
43321
43831
  onFocus: inputFocus,
43322
43832
  onBlur: inputBlur
43323
43833
  }, null, 8, ["value"]),
43324
- _ctx.isShowFunctions ? (openBlock(), createBlock(_component_n_list, {
43834
+ expressionConfig.value.functionsApi && _ctx.isShowFunctions ? (openBlock(), createBlock(_component_n_list, {
43325
43835
  key: 0,
43326
43836
  bordered: ""
43327
43837
  }, {
@@ -43419,15 +43929,15 @@ const _sfc_main$8 = defineComponent({
43419
43929
  };
43420
43930
  }
43421
43931
  });
43422
- var expression_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".assignee[data-v-4479d6f3]{height:120px}\n")();
43423
- const _hoisted_1$6 = { class: "lcyq_drawer_item" };
43424
- const _hoisted_2$6 = { class: "title" };
43425
- const _hoisted_3$6 = { key: 0 };
43426
- const _hoisted_4$4 = {
43932
+ var expression_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".assignee[data-v-ca19ab52]{height:120px}\n")();
43933
+ const _hoisted_1$8 = { class: "lcyq_drawer_item" };
43934
+ const _hoisted_2$7 = { class: "title" };
43935
+ const _hoisted_3$7 = { key: 0 };
43936
+ const _hoisted_4$5 = {
43427
43937
  key: 0,
43428
43938
  class: "plugin"
43429
43939
  };
43430
- const _sfc_main$7 = {
43940
+ const _sfc_main$9 = {
43431
43941
  __name: "expression",
43432
43942
  props: {
43433
43943
  info: {
@@ -43441,7 +43951,7 @@ const _sfc_main$7 = {
43441
43951
  if (store.drawerConfig.value.type == 4) {
43442
43952
  return store.drawerConfig.value.conditionNodes.find((item) => item.priorityLevel == store.drawerConfig.priorityLevel);
43443
43953
  } else {
43444
- return store.drawerConfig.value;
43954
+ return store.drawerConfig.priorityLevel ? store.drawerConfig.value[store.drawerConfig.priorityLevel] : store.drawerConfig.value;
43445
43955
  }
43446
43956
  });
43447
43957
  const expressionSetRef = ref$1();
@@ -43459,11 +43969,11 @@ const _sfc_main$7 = {
43459
43969
  }
43460
43970
  return (_ctx, _cache) => {
43461
43971
  return openBlock(), createElementBlock(Fragment, null, [
43462
- createElementVNode("div", _hoisted_1$6, [
43463
- createElementVNode("div", _hoisted_2$6, [
43972
+ createElementVNode("div", _hoisted_1$8, [
43973
+ createElementVNode("div", _hoisted_2$7, [
43464
43974
  createElementVNode("span", null, [
43465
43975
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
43466
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$6, "*")) : createCommentVNode("", true)
43976
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$7, "*")) : createCommentVNode("", true)
43467
43977
  ]),
43468
43978
  createVNode(unref(NButton), {
43469
43979
  text: "",
@@ -43476,7 +43986,7 @@ const _sfc_main$7 = {
43476
43986
  _: 1
43477
43987
  })
43478
43988
  ]),
43479
- hideInput.value ? (openBlock(), createElementBlock("div", _hoisted_4$4, [
43989
+ hideInput.value ? (openBlock(), createElementBlock("div", _hoisted_4$5, [
43480
43990
  createVNode(unref(NCard), {
43481
43991
  size: "small",
43482
43992
  class: "assignee"
@@ -43488,7 +43998,7 @@ const _sfc_main$7 = {
43488
43998
  })
43489
43999
  ])) : createCommentVNode("", true)
43490
44000
  ]),
43491
- createVNode(_sfc_main$8, {
44001
+ createVNode(_sfc_main$a, {
43492
44002
  ref_key: "expressionSetRef",
43493
44003
  ref: expressionSetRef,
43494
44004
  onOk: updateExpression
@@ -43497,11 +44007,11 @@ const _sfc_main$7 = {
43497
44007
  };
43498
44008
  }
43499
44009
  };
43500
- var expression = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-4479d6f3"]]);
43501
- const _hoisted_1$5 = { class: "lcyq_drawer_item" };
43502
- const _hoisted_2$5 = { class: "title" };
43503
- const _hoisted_3$5 = { key: 0 };
43504
- const _sfc_main$6 = {
44010
+ var expression = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-ca19ab52"]]);
44011
+ const _hoisted_1$7 = { class: "lcyq_drawer_item" };
44012
+ const _hoisted_2$6 = { class: "title" };
44013
+ const _hoisted_3$6 = { key: 0 };
44014
+ const _sfc_main$8 = {
43505
44015
  __name: "switchPlugin",
43506
44016
  props: {
43507
44017
  info: {
@@ -43515,16 +44025,16 @@ const _sfc_main$6 = {
43515
44025
  if (store.drawerConfig.value.type == 4) {
43516
44026
  return store.drawerConfig.value.conditionNodes.find((item) => item.priorityLevel == store.drawerConfig.priorityLevel);
43517
44027
  } else {
43518
- return store.drawerConfig.value;
44028
+ return store.drawerConfig.priorityLevel ? store.drawerConfig.value[store.drawerConfig.priorityLevel] : store.drawerConfig.value;
43519
44029
  }
43520
44030
  });
43521
44031
  let props = __props;
43522
44032
  return (_ctx, _cache) => {
43523
- return openBlock(), createElementBlock("div", _hoisted_1$5, [
43524
- createElementVNode("div", _hoisted_2$5, [
44033
+ return openBlock(), createElementBlock("div", _hoisted_1$7, [
44034
+ createElementVNode("div", _hoisted_2$6, [
43525
44035
  createElementVNode("span", null, [
43526
44036
  createTextVNode(toDisplayString(__props.info.name) + " ", 1),
43527
- unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$5, "*")) : createCommentVNode("", true)
44037
+ unref(props).info.required ? (openBlock(), createElementBlock("i", _hoisted_3$6, "*")) : createCommentVNode("", true)
43528
44038
  ]),
43529
44039
  createVNode(unref(NSwitch), {
43530
44040
  value: unref(drawerConfig2)[unref(props).info.key],
@@ -43538,15 +44048,15 @@ const _sfc_main$6 = {
43538
44048
  }
43539
44049
  };
43540
44050
  var plugins = {
43541
- "Input": _sfc_main$g,
43542
- "Select": _sfc_main$f,
44051
+ "Input": _sfc_main$i,
44052
+ "Select": _sfc_main$h,
43543
44053
  "Personnel": personnel,
43544
- "Operation": _sfc_main$9,
44054
+ "Operation": _sfc_main$b,
43545
44055
  "Expression": expression,
43546
- "Switch": _sfc_main$6
44056
+ "Switch": _sfc_main$8
43547
44057
  };
43548
44058
  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")();
43549
- const _sfc_main$5 = {
44059
+ const _sfc_main$7 = {
43550
44060
  __name: "approverDrawer",
43551
44061
  setup(__props) {
43552
44062
  let store = useStore();
@@ -43650,7 +44160,7 @@ const verifyFn = {
43650
44160
  },
43651
44161
  PersonnelVerify(data2, config2) {
43652
44162
  let curData = data2.node_config[config2.key];
43653
- return !!Object.values(curData).map((item) => !Array.isArray(item) ? Object.values(item) : item).flat(Infinity).length;
44163
+ return curData.length;
43654
44164
  },
43655
44165
  OperationVerify(data2, config2) {
43656
44166
  let curData = data2.node_config[config2.key];
@@ -43685,18 +44195,18 @@ var nodeUtil = {
43685
44195
  for (let i = 0; i < config2.length; i++) {
43686
44196
  if (config2[i].key === "node_name")
43687
44197
  continue;
43688
- obj[config2[i].key] = config2[i].defaultValue !== void 0 ? JSON.parse(JSON.stringify(config2[i].defaultValue)) : null;
44198
+ _.set(obj, config2[i].key, config2[i].defaultValue !== void 0 ? JSON.parse(JSON.stringify(config2[i].defaultValue)) : null);
43689
44199
  }
43690
44200
  return obj;
43691
44201
  }
43692
44202
  };
43693
- 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')();
44203
+ 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')();
43694
44204
  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")();
43695
- const _hoisted_1$4 = { class: "add-node-btn-box" };
43696
- const _hoisted_2$4 = { class: "add-node-btn" };
43697
- const _hoisted_3$4 = { class: "add-node-popover-body" };
43698
- const _hoisted_4$3 = ["onClick"];
43699
- const _sfc_main$4 = {
44205
+ const _hoisted_1$6 = { class: "add-node-btn-box" };
44206
+ const _hoisted_2$5 = { class: "add-node-btn" };
44207
+ const _hoisted_3$5 = { class: "add-node-popover-body" };
44208
+ const _hoisted_4$4 = ["onClick"];
44209
+ const _sfc_main$6 = {
43700
44210
  __name: "addNode",
43701
44211
  props: {
43702
44212
  childNodeP: {
@@ -43713,7 +44223,6 @@ const _sfc_main$4 = {
43713
44223
  const pluginsConfig = computed(() => store.pluginsConfig);
43714
44224
  const lcyqDisabled = computed(() => store.disabled);
43715
44225
  const addType = (type2) => {
43716
- console.log(nodesConfig2.value);
43717
44226
  if (type2 != 4) {
43718
44227
  let data2 = {}, node = nodesConfig2.value[type2];
43719
44228
  data2.node_name = node.name;
@@ -43737,7 +44246,7 @@ const _sfc_main$4 = {
43737
44246
  type: 3,
43738
44247
  priorityLevel: 1,
43739
44248
  node_config: nodeUtil.handleConfig(pluginsConfig.value["3"]),
43740
- childNode: props.childNodeP
44249
+ childNode: props.childNodeP && Object.keys(props.childNodeP).length ? props.childNodeP : null
43741
44250
  },
43742
44251
  {
43743
44252
  node_name: "\u6761\u4EF62",
@@ -43753,8 +44262,8 @@ const _sfc_main$4 = {
43753
44262
  }
43754
44263
  };
43755
44264
  return (_ctx, _cache) => {
43756
- return openBlock(), createElementBlock("div", _hoisted_1$4, [
43757
- createElementVNode("div", _hoisted_2$4, [
44265
+ return openBlock(), createElementBlock("div", _hoisted_1$6, [
44266
+ createElementVNode("div", _hoisted_2$5, [
43758
44267
  !lcyqDisabled.value ? (openBlock(), createBlock(unref(NPopover), {
43759
44268
  key: 0,
43760
44269
  trigger: "hover",
@@ -43769,7 +44278,7 @@ const _sfc_main$4 = {
43769
44278
  ], -1)
43770
44279
  ])),
43771
44280
  default: withCtx(() => [
43772
- createElementVNode("div", _hoisted_3$4, [
44281
+ createElementVNode("div", _hoisted_3$5, [
43773
44282
  (openBlock(true), createElementBlock(Fragment, null, renderList(nodesConfig2.value, (item) => {
43774
44283
  return openBlock(), createElementBlock(Fragment, null, [
43775
44284
  item ? (openBlock(), createElementBlock("a", {
@@ -43786,7 +44295,7 @@ const _sfc_main$4 = {
43786
44295
  }, null, 2)
43787
44296
  ], 4),
43788
44297
  createElementVNode("p", null, toDisplayString(item.name), 1)
43789
- ], 8, _hoisted_4$3)) : createCommentVNode("", true)
44298
+ ], 8, _hoisted_4$4)) : createCommentVNode("", true)
43790
44299
  ], 64);
43791
44300
  }), 256)),
43792
44301
  createElementVNode("a", {
@@ -43807,22 +44316,22 @@ const _sfc_main$4 = {
43807
44316
  };
43808
44317
  }
43809
44318
  };
43810
- var addNode = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-632f8ade"]]);
44319
+ var addNode = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__scopeId", "data-v-224b3662"]]);
43811
44320
  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")();
43812
- const _hoisted_1$3 = {
44321
+ const _hoisted_1$5 = {
43813
44322
  key: 0,
43814
44323
  class: "node-wrap"
43815
44324
  };
43816
- const _hoisted_2$3 = { class: "node-wrap-box start-node" };
43817
- const _hoisted_3$3 = {
44325
+ const _hoisted_2$4 = { class: "node-wrap-box start-node" };
44326
+ const _hoisted_3$4 = {
43818
44327
  class: "title",
43819
44328
  style: `background: rgb(87, 106, 149);`
43820
44329
  };
43821
- const _hoisted_4$2 = {
44330
+ const _hoisted_4$3 = {
43822
44331
  key: 1,
43823
44332
  class: "branch-wrap"
43824
44333
  };
43825
- const _hoisted_5$2 = { class: "branch-box-wrap" };
44334
+ const _hoisted_5$3 = { class: "branch-box-wrap" };
43826
44335
  const _hoisted_6$2 = { class: "branch-box" };
43827
44336
  const _hoisted_7$1 = { class: "condition-node" };
43828
44337
  const _hoisted_8$1 = { class: "condition-node-box" };
@@ -43841,13 +44350,21 @@ const _hoisted_17$1 = {
43841
44350
  key: 2,
43842
44351
  class: "node-wrap"
43843
44352
  };
43844
- const _hoisted_18 = ["placeholder"];
43845
- const _hoisted_19 = { class: "text" };
43846
- const _hoisted_20 = {
44353
+ const _hoisted_18 = { class: "node-wrap-item" };
44354
+ const _hoisted_19 = ["placeholder"];
44355
+ const _hoisted_20 = { class: "text" };
44356
+ const _hoisted_21 = {
43847
44357
  key: 0,
43848
44358
  class: "error_tip"
43849
44359
  };
43850
- const _sfc_main$3 = {
44360
+ const _hoisted_22 = { class: "add-node-popover-body" };
44361
+ const _hoisted_23 = ["placeholder"];
44362
+ const _hoisted_24 = { class: "text" };
44363
+ const _hoisted_25 = {
44364
+ key: 0,
44365
+ class: "error_tip"
44366
+ };
44367
+ const _sfc_main$5 = {
43851
44368
  __name: "nodeWrap",
43852
44369
  props: {
43853
44370
  nodeConfig: {
@@ -43865,6 +44382,7 @@ const _sfc_main$3 = {
43865
44382
  let drawerConfig2 = computed(() => store.drawerConfig);
43866
44383
  let isInputList = ref$1([]);
43867
44384
  let isInput = ref$1(false);
44385
+ let isInputBh = ref$1(false);
43868
44386
  const nodesConfig2 = computed(() => store.nodesConfig);
43869
44387
  const pluginsConfig = computed(() => store.pluginsConfig);
43870
44388
  const lcyqDisabled = computed(() => store.disabled);
@@ -43887,7 +44405,7 @@ const _sfc_main$3 = {
43887
44405
  return nodesConfig2.value[type2].iconfont;
43888
44406
  };
43889
44407
  });
43890
- const clickEvent = (index2) => {
44408
+ const clickEvent = (index2, isBh) => {
43891
44409
  if (lcyqDisabled.value) {
43892
44410
  return;
43893
44411
  }
@@ -43895,6 +44413,7 @@ const _sfc_main$3 = {
43895
44413
  isInputList.value[index2] = true;
43896
44414
  } else {
43897
44415
  isInput.value = true;
44416
+ isInputBh.value = !!isBh;
43898
44417
  }
43899
44418
  };
43900
44419
  const blurEvent = (index2) => {
@@ -43909,6 +44428,10 @@ const _sfc_main$3 = {
43909
44428
  const delNode = () => {
43910
44429
  emits("update:nodeConfig", props.nodeConfig.childNode);
43911
44430
  };
44431
+ function delNodeBh() {
44432
+ props.nodeConfig.childNodeBh = null;
44433
+ emits("update:nodeConfig", props.nodeConfig);
44434
+ }
43912
44435
  const addTerm = () => {
43913
44436
  let len2 = props.nodeConfig.conditionNodes.length + 1;
43914
44437
  props.nodeConfig.conditionNodes.push({
@@ -43966,16 +44489,27 @@ const _sfc_main$3 = {
43966
44489
  });
43967
44490
  emits("update:nodeConfig", props.nodeConfig);
43968
44491
  };
44492
+ function addBh() {
44493
+ let data2 = {}, node = nodesConfig2.value[1];
44494
+ data2.node_name = node.name;
44495
+ data2.node_key = nanoid(20);
44496
+ data2.type = 1;
44497
+ data2.error = false;
44498
+ data2.node_config = nodeUtil.handleConfig(pluginsConfig.value[1]);
44499
+ data2.targetRef = props.nodeConfig.node_key;
44500
+ props.nodeConfig.childNodeBh = data2;
44501
+ emits("update:nodeConfig", props.nodeConfig);
44502
+ }
43969
44503
  return (_ctx, _cache) => {
43970
44504
  const _component_templage = resolveComponent("templage");
43971
44505
  const _component_nodeWrap = resolveComponent("nodeWrap", true);
43972
44506
  return openBlock(), createElementBlock(Fragment, null, [
43973
- __props.nodeConfig.type == 0 ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
43974
- createElementVNode("div", _hoisted_2$3, [
43975
- createElementVNode("div", _hoisted_3$3, [
44507
+ __props.nodeConfig.type == 0 ? (openBlock(), createElementBlock("div", _hoisted_1$5, [
44508
+ createElementVNode("div", _hoisted_2$4, [
44509
+ createElementVNode("div", _hoisted_3$4, [
43976
44510
  createElementVNode("span", null, toDisplayString(__props.nodeConfig.node_name), 1)
43977
44511
  ]),
43978
- _cache[9] || (_cache[9] = createElementVNode("div", { class: "content" }, [
44512
+ _cache[16] || (_cache[16] = createElementVNode("div", { class: "content" }, [
43979
44513
  createElementVNode("div", { class: "text" }, " \u7533\u8BF7\u8282\u70B9\uFF0C\u7528\u6237\u53D1\u8D77\u7533\u8BF7 ")
43980
44514
  ], -1))
43981
44515
  ]),
@@ -43984,8 +44518,8 @@ const _sfc_main$3 = {
43984
44518
  "onUpdate:childNodeP": _cache[0] || (_cache[0] = ($event) => __props.nodeConfig.childNode = $event)
43985
44519
  }, null, 8, ["childNodeP"])
43986
44520
  ])) : createCommentVNode("", true),
43987
- __props.nodeConfig.type == 4 ? (openBlock(), createElementBlock("div", _hoisted_4$2, [
43988
- createElementVNode("div", _hoisted_5$2, [
44521
+ __props.nodeConfig.type == 4 ? (openBlock(), createElementBlock("div", _hoisted_4$3, [
44522
+ createElementVNode("div", _hoisted_5$3, [
43989
44523
  createElementVNode("div", _hoisted_6$2, [
43990
44524
  !lcyqDisabled.value ? (openBlock(), createElementBlock("button", {
43991
44525
  key: 0,
@@ -44043,7 +44577,7 @@ const _sfc_main$3 = {
44043
44577
  class: "content",
44044
44578
  onClick: ($event) => setPerson(item.priorityLevel)
44045
44579
  }, toDisplayString(item.node_config.expression || "\u8BF7\u8BBE\u7F6E\u6761\u4EF6"), 9, _hoisted_15$1),
44046
- unref(isTried) && item.error ? (openBlock(), createElementBlock("div", _hoisted_16$1, _cache[10] || (_cache[10] = [
44580
+ unref(isTried) && item.error ? (openBlock(), createElementBlock("div", _hoisted_16$1, _cache[17] || (_cache[17] = [
44047
44581
  createElementVNode("i", { class: "anticon anticon-exclamation-circle" }, null, -1)
44048
44582
  ]))) : createCommentVNode("", true)
44049
44583
  ], 2),
@@ -44059,12 +44593,12 @@ const _sfc_main$3 = {
44059
44593
  "onUpdate:nodeConfig": ($event) => item.childNode = $event
44060
44594
  }, null, 8, ["nodeConfig", "onUpdate:nodeConfig"])) : createCommentVNode("", true),
44061
44595
  index2 == 0 ? (openBlock(), createElementBlock(Fragment, { key: 1 }, [
44062
- _cache[11] || (_cache[11] = createElementVNode("div", { class: "top-left-cover-line" }, null, -1)),
44063
- _cache[12] || (_cache[12] = createElementVNode("div", { class: "bottom-left-cover-line" }, null, -1))
44596
+ _cache[18] || (_cache[18] = createElementVNode("div", { class: "top-left-cover-line" }, null, -1)),
44597
+ _cache[19] || (_cache[19] = createElementVNode("div", { class: "bottom-left-cover-line" }, null, -1))
44064
44598
  ], 64)) : createCommentVNode("", true),
44065
44599
  index2 == __props.nodeConfig.conditionNodes.length - 1 ? (openBlock(), createElementBlock(Fragment, { key: 2 }, [
44066
- _cache[13] || (_cache[13] = createElementVNode("div", { class: "top-right-cover-line" }, null, -1)),
44067
- _cache[14] || (_cache[14] = createElementVNode("div", { class: "bottom-right-cover-line" }, null, -1))
44600
+ _cache[20] || (_cache[20] = createElementVNode("div", { class: "top-right-cover-line" }, null, -1)),
44601
+ _cache[21] || (_cache[21] = createElementVNode("div", { class: "bottom-right-cover-line" }, null, -1))
44068
44602
  ], 64)) : createCommentVNode("", true)
44069
44603
  ]);
44070
44604
  }), 128))
@@ -44076,73 +44610,140 @@ const _sfc_main$3 = {
44076
44610
  ])
44077
44611
  ])) : createCommentVNode("", true),
44078
44612
  __props.nodeConfig.type && ![0, 4].includes(__props.nodeConfig.type) ? (openBlock(), createElementBlock("div", _hoisted_17$1, [
44079
- createElementVNode("div", {
44080
- class: normalizeClass(["node-wrap-box", { active: !lcyqDisabled.value }])
44081
- }, [
44082
- createElementVNode("div", {
44083
- class: "title",
44084
- style: normalizeStyle(`background: ${nodesConfig2.value[__props.nodeConfig.type].bgColor};`)
44085
- }, [
44086
- createElementVNode("span", {
44087
- class: normalizeClass(nodeIconfont.value(__props.nodeConfig.type))
44088
- }, null, 2),
44089
- unref(isInput) ? withDirectives((openBlock(), createElementBlock("input", {
44090
- key: 0,
44091
- type: "text",
44092
- class: "ant-input editable-title-input",
44093
- onBlur: _cache[3] || (_cache[3] = ($event) => blurEvent()),
44094
- onFocus: _cache[4] || (_cache[4] = ($event) => $event.currentTarget.select()),
44095
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.nodeConfig.node_name = $event),
44096
- placeholder: unref(defaultText)
44097
- }, null, 40, _hoisted_18)), [
44098
- [vFocus],
44099
- [vModelText, __props.nodeConfig.node_name]
44100
- ]) : (openBlock(), createElementBlock("span", {
44101
- key: 1,
44102
- class: "editable-title",
44103
- onClick: _cache[6] || (_cache[6] = ($event) => clickEvent())
44104
- }, toDisplayString(__props.nodeConfig.node_name), 1)),
44105
- !lcyqDisabled.value ? (openBlock(), createElementBlock("i", {
44106
- key: 2,
44107
- class: "anticon anticon-close close",
44108
- onClick: delNode
44109
- })) : createCommentVNode("", true)
44110
- ], 4),
44111
- createElementVNode("div", {
44112
- class: "content",
44113
- onClick: setPerson
44613
+ createElementVNode("div", _hoisted_18, [
44614
+ __props.nodeConfig.childNodeBh ? (openBlock(), createElementBlock("div", {
44615
+ key: 0,
44616
+ class: normalizeClass(["node-wrap-box node-wrap-box-bh", { active: !lcyqDisabled.value }])
44114
44617
  }, [
44115
- createElementVNode("div", _hoisted_19, toDisplayString(nodesConfig2.value[__props.nodeConfig.type].desc), 1)
44116
- ]),
44117
- unref(isTried) && __props.nodeConfig.error ? (openBlock(), createElementBlock("div", _hoisted_20, _cache[15] || (_cache[15] = [
44118
- createElementVNode("i", { class: "anticon anticon-exclamation-circle" }, null, -1)
44119
- ]))) : createCommentVNode("", true)
44120
- ], 2),
44618
+ createElementVNode("div", {
44619
+ class: "title",
44620
+ style: normalizeStyle(`background: ${nodesConfig2.value[__props.nodeConfig.childNodeBh.type].bgColor};`)
44621
+ }, [
44622
+ createElementVNode("span", {
44623
+ class: normalizeClass(nodeIconfont.value(__props.nodeConfig.childNodeBh.type))
44624
+ }, null, 2),
44625
+ unref(isInput) && unref(isInputBh) ? withDirectives((openBlock(), createElementBlock("input", {
44626
+ key: 0,
44627
+ type: "text",
44628
+ class: "ant-input editable-title-input",
44629
+ onBlur: _cache[3] || (_cache[3] = ($event) => blurEvent()),
44630
+ onFocus: _cache[4] || (_cache[4] = ($event) => $event.currentTarget.select()),
44631
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.nodeConfig.childNodeBh.node_name = $event),
44632
+ placeholder: unref(defaultText)
44633
+ }, null, 40, _hoisted_19)), [
44634
+ [vFocus],
44635
+ [vModelText, __props.nodeConfig.childNodeBh.node_name]
44636
+ ]) : (openBlock(), createElementBlock("span", {
44637
+ key: 1,
44638
+ class: "editable-title",
44639
+ onClick: _cache[6] || (_cache[6] = ($event) => clickEvent(void 0, true))
44640
+ }, toDisplayString(__props.nodeConfig.childNodeBh.node_name), 1)),
44641
+ !lcyqDisabled.value ? (openBlock(), createElementBlock("i", {
44642
+ key: 2,
44643
+ class: "anticon anticon-close close",
44644
+ onClick: delNodeBh
44645
+ })) : createCommentVNode("", true)
44646
+ ], 4),
44647
+ createElementVNode("div", {
44648
+ class: "content",
44649
+ onClick: _cache[7] || (_cache[7] = ($event) => setPerson("childNodeBh"))
44650
+ }, [
44651
+ createElementVNode("div", _hoisted_20, toDisplayString(nodesConfig2.value[__props.nodeConfig.childNodeBh.type].desc), 1)
44652
+ ]),
44653
+ unref(isTried) && __props.nodeConfig.childNodeBh.error ? (openBlock(), createElementBlock("div", _hoisted_21, _cache[22] || (_cache[22] = [
44654
+ createElementVNode("i", { class: "anticon anticon-exclamation-circle" }, null, -1)
44655
+ ]))) : createCommentVNode("", true),
44656
+ _cache[23] || (_cache[23] = createElementVNode("div", { class: "line" }, null, -1))
44657
+ ], 2)) : createCommentVNode("", true),
44658
+ createVNode(unref(NPopover), {
44659
+ disabled: lcyqDisabled.value || __props.nodeConfig.childNodeBh,
44660
+ trigger: "hover",
44661
+ placement: "left-start"
44662
+ }, {
44663
+ trigger: withCtx(() => [
44664
+ createElementVNode("div", {
44665
+ class: normalizeClass(["node-wrap-box", { active: !lcyqDisabled.value }])
44666
+ }, [
44667
+ createElementVNode("div", {
44668
+ class: "title",
44669
+ style: normalizeStyle(`background: ${nodesConfig2.value[__props.nodeConfig.type].bgColor};`)
44670
+ }, [
44671
+ createElementVNode("span", {
44672
+ class: normalizeClass(nodeIconfont.value(__props.nodeConfig.type))
44673
+ }, null, 2),
44674
+ unref(isInput) && !unref(isInputBh) ? withDirectives((openBlock(), createElementBlock("input", {
44675
+ key: 0,
44676
+ type: "text",
44677
+ class: "ant-input editable-title-input",
44678
+ onBlur: _cache[9] || (_cache[9] = ($event) => blurEvent()),
44679
+ onFocus: _cache[10] || (_cache[10] = ($event) => $event.currentTarget.select()),
44680
+ "onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => __props.nodeConfig.node_name = $event),
44681
+ placeholder: unref(defaultText)
44682
+ }, null, 40, _hoisted_23)), [
44683
+ [vFocus],
44684
+ [vModelText, __props.nodeConfig.node_name]
44685
+ ]) : (openBlock(), createElementBlock("span", {
44686
+ key: 1,
44687
+ class: "editable-title",
44688
+ onClick: _cache[12] || (_cache[12] = ($event) => clickEvent())
44689
+ }, toDisplayString(__props.nodeConfig.node_name), 1)),
44690
+ !lcyqDisabled.value ? (openBlock(), createElementBlock("i", {
44691
+ key: 2,
44692
+ class: "anticon anticon-close close",
44693
+ onClick: delNode
44694
+ })) : createCommentVNode("", true)
44695
+ ], 4),
44696
+ createElementVNode("div", {
44697
+ class: "content",
44698
+ onClick: _cache[13] || (_cache[13] = ($event) => setPerson())
44699
+ }, [
44700
+ createElementVNode("div", _hoisted_24, toDisplayString(nodesConfig2.value[__props.nodeConfig.type].desc), 1)
44701
+ ]),
44702
+ unref(isTried) && __props.nodeConfig.error ? (openBlock(), createElementBlock("div", _hoisted_25, _cache[25] || (_cache[25] = [
44703
+ createElementVNode("i", { class: "anticon anticon-exclamation-circle" }, null, -1)
44704
+ ]))) : createCommentVNode("", true)
44705
+ ], 2)
44706
+ ]),
44707
+ default: withCtx(() => [
44708
+ createElementVNode("div", _hoisted_22, [
44709
+ createElementVNode("a", {
44710
+ class: "add-node-popover-item condition",
44711
+ onClick: _cache[8] || (_cache[8] = ($event) => addBh())
44712
+ }, [
44713
+ createElementVNode("div", {
44714
+ class: "item-wrapper",
44715
+ style: normalizeStyle(`color: ${nodesConfig2.value["1"].bgColor}`)
44716
+ }, [
44717
+ createElementVNode("i", {
44718
+ class: normalizeClass(nodesConfig2.value["1"].iconfont)
44719
+ }, null, 2)
44720
+ ], 4),
44721
+ _cache[24] || (_cache[24] = createElementVNode("p", null, "\u5BA1\u6279", -1))
44722
+ ])
44723
+ ])
44724
+ ]),
44725
+ _: 1
44726
+ }, 8, ["disabled"])
44727
+ ]),
44121
44728
  createVNode(addNode, {
44122
44729
  childNodeP: __props.nodeConfig.childNode,
44123
- "onUpdate:childNodeP": _cache[7] || (_cache[7] = ($event) => __props.nodeConfig.childNode = $event)
44730
+ "onUpdate:childNodeP": _cache[14] || (_cache[14] = ($event) => __props.nodeConfig.childNode = $event)
44124
44731
  }, null, 8, ["childNodeP"])
44125
44732
  ])) : createCommentVNode("", true),
44126
44733
  __props.nodeConfig.childNode ? (openBlock(), createBlock(_component_nodeWrap, {
44127
44734
  key: 3,
44128
44735
  nodeConfig: __props.nodeConfig.childNode,
44129
- "onUpdate:nodeConfig": _cache[8] || (_cache[8] = ($event) => __props.nodeConfig.childNode = $event)
44736
+ "onUpdate:nodeConfig": _cache[15] || (_cache[15] = ($event) => __props.nodeConfig.childNode = $event)
44130
44737
  }, null, 8, ["nodeConfig"])) : createCommentVNode("", true)
44131
44738
  ], 64);
44132
44739
  };
44133
44740
  }
44134
44741
  };
44135
- var defaultData = {
44136
- "node_name": "\u7533\u8BF7",
44137
- "node_key": "R8iKwcw4JuSoLkQc4uRL",
44138
- "type": 0,
44139
- "childNode": null
44140
- };
44141
- 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')();
44142
- const _hoisted_1$2 = { class: "fd-nav-content" };
44143
- const _hoisted_2$2 = { class: "dingflow-design" };
44144
- const _hoisted_3$2 = { class: "zoom" };
44145
- const _sfc_main$2 = {
44742
+ 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}.ant-btn{position:relative}.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,.node-wrap-item{position:relative}.node-wrap-box-bh{position:absolute;left:-300px;width:220px}.node-wrap-box-bh:before{display:none}.node-wrap-box .bh-btn{position:absolute}.node-wrap-box-bh .line{position:absolute;top:50%;right:-75px;width:75px;height:2px;background-color:#cacaca}.node-wrap-box-bh .line:after{content:"";position:absolute;top:50%;right:-4px;transform:translateY(-50%);width:0;height:4px;border-style:solid;border-width:6px 4px 6px 8px;border-color:transparent transparent transparent #cacaca;background:#f5f5f7}@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')();
44743
+ const _hoisted_1$4 = { class: "fd-nav-content" };
44744
+ const _hoisted_2$3 = { class: "dingflow-design" };
44745
+ const _hoisted_3$3 = { class: "zoom" };
44746
+ const _sfc_main$4 = {
44146
44747
  __name: "lcyq",
44147
44748
  props: {
44148
44749
  expressionConfig: {
@@ -44173,15 +44774,23 @@ const _sfc_main$2 = {
44173
44774
  let props = __props;
44174
44775
  setLcyqConfig(props);
44175
44776
  let nowVal = ref$1(100);
44176
- let nodeConfig = ref$1(defaultData);
44777
+ let nodeConfig = ref$1(initData());
44177
44778
  let directorMaxLevel = ref$1(0);
44178
44779
  let verifyResult = false;
44179
44780
  provide("nodeConfig", nodeConfig);
44781
+ function initData() {
44782
+ return {
44783
+ "node_name": "\u7533\u8BF7",
44784
+ "node_key": nanoid(20),
44785
+ "type": 0,
44786
+ "childNode": null
44787
+ };
44788
+ }
44180
44789
  watch(props, (newValue, oldValue) => {
44181
44790
  setLcyqConfig(props);
44182
44791
  }, { deep: true });
44183
44792
  const reErr = (node) => {
44184
- let { type: type2, childNode, conditionNodes } = node;
44793
+ let { type: type2, childNode, conditionNodes, childNodeBh } = node;
44185
44794
  if (childNode) {
44186
44795
  reErr(childNode);
44187
44796
  }
@@ -44190,6 +44799,12 @@ const _sfc_main$2 = {
44190
44799
  reErr(conditionNodes[i]);
44191
44800
  }
44192
44801
  }
44802
+ if (childNodeBh) {
44803
+ childNodeBh.error = handleRequired(childNodeBh, pluginsConfig.value[childNodeBh.type]);
44804
+ if (childNodeBh.error) {
44805
+ verifyResult = true;
44806
+ }
44807
+ }
44193
44808
  if (type2) {
44194
44809
  node.error = handleRequired(node, pluginsConfig.value[type2]);
44195
44810
  if (node.error) {
@@ -44218,21 +44833,61 @@ const _sfc_main$2 = {
44218
44833
  warning2("\u8BF7\u586B\u5199\u5FC5\u586B\u9879");
44219
44834
  cb(false);
44220
44835
  } else {
44836
+ handleNodeConfig(nodeConfig.value);
44837
+ handleRouteNodeConfig(nodeConfig.value);
44221
44838
  cb(JSON.stringify(nodeConfig.value));
44222
44839
  }
44223
44840
  }
44841
+ function handleNodeConfig(node, parentNode) {
44842
+ node.parent_key = parentNode ? parentNode.node_key : null;
44843
+ if (node.type === 3) {
44844
+ node.sourceRef = parentNode.parent_key;
44845
+ node.parent_key = parentNode.parent_key;
44846
+ if (node.childNode) {
44847
+ node.targetRef = node.childNode.node_key;
44848
+ } else {
44849
+ node.targetRef = parentNode.childNode ? parentNode.childNode.node_key : "endEvent";
44850
+ }
44851
+ }
44852
+ if (node.childNode) {
44853
+ handleNodeConfig(node.childNode, node);
44854
+ }
44855
+ if (node.type === 4) {
44856
+ for (let i = 0; i < node.conditionNodes.length; i++) {
44857
+ handleNodeConfig(node.conditionNodes[i], node);
44858
+ }
44859
+ }
44860
+ }
44861
+ function handleRouteNodeConfig(node, routeNode) {
44862
+ console.log(node, routeNode);
44863
+ if (routeNode && !node.childNode) {
44864
+ node.targetRef = routeNode.childNode ? routeNode.childNode.node_key : null;
44865
+ }
44866
+ if (node.childNode) {
44867
+ handleRouteNodeConfig(node.childNode, routeNode);
44868
+ }
44869
+ if (node.type === 4) {
44870
+ for (let i = 0; i < node.conditionNodes.length; i++) {
44871
+ handleRouteNodeConfig(node.conditionNodes[i], node);
44872
+ }
44873
+ }
44874
+ }
44875
+ function resetValue() {
44876
+ setValue(initData());
44877
+ }
44224
44878
  function setValue(val) {
44225
44879
  nodeConfig.value = val;
44226
44880
  }
44227
44881
  __expose({
44228
44882
  getValue: getValue2,
44229
- setValue
44883
+ setValue,
44884
+ resetValue
44230
44885
  });
44231
44886
  return (_ctx, _cache) => {
44232
44887
  return openBlock(), createElementBlock(Fragment, null, [
44233
- createElementVNode("div", _hoisted_1$2, [
44234
- createElementVNode("section", _hoisted_2$2, [
44235
- createElementVNode("div", _hoisted_3$2, [
44888
+ createElementVNode("div", _hoisted_1$4, [
44889
+ createElementVNode("section", _hoisted_2$3, [
44890
+ createElementVNode("div", _hoisted_3$3, [
44236
44891
  createElementVNode("div", {
44237
44892
  class: normalizeClass(["zoom-out", unref(nowVal) == 50 && "disabled"]),
44238
44893
  onClick: _cache[0] || (_cache[0] = ($event) => zoomSize(1))
@@ -44247,7 +44902,7 @@ const _sfc_main$2 = {
44247
44902
  class: "box-scale",
44248
44903
  style: normalizeStyle(`transform: scale(${unref(nowVal) / 100});`)
44249
44904
  }, [
44250
- createVNode(_sfc_main$3, {
44905
+ createVNode(_sfc_main$5, {
44251
44906
  nodeConfig: unref(nodeConfig),
44252
44907
  "onUpdate:nodeConfig": _cache[2] || (_cache[2] = ($event) => isRef(nodeConfig) ? nodeConfig.value = $event : nodeConfig = $event)
44253
44908
  }, null, 8, ["nodeConfig"]),
@@ -44258,13 +44913,13 @@ const _sfc_main$2 = {
44258
44913
  ], 4)
44259
44914
  ])
44260
44915
  ]),
44261
- createVNode(_sfc_main$5, { directorMaxLevel: unref(directorMaxLevel) }, null, 8, ["directorMaxLevel"])
44916
+ createVNode(_sfc_main$7, { directorMaxLevel: unref(directorMaxLevel) }, null, 8, ["directorMaxLevel"])
44262
44917
  ], 64);
44263
44918
  };
44264
44919
  }
44265
44920
  };
44266
- _sfc_main$2.install = (App) => {
44267
- App.component(_sfc_main$2.__name, _sfc_main$2);
44921
+ _sfc_main$4.install = (App) => {
44922
+ App.component(_sfc_main$4.__name, _sfc_main$4);
44268
44923
  };
44269
44924
  const { message } = createDiscreteApi(["message"]);
44270
44925
  function warning(message2, options) {
@@ -44340,20 +44995,20 @@ function useMessage() {
44340
44995
  success: success.bind(ctx2)
44341
44996
  };
44342
44997
  }
44343
- 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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AAEAEACpAAMAAQQJAAIADgC5AAMAAQQJAAMAEADHAAMAAQQJAAQAEADXAAMAAQQJAAUAFgDnAAMAAQQJAAYAEAD9AAMAAQQJAAoAVgENAAMAAQQJAAsAJgFjQ3JlYXRlZCBieSBpY29uZm9udGljb25mb250UmVndWxhcmljb25mb250aWNvbmZvbnRWZXJzaW9uIDEuMGljb25mb250R2VuZXJhdGVkIGJ5IHN2ZzJ0dGYgZnJvbSBGb250ZWxsbyBwcm9qZWN0Lmh0dHA6Ly9mb250ZWxsby5jb20AQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdABpAGMAbwBuAGYAbwBuAHQAUgBlAGcAdQBsAGEAcgBpAGMAbwBuAGYAbwBuAHQAaQBjAG8AbgBmAG8AbgB0AFYAZQByAHMAaQBvAG4AIAAxAC4AMABpAGMAbwBuAGYAbwBuAHQARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABzAHYAZwAyAHQAdABmACAAZgByAG8AbQAgAEYAbwBuAHQAZQBsAGwAbwAgAHAAcgBvAGoAZQBjAHQALgBoAHQAdABwADoALwAvAGYAbwBuAHQAZQBsAGwAbwAuAGMAbwBtAAACAAAAAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsBAgEDAQQBBQEGAQcBCAEJAQoBCwEMAAd6aGFua2FpBnNob3VxaQ94aWFuZ3lvdWppYW50b3UPeGlhbmd6dW9qaWFudG91BnF1eGlhbwVwYWl4dQhjaGFvc29uZwxzaGVucGlndWFubGkHdGlhbmppYQ50aWFvamlhbmZlbnpoaQAA) 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')();
44344
- const _hoisted_1$1 = { class: "operation" };
44345
- const _hoisted_2$1 = { class: "operation_item" };
44346
- const _hoisted_3$1 = { class: "item_info" };
44347
- const _hoisted_4$1 = {
44998
+ 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-091c72ee]{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-091c72ee]:before{content:"\\e67e"}.icon-zhankai[data-v-091c72ee]:before{content:"\\e617"}.icon-shouqi[data-v-091c72ee]:before{content:"\\e619"}.icon-xiangyoujiantou[data-v-091c72ee]:before{content:"\\e65f"}.icon-xiangzuojiantou[data-v-091c72ee]:before{content:"\\e660"}.icon-quxiao[data-v-091c72ee]:before{content:"\\e627"}.icon-paixu[data-v-091c72ee]:before{content:"\\e7e9"}.icon-chaosong[data-v-091c72ee]:before{content:"\\e606"}.icon-shenpiguanli[data-v-091c72ee]:before{content:"\\e61e"}.icon-tianjia[data-v-091c72ee]:before{content:"\\e605"}.icon-tiaojianfenzhi[data-v-091c72ee]:before{content:"\\e68b"}.operation[data-v-091c72ee]{border:1px dashed #E3E3E9;margin:0 auto;max-width:1200px}.operation .operation_item[data-v-091c72ee]{display:flex;width:100%;flex-wrap:wrap;border-bottom:1px solid #EEEEEE}.operation .operation_item .item_label[data-v-091c72ee]{flex:0 0 160px;padding:16px 20px;background-color:#f5f6fa;border-left:1px solid #EEEEEE}.operation .operation_item .item_label span[data-v-091c72ee]{color:red}.operation .operation_item .item_info[data-v-091c72ee]{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-091c72ee]{padding:7px 20px}.operation .operation_item .item_info.opinion_input .n-input[data-v-091c72ee]{min-height:78px}.operation .operation_submit[data-v-091c72ee]{padding:20px 20px 20px 300px;position:sticky;display:flex;justify-content:center;align-items:center}.operation .operation_submit .n-button[data-v-091c72ee]{width:120px;height:30px;margin-right:80px}.operation .operation_submit .n-button[data-v-091c72ee]:first{margin-right:80px}.operation .operation_submit .collapse_btn[data-v-091c72ee]{margin-right:16px;cursor:pointer}.operation .operation_submit .collapse_tip[data-v-091c72ee]{color:#999}\n')();
44999
+ const _hoisted_1$3 = { class: "operation" };
45000
+ const _hoisted_2$2 = { class: "operation_item" };
45001
+ const _hoisted_3$2 = { class: "item_info" };
45002
+ const _hoisted_4$2 = {
44348
45003
  key: 0,
44349
45004
  class: "operation_item"
44350
45005
  };
44351
- const _hoisted_5$1 = { class: "item_info opinion_input" };
45006
+ const _hoisted_5$2 = { class: "item_info opinion_input" };
44352
45007
  const _hoisted_6$1 = {
44353
45008
  ref: "actionSubmit",
44354
45009
  class: "operation_submit"
44355
45010
  };
44356
- const _sfc_main$1 = {
45011
+ const _sfc_main$3 = {
44357
45012
  __name: "operation",
44358
45013
  props: {
44359
45014
  nodeConfig: {
@@ -44370,23 +45025,35 @@ const _sfc_main$1 = {
44370
45025
  const props = __props;
44371
45026
  const emits = __emit;
44372
45027
  let actionForm = ref$1({
44373
- type: null,
44374
- operation: ""
45028
+ value: null,
45029
+ comment: ""
44375
45030
  });
44376
45031
  let isCollapse = ref$1(false);
44377
45032
  let clickCollapse = ref$1(false);
44378
45033
  let isDisabled2 = ref$1(false);
45034
+ const jump_node = ref$1();
44379
45035
  function saveForm() {
44380
- if (!actionForm.value.type) {
45036
+ if (!actionForm.value.value) {
44381
45037
  warning2("\u8BF7\u9009\u62E9\u5BA1\u6279\u64CD\u4F5C");
44382
45038
  return;
44383
45039
  }
45040
+ if (jump_node.value) {
45041
+ actionForm.value.jump_node = jump_node.value;
45042
+ }
44384
45043
  emits("saveForm", actionForm.value);
44385
45044
  }
44386
45045
  function closeFn() {
44387
45046
  isCollapse.value = false;
44388
45047
  clickCollapse.value = false;
44389
45048
  }
45049
+ function changeType(val) {
45050
+ let active = props.nodeConfig.operations.find((item) => item.value === val);
45051
+ if (active.jump_nodes && active.jump_nodes.length) {
45052
+ jump_node.value = active.jump_nodes[0].node_key;
45053
+ } else {
45054
+ jump_node.value = void 0;
45055
+ }
45056
+ }
44390
45057
  watch(() => props.submitLoading, () => {
44391
45058
  if (props.submitLoading) {
44392
45059
  isDisabled2.value = true;
@@ -44400,17 +45067,20 @@ const _sfc_main$1 = {
44400
45067
  saveForm
44401
45068
  });
44402
45069
  return (_ctx, _cache) => {
44403
- return openBlock(), createElementBlock("div", _hoisted_1$1, [
45070
+ return openBlock(), createElementBlock("div", _hoisted_1$3, [
44404
45071
  !unref(isCollapse) || !unref(clickCollapse) ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
44405
- createElementVNode("div", _hoisted_2$1, [
45072
+ createElementVNode("div", _hoisted_2$2, [
44406
45073
  _cache[4] || (_cache[4] = createElementVNode("div", { class: "item_label" }, [
44407
45074
  createTextVNode(" \u5BA1\u6279\u64CD\u4F5C "),
44408
45075
  createElementVNode("span", { class: "color_red" }, "*")
44409
45076
  ], -1)),
44410
- createElementVNode("div", _hoisted_3$1, [
45077
+ createElementVNode("div", _hoisted_3$2, [
44411
45078
  createVNode(unref(NRadioGroup), {
44412
- value: unref(actionForm).type,
44413
- "onUpdate:value": _cache[0] || (_cache[0] = ($event) => unref(actionForm).type = $event),
45079
+ value: unref(actionForm).value,
45080
+ "onUpdate:value": [
45081
+ _cache[0] || (_cache[0] = ($event) => unref(actionForm).value = $event),
45082
+ changeType
45083
+ ],
44414
45084
  name: "action"
44415
45085
  }, {
44416
45086
  default: withCtx(() => [
@@ -44440,12 +45110,12 @@ const _sfc_main$1 = {
44440
45110
  }, 8, ["value"])
44441
45111
  ])
44442
45112
  ]),
44443
- unref(actionForm).type ? (openBlock(), createElementBlock("div", _hoisted_4$1, [
45113
+ unref(actionForm).value ? (openBlock(), createElementBlock("div", _hoisted_4$2, [
44444
45114
  _cache[5] || (_cache[5] = createElementVNode("div", { class: "item_label" }, " \u5BA1\u6279\u610F\u89C1 ", -1)),
44445
- createElementVNode("div", _hoisted_5$1, [
45115
+ createElementVNode("div", _hoisted_5$2, [
44446
45116
  createVNode(unref(NInput), {
44447
- value: unref(actionForm).operation,
44448
- "onUpdate:value": _cache[1] || (_cache[1] = ($event) => unref(actionForm).operation = $event),
45117
+ value: unref(actionForm).comment,
45118
+ "onUpdate:value": _cache[1] || (_cache[1] = ($event) => unref(actionForm).comment = $event),
44449
45119
  placeholder: "\u8BF7\u8F93\u5165\u5BA1\u6279\u610F\u89C1",
44450
45120
  type: "textarea",
44451
45121
  autosize: ""
@@ -44492,19 +45162,19 @@ const _sfc_main$1 = {
44492
45162
  };
44493
45163
  }
44494
45164
  };
44495
- var Operation = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-54731654"]]);
45165
+ var Operation = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-091c72ee"]]);
44496
45166
  Operation.install = (App) => {
44497
45167
  App.component(Operation.__name, Operation);
44498
45168
  };
44499
45169
  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')();
44500
- const _hoisted_1 = { class: "process_log_pop_main" };
44501
- const _hoisted_2 = {
45170
+ const _hoisted_1$2 = { class: "process_log_pop_main" };
45171
+ const _hoisted_2$1 = {
44502
45172
  class: "panel",
44503
45173
  style: { maxHeight: "680px" }
44504
45174
  };
44505
- const _hoisted_3 = { style: { "display": "flex" } };
44506
- const _hoisted_4 = { class: "title" };
44507
- const _hoisted_5 = {
45175
+ const _hoisted_3$1 = { style: { "display": "flex" } };
45176
+ const _hoisted_4$1 = { class: "title" };
45177
+ const _hoisted_5$1 = {
44508
45178
  key: 0,
44509
45179
  class: "fields"
44510
45180
  };
@@ -44532,7 +45202,7 @@ const _hoisted_14 = {
44532
45202
  const _hoisted_15 = { key: 0 };
44533
45203
  const _hoisted_16 = { class: "relatedAttachments" };
44534
45204
  const _hoisted_17 = { key: 0 };
44535
- const _sfc_main = {
45205
+ const _sfc_main$2 = {
44536
45206
  __name: "log",
44537
45207
  setup(__props, { expose: __expose }) {
44538
45208
  const showModal = ref$1(false);
@@ -44543,28 +45213,10 @@ const _sfc_main = {
44543
45213
  };
44544
45214
  const processLogData = ref$1([]);
44545
45215
  function show(logList) {
44546
- const list = logList;
44547
- const newList = [];
44548
- for (const item of list) {
44549
- if (!item.src_id) {
44550
- item.children = list.filter((v) => v.src_id !== 0 && v.src_id === item.id);
44551
- newList.push(item);
44552
- }
44553
- }
44554
- processLogData.value = mergeUsersWithSameNodeId(newList);
45216
+ processLogData.value = logList;
45217
+ console.log(processLogData.value);
44555
45218
  showModal.value = true;
44556
45219
  }
44557
- function mergeUsersWithSameNodeId(inputList) {
44558
- const nodeMap = /* @__PURE__ */ new Map();
44559
- inputList.forEach((item) => {
44560
- const nodeId = item.type === 12 ? item.node_id : new Date().getTime();
44561
- if (nodeMap.has(nodeId))
44562
- nodeMap.get(nodeId).users.push(...item.users || []);
44563
- else
44564
- nodeMap.set(nodeId, { ...item, users: item.users ? [...item.users] : [] });
44565
- });
44566
- return Array.from(nodeMap.values());
44567
- }
44568
45220
  function close() {
44569
45221
  showModal.value = false;
44570
45222
  }
@@ -44594,8 +45246,8 @@ const _sfc_main = {
44594
45246
  ]),
44595
45247
  footer: withCtx(() => _cache[13] || (_cache[13] = [])),
44596
45248
  default: withCtx(() => [
44597
- createElementVNode("div", _hoisted_1, [
44598
- createElementVNode("div", _hoisted_2, [
45249
+ createElementVNode("div", _hoisted_1$2, [
45250
+ createElementVNode("div", _hoisted_2$1, [
44599
45251
  (openBlock(true), createElementBlock(Fragment, null, renderList(processLogData.value, (item, index2) => {
44600
45252
  var _a2;
44601
45253
  return openBlock(), createElementBlock("div", {
@@ -44605,9 +45257,9 @@ const _sfc_main = {
44605
45257
  createElementVNode("div", {
44606
45258
  class: normalizeClass(["node", { active: item.type === 12 }])
44607
45259
  }, [
44608
- createElementVNode("div", _hoisted_3, [
44609
- createElementVNode("div", _hoisted_4, toDisplayString(item.node_name), 1),
44610
- item.type === 1 ? (openBlock(), createElementBlock("div", _hoisted_5, [
45260
+ createElementVNode("div", _hoisted_3$1, [
45261
+ createElementVNode("div", _hoisted_4$1, toDisplayString(item.node_name), 1),
45262
+ item.type === 1 ? (openBlock(), createElementBlock("div", _hoisted_5$1, [
44611
45263
  createElementVNode("div", null, [
44612
45264
  _cache[1] || (_cache[1] = createElementVNode("div", null, "\u63D0\u4EA4\u4EBA\uFF1A", -1)),
44613
45265
  createElementVNode("div", null, toDisplayString(`${item.user.name} ${item.user.department_name}`), 1)
@@ -44699,14 +45351,281 @@ const _sfc_main = {
44699
45351
  };
44700
45352
  }
44701
45353
  };
45354
+ _sfc_main$2.install = (App) => {
45355
+ App.component(_sfc_main$2.__name, _sfc_main$2);
45356
+ };
45357
+ 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")();
45358
+ const _hoisted_1$1 = { class: "select_approval" };
45359
+ const _hoisted_2 = { class: "approval_depart" };
45360
+ const _hoisted_3 = ["onClick"];
45361
+ const _hoisted_4 = { class: "user_list" };
45362
+ const _hoisted_5 = { class: "select_approval_footer" };
45363
+ const _sfc_main$1 = defineComponent({
45364
+ __name: "nextNode",
45365
+ props: ["assigneeList", "node", "isSubmitEnd"],
45366
+ emits: ["submitNextNode"],
45367
+ setup(__props, { expose: __expose, emit: __emit }) {
45368
+ const props = __props;
45369
+ const emits = __emit;
45370
+ const showModal = ref$1(false);
45371
+ ref$1();
45372
+ const checkAll = ref$1(false);
45373
+ const assigneeList = ref$1([]);
45374
+ const nextCurrentNodeId = ref$1(null);
45375
+ watch(() => props.assigneeList, (val) => {
45376
+ var _a2;
45377
+ assigneeList.value = val.map((v) => {
45378
+ let isCheck = v.require_assignee;
45379
+ if (defaultSelectAll(isCheck))
45380
+ isCheck = false;
45381
+ return {
45382
+ ...v,
45383
+ check: isCheck ? [] : v.assignee.map((j) => j.id)
45384
+ };
45385
+ });
45386
+ nextCurrentNodeId.value = ((_a2 = val[0]) == null ? void 0 : _a2.node_id) || null;
45387
+ });
45388
+ const checkAllDisabled = computed(() => {
45389
+ const currentInfo = assigneeList.value.find((item) => nextCurrentNodeId.value === item.node_id);
45390
+ if (currentInfo) {
45391
+ (!currentInfo.require_assignee || defaultSelectAll(currentInfo.require_assignee)) && (checkAll.value = true);
45392
+ return !currentInfo.require_assignee;
45393
+ }
45394
+ });
45395
+ function show() {
45396
+ showModal.value = true;
45397
+ }
45398
+ function close() {
45399
+ showModal.value = false;
45400
+ }
45401
+ function setCheckAll(val) {
45402
+ for (const item of assigneeList.value) {
45403
+ if (nextCurrentNodeId.value === item.node_id) {
45404
+ if (!item.require_assignee)
45405
+ return;
45406
+ if (val)
45407
+ item.check = item.assignee.map((j) => j.id);
45408
+ else
45409
+ item.check = [];
45410
+ }
45411
+ }
45412
+ }
45413
+ function changeNode(item) {
45414
+ nextCurrentNodeId.value = item.node_id;
45415
+ checkAll.value = item.check.length === item.assignee.length;
45416
+ }
45417
+ function submit() {
45418
+ const assignee = {};
45419
+ for (const item of assigneeList.value)
45420
+ assignee[item.node_id] = item.check;
45421
+ emits("submitNextNode", {
45422
+ assignee
45423
+ });
45424
+ }
45425
+ function checkCheckAll() {
45426
+ var _a2, _b;
45427
+ const info = assigneeList.value.find((item) => item.node_id === nextCurrentNodeId.value);
45428
+ 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;
45429
+ }
45430
+ function setValue(item) {
45431
+ if (item.max_assignee && item.check.length > item.max_assignee)
45432
+ item.check = item.check.splice(item.max_assignee * -1);
45433
+ checkCheckAll();
45434
+ }
45435
+ function defaultSelectAll(require_assignee) {
45436
+ return require_assignee === 2;
45437
+ }
45438
+ function handleShowUpdate(val) {
45439
+ if (!val)
45440
+ close();
45441
+ }
45442
+ __expose({
45443
+ show,
45444
+ close,
45445
+ submit
45446
+ });
45447
+ return (_ctx, _cache) => {
45448
+ const _component_n_popover = resolveComponent("n-popover");
45449
+ return openBlock(), createBlock(unref(NModal), {
45450
+ show: showModal.value,
45451
+ title: "\u8BF7\u8BBE\u7F6E\u4E0B\u4E00\u4E2A\u8282\u70B9\u5BA1\u6279\u4EBA",
45452
+ style: { width: "800px" },
45453
+ preset: "card",
45454
+ "onUpdate:show": handleShowUpdate
45455
+ }, {
45456
+ footer: withCtx(() => [
45457
+ createElementVNode("div", _hoisted_5, [
45458
+ createVNode(unref(NButton), { onClick: close }, {
45459
+ default: withCtx(() => _cache[2] || (_cache[2] = [
45460
+ createTextVNode(" \u8FD4\u56DE\u4FEE\u6539 ")
45461
+ ])),
45462
+ _: 1
45463
+ }),
45464
+ createVNode(unref(NButton), {
45465
+ type: "primary",
45466
+ disabled: __props.isSubmitEnd,
45467
+ onClick: submit
45468
+ }, {
45469
+ default: withCtx(() => _cache[3] || (_cache[3] = [
45470
+ createTextVNode(" \u786E\u8BA4 ")
45471
+ ])),
45472
+ _: 1
45473
+ }, 8, ["disabled"])
45474
+ ])
45475
+ ]),
45476
+ default: withCtx(() => [
45477
+ createElementVNode("div", _hoisted_1$1, [
45478
+ createElementVNode("div", _hoisted_2, [
45479
+ (openBlock(true), createElementBlock(Fragment, null, renderList(assigneeList.value, (item) => {
45480
+ return openBlock(), createElementBlock("span", {
45481
+ key: item.node_id,
45482
+ class: normalizeClass(nextCurrentNodeId.value === item.node_id ? "active" : ""),
45483
+ style: normalizeStyle(assigneeList.value.length > 1 ? "cursor: pointer;" : ""),
45484
+ onClick: ($event) => changeNode(item)
45485
+ }, toDisplayString(item.node_name), 15, _hoisted_3);
45486
+ }), 128)),
45487
+ createVNode(unref(NCheckbox), {
45488
+ checked: checkAll.value,
45489
+ "onUpdate:checked": _cache[0] || (_cache[0] = ($event) => checkAll.value = $event),
45490
+ disabled: checkAllDisabled.value,
45491
+ onChange: setCheckAll
45492
+ }, {
45493
+ default: withCtx(() => _cache[1] || (_cache[1] = [
45494
+ createTextVNode(" \u5168\u9009 ")
45495
+ ])),
45496
+ _: 1
45497
+ }, 8, ["checked", "disabled"])
45498
+ ]),
45499
+ createElementVNode("div", _hoisted_4, [
45500
+ (openBlock(true), createElementBlock(Fragment, null, renderList(assigneeList.value, (item) => {
45501
+ return openBlock(), createElementBlock(Fragment, {
45502
+ key: item.node_id
45503
+ }, [
45504
+ item.node_id === nextCurrentNodeId.value ? (openBlock(), createBlock(unref(NCheckboxGroup), {
45505
+ key: 0,
45506
+ value: item.check,
45507
+ "onUpdate:value": [($event) => item.check = $event, ($event) => setValue(item)]
45508
+ }, {
45509
+ default: withCtx(() => [
45510
+ createVNode(unref(NGrid), {
45511
+ "y-gap": "20",
45512
+ "x-gap": "10",
45513
+ cols: 2
45514
+ }, {
45515
+ default: withCtx(() => [
45516
+ (openBlock(true), createElementBlock(Fragment, null, renderList(item.assignee, (user) => {
45517
+ return openBlock(), createBlock(unref(NGi), {
45518
+ key: user.id
45519
+ }, {
45520
+ default: withCtx(() => [
45521
+ user.department_name.length > 16 ? (openBlock(), createBlock(_component_n_popover, {
45522
+ key: 0,
45523
+ trigger: "hover"
45524
+ }, {
45525
+ trigger: withCtx(() => [
45526
+ createVNode(unref(NCheckbox), {
45527
+ value: user.id,
45528
+ label: `${user.name}\uFF08${user.department_name.slice(0, 15)}...\uFF09`,
45529
+ disabled: !item.require_assignee
45530
+ }, null, 8, ["value", "label", "disabled"])
45531
+ ]),
45532
+ default: withCtx(() => [
45533
+ createElementVNode("span", null, toDisplayString(user.department_name), 1)
45534
+ ]),
45535
+ _: 2
45536
+ }, 1024)) : (openBlock(), createBlock(unref(NCheckbox), {
45537
+ key: 1,
45538
+ value: user.id,
45539
+ label: `${user.name}${user.department_name ? `\uFF08${user.department_name}\uFF09` : ""}`,
45540
+ disabled: !item.require_assignee
45541
+ }, null, 8, ["value", "label", "disabled"]))
45542
+ ]),
45543
+ _: 2
45544
+ }, 1024);
45545
+ }), 128))
45546
+ ]),
45547
+ _: 2
45548
+ }, 1024)
45549
+ ]),
45550
+ _: 2
45551
+ }, 1032, ["value", "onUpdate:value"])) : createCommentVNode("", true)
45552
+ ], 64);
45553
+ }), 128))
45554
+ ])
45555
+ ])
45556
+ ]),
45557
+ _: 1
45558
+ }, 8, ["show"]);
45559
+ };
45560
+ }
45561
+ });
45562
+ _sfc_main$1.install = (App) => {
45563
+ App.component(_sfc_main$1.__name, _sfc_main$1);
45564
+ };
45565
+ 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")();
45566
+ const _hoisted_1 = { class: "process_flow_main" };
45567
+ const _sfc_main = {
45568
+ __name: "flow",
45569
+ setup(__props, { expose: __expose }) {
45570
+ const showModal = ref$1(false);
45571
+ const lcyqRef = ref$1(null);
45572
+ function show(json) {
45573
+ showModal.value = true;
45574
+ nextTick(() => {
45575
+ lcyqRef.value.setValue(json);
45576
+ });
45577
+ }
45578
+ function close() {
45579
+ showModal.value = false;
45580
+ }
45581
+ __expose({
45582
+ show
45583
+ });
45584
+ return (_ctx, _cache) => {
45585
+ return openBlock(), createBlock(unref(NModal), {
45586
+ show: showModal.value,
45587
+ title: "\u6D41\u7A0B\u56FE",
45588
+ "transform-origin": "center",
45589
+ "mask-closable": false,
45590
+ preset: "card",
45591
+ closable: false,
45592
+ class: "process_flow"
45593
+ }, {
45594
+ "header-extra": withCtx(() => [
45595
+ createVNode(unref(NButton), {
45596
+ type: "primary",
45597
+ onClick: close
45598
+ }, {
45599
+ default: withCtx(() => _cache[0] || (_cache[0] = [
45600
+ createTextVNode(" \u5173\u95ED ")
45601
+ ])),
45602
+ _: 1
45603
+ })
45604
+ ]),
45605
+ footer: withCtx(() => _cache[1] || (_cache[1] = [])),
45606
+ default: withCtx(() => [
45607
+ createElementVNode("div", _hoisted_1, [
45608
+ showModal.value ? (openBlock(), createBlock(_sfc_main$4, {
45609
+ key: 0,
45610
+ ref_key: "lcyqRef",
45611
+ ref: lcyqRef,
45612
+ disabled: ""
45613
+ }, null, 512)) : createCommentVNode("", true)
45614
+ ])
45615
+ ]),
45616
+ _: 1
45617
+ }, 8, ["show"]);
45618
+ };
45619
+ }
45620
+ };
44702
45621
  _sfc_main.install = (App) => {
44703
45622
  App.component(_sfc_main.__name, _sfc_main);
44704
45623
  };
44705
- const components = [_sfc_main$2, Operation, _sfc_main];
45624
+ const components = [_sfc_main$4, Operation, _sfc_main$2, _sfc_main$1, _sfc_main];
44706
45625
  const install = (App) => {
44707
45626
  components.forEach((item) => {
44708
45627
  App.component(item.__name, item);
44709
45628
  });
44710
45629
  };
44711
45630
  var index = { install };
44712
- export { index as default, _sfc_main$2 as lcyq, _sfc_main as log, Operation as operation };
45631
+ 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 };