diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 98b02d11..778b9f3d 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -49,7 +49,7 @@ import ImageUploadDialog from 'components/ImageUploadDialog.vue'; import FormEmployeeHealthCheck from 'components/03_customer-management/FormEmployeeHealthCheck.vue'; import FormEmployeeWorkHistory from 'components/03_customer-management/FormEmployeeWorkHistory.vue'; import FormEmployeeOther from 'components/03_customer-management/FormEmployeeOther.vue'; -import useOptionStore from 'src/stores/options'; +import useOptionStore from 'stores/options'; import { DialogContainer, DialogHeader } from 'components/dialog'; const { t, locale } = useI18n(); diff --git a/src/pages/03_customer-management/form.ts b/src/pages/03_customer-management/form.ts index 4ff4983d..634c2092 100644 --- a/src/pages/03_customer-management/form.ts +++ b/src/pages/03_customer-management/form.ts @@ -3,13 +3,13 @@ import { defineStore } from 'pinia'; import { CustomerBranchCreate, CustomerCreate, -} from 'src/stores/customer/types'; -import { Employee, EmployeeCreate } from 'src/stores/employee/types'; +} from 'stores/customer/types'; +import { Employee, EmployeeCreate } from 'stores/employee/types'; -import useMyBranch from 'src/stores/my-branch'; -import useCustomerStore from 'src/stores/customer'; -import useEmployeeStore from 'src/stores/employee'; -import useFlowStore from 'src/stores/flow'; +import useMyBranch from 'stores/my-branch'; +import useCustomerStore from 'stores/customer'; +import useEmployeeStore from 'stores/employee'; +import useFlowStore from 'stores/flow'; export const useCustomerForm = defineStore('form-customer', () => { const apiBaseUrl = import.meta.env.VITE_API_BASE_URL;