refactor: use alias
This commit is contained in:
parent
f9494dc845
commit
be7a036b8d
31 changed files with 77 additions and 77 deletions
|
|
@ -22,7 +22,7 @@ import TotalProductCardComponent from 'components/04_product-service/TotalProduc
|
|||
import FormServiceWork from 'components/04_product-service/FormServiceWork.vue';
|
||||
import ServiceProperties from 'components/04_product-service/ServiceProperties.vue';
|
||||
import WorkNameManagement from 'components/04_product-service/WorkNameManagement.vue';
|
||||
import useOptionStore from 'src/stores/options';
|
||||
import useOptionStore from 'stores/options';
|
||||
import FormServiceProperties from 'components/04_product-service/FormServiceProperties.vue';
|
||||
import InfoForm from 'components/02_personnel-management/InfoForm.vue';
|
||||
import NoData from 'components/NoData.vue';
|
||||
|
|
@ -33,21 +33,21 @@ import ProfileBanner from 'components/ProfileBanner.vue';
|
|||
import SideMenu from 'components/SideMenu.vue';
|
||||
import ImageUploadDialog from 'components/ImageUploadDialog.vue';
|
||||
|
||||
import useFlowStore from 'src/stores/flow';
|
||||
import useMyBranchStore from 'src/stores/my-branch';
|
||||
import useFlowStore from 'stores/flow';
|
||||
import useMyBranchStore from 'stores/my-branch';
|
||||
|
||||
import { dateFormat } from 'src/utils/datetime';
|
||||
import { formatNumberDecimal } from 'src/stores/utils';
|
||||
import { formatNumberDecimal } from 'stores/utils';
|
||||
|
||||
const userBranchStore = useMyBranchStore();
|
||||
|
||||
const { currentMyBranch } = storeToRefs(userBranchStore);
|
||||
|
||||
import { Status } from 'src/stores/types';
|
||||
import { Status } from 'stores/types';
|
||||
|
||||
import useUtilsStore, { dialog, dialogWarningClose } from 'src/stores/utils';
|
||||
import useUtilsStore, { dialog, dialogWarningClose } from 'stores/utils';
|
||||
|
||||
import useProductServiceStore from 'src/stores/product-service';
|
||||
import useProductServiceStore from 'stores/product-service';
|
||||
import {
|
||||
ProductGroup,
|
||||
ProductGroupCreate,
|
||||
|
|
@ -59,7 +59,7 @@ import {
|
|||
WorkItems,
|
||||
Attributes,
|
||||
ServiceAndProduct,
|
||||
} from 'src/stores/product-service/types';
|
||||
} from 'stores/product-service/types';
|
||||
import { computed } from 'vue';
|
||||
|
||||
const flowStore = useFlowStore();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue