diff --git a/src/pages/05_quotation/MainPage.vue b/src/pages/05_quotation/MainPage.vue index 86b9f3ba..e19c223d 100644 --- a/src/pages/05_quotation/MainPage.vue +++ b/src/pages/05_quotation/MainPage.vue @@ -2,20 +2,11 @@ import { ref } from 'vue'; import QuatationForm from './QuatationForm.vue'; -import FormDialog from 'components/FormDialog.vue'; -import HistoryEditComponent from 'components/03_customer-management/HistoryEditComponent.vue'; - -const test = ref(true); +const isOpen = ref(true); diff --git a/src/pages/05_quotation/QuatationForm.vue b/src/pages/05_quotation/QuatationForm.vue index cd0b3ff3..aac01f86 100644 --- a/src/pages/05_quotation/QuatationForm.vue +++ b/src/pages/05_quotation/QuatationForm.vue @@ -6,7 +6,7 @@ import MainDialog from 'components/05_quotation/MainDialog.vue'; import WorkerItem from 'components/05_quotation/WorkerItem.vue'; import AppBox from 'components/app/AppBox.vue'; -const dialogState = ref(true); +const dialogState = defineModel({ default: true }); const selectedBranchIssuer = ref(''); const selectedCustomer = ref(''); @@ -15,14 +15,18 @@ const toggleWorker = ref(true);