Relocated services
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, reactive, ref, watch } from 'vue';
|
import { onMounted, reactive, ref, watch } from 'vue';
|
||||||
import ProductService from '@/layout/service/ProductService';
|
import ProductService from '@/service/ProductService';
|
||||||
import { useLayout } from '@/layout/composables/layout';
|
import { useLayout } from '@/layout/composables/layout';
|
||||||
|
|
||||||
const { isDarkTheme, contextPath } = useLayout();
|
const { isDarkTheme, contextPath } = useLayout();
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { FilterMatchMode } from 'primevue/api';
|
import { FilterMatchMode } from 'primevue/api';
|
||||||
import { ref, onMounted, onBeforeMount } from 'vue';
|
import { ref, onMounted, onBeforeMount } from 'vue';
|
||||||
import ProductService from '@/layout/service/ProductService';
|
import ProductService from '@/service/ProductService';
|
||||||
import { useToast } from 'primevue/usetoast';
|
import { useToast } from 'primevue/usetoast';
|
||||||
import { useLayout } from '@/layout/composables/layout';
|
import { useLayout } from '@/layout/composables/layout';
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
import CountryService from '@/layout/service/CountryService';
|
import CountryService from '@/service/CountryService';
|
||||||
|
|
||||||
const countries = ref([]);
|
const countries = ref([]);
|
||||||
const cities = ref([
|
const cities = ref([
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
import CountryService from '@/layout/service/CountryService';
|
import CountryService from '@/service/CountryService';
|
||||||
import NodeService from '@/layout/service/NodeService';
|
import NodeService from '@/service/NodeService';
|
||||||
|
|
||||||
const floatValue = ref(null);
|
const floatValue = ref(null);
|
||||||
const autoValue = ref(null);
|
const autoValue = ref(null);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
import CountryService from '@/layout/service/CountryService';
|
import CountryService from '@/service/CountryService';
|
||||||
|
|
||||||
const countries = ref(null);
|
const countries = ref(null);
|
||||||
const filteredCountries = ref(null);
|
const filteredCountries = ref(null);
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
import ProductService from '@/layout/service/ProductService';
|
import ProductService from '@/service/ProductService';
|
||||||
import { useLayout } from '@/layout/composables/layout';
|
import { useLayout } from '@/layout/composables/layout';
|
||||||
|
|
||||||
const { contextPath } = useLayout();
|
const { contextPath } = useLayout();
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import ProductService from '@/layout/service/ProductService';
|
import ProductService from '@/service/ProductService';
|
||||||
import PhotoService from '@/layout/service/PhotoService';
|
import PhotoService from '@/service/PhotoService';
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
import { useLayout } from '@/layout/composables/layout';
|
import { useLayout } from '@/layout/composables/layout';
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import ProductService from '@/layout/service/ProductService';
|
import ProductService from '@/service/ProductService';
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from 'vue';
|
||||||
import { useToast } from 'primevue/usetoast';
|
import { useToast } from 'primevue/usetoast';
|
||||||
import { useConfirm } from 'primevue/useconfirm';
|
import { useConfirm } from 'primevue/useconfirm';
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { FilterMatchMode, FilterOperator } from 'primevue/api';
|
import { FilterMatchMode, FilterOperator } from 'primevue/api';
|
||||||
import CustomerService from '@/layout/service/CustomerService';
|
import CustomerService from '@/service/CustomerService';
|
||||||
import ProductService from '@/layout/service/ProductService';
|
import ProductService from '@/service/ProductService';
|
||||||
import { ref, onBeforeMount } from 'vue';
|
import { ref, onBeforeMount } from 'vue';
|
||||||
import { useLayout } from '@/layout/composables/layout';
|
import { useLayout } from '@/layout/composables/layout';
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import NodeService from '@/layout/service/NodeService';
|
import NodeService from '@/service/NodeService';
|
||||||
import { onMounted, ref } from 'vue';
|
import { onMounted, ref } from 'vue';
|
||||||
|
|
||||||
const treeValue = ref(null);
|
const treeValue = ref(null);
|
||||||
|
|||||||
Reference in New Issue
Block a user