zl-lcyq 1.3.1 → 1.3.2

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
@@ -33687,15 +33687,18 @@ const _sfc_main$8 = {
33687
33687
  }
33688
33688
  },
33689
33689
  setup(__props) {
33690
+ let store = useStore();
33690
33691
  const props = __props;
33691
33692
  const { nowValue } = usePlugin(props.info);
33692
33693
  const formAuthCom = inject("formAuthCom");
33693
33694
  const formAuthComRef = ref$1();
33695
+ let drawerConfig2 = computed(() => store.drawerConfig);
33694
33696
  const isSet2 = computed(() => {
33695
33697
  return nowValue.value && Object.values(nowValue.value).length;
33696
33698
  });
33697
33699
  function open() {
33698
- formAuthComRef.value.show(_.cloneDeep(_.isPlainObject(nowValue.value) ? nowValue.value : {}));
33700
+ console.log(drawerConfig2.value);
33701
+ formAuthComRef.value.show(_.cloneDeep(_.isPlainObject(nowValue.value) ? nowValue.value : {}), drawerConfig2.value);
33699
33702
  }
33700
33703
  function updateP(val) {
33701
33704
  nowValue.value = val;