gerson
2024-09-08 18aeed6ed17a3aeacc157e0019159957aeaec556
src/views/project/yw/lowCode/sqlAmis/optDlg/OptDlg.vue
@@ -81,7 +81,7 @@
import { useUserInfo } from '/@/stores/userInfo';
import { storeToRefs } from 'pinia';
const props = defineProps(['item']);
const props = defineProps(['item', 'groupId']);
const emit = defineEmits(['update', 'insert']);
//#region ====================== 增加、修改记录操作, dialog init======================
const isEditDialog = ref(false);
@@ -110,7 +110,7 @@
   } else {
      isEditDialog.value = false;
      dialogFormValue.value = { title: null, prompt: null, note: null, args: [] };
      dialogFormValue.value = { group: props.groupId, title: null, prompt: null, note: null, args: [] };
   }
};
const closeDialog = () => {