- pagine RISO
This commit is contained in:
@@ -3,7 +3,7 @@ import { useI18n } from 'vue-i18n'
|
||||
|
||||
import { tools } from '../../store/Modules/tools'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
|
||||
@@ -5,9 +5,9 @@ import { useUserStore } from '@store/UserStore'
|
||||
import { useQuasar } from 'quasar'
|
||||
import type { IAccomodation} from 'model';
|
||||
import { IGallery, IImgGallery } from 'model'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { tools } from '@tools'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { costanti } from '@costanti'
|
||||
import { CMySelect } from '../CMySelect'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { defineComponent, onMounted, ref, toRef, watch, toRefs } from 'vue'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
@@ -5,7 +5,7 @@ import { tools } from '../../store/Modules/tools'
|
||||
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
import type {
|
||||
ISearchList
|
||||
@@ -35,11 +35,11 @@ import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useQuasar, exportFile } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import translate from '@src/globalroutines/util'
|
||||
import translate from '@/globalroutines/util'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { CMyCardPopup } from '@src/components/CMyCardPopup'
|
||||
import { CMyCardGrpPopup } from '@src/components/CMyCardGrpPopup'
|
||||
import { CMyCardCircuitPopup } from '@src/components/CMyCardCircuitPopup'
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
||||
import { CMyCardGrpPopup } from '@/components/CMyCardGrpPopup'
|
||||
import { CMyCardCircuitPopup } from '@/components/CMyCardCircuitPopup'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { table } from 'console'
|
||||
import { globals } from 'jest.config'
|
||||
|
||||
@@ -6,9 +6,9 @@ import { IOperators, ISize } from 'model'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useQuasar } from 'quasar'
|
||||
|
||||
import { CMySlider } from '@src/components/CMySlider'
|
||||
import { CMySlider } from '@/components/CMySlider'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CBorders',
|
||||
|
||||
@@ -2,9 +2,9 @@ import { ref, computed, defineComponent, onMounted } from 'vue';
|
||||
import { useQuasar } from 'quasar';
|
||||
|
||||
import { tools } from '@tools';
|
||||
import { IMyCard, IMyPage, IOperators } from '@src/model';
|
||||
import { IMyCard, IMyPage, IOperators } from '@/model';
|
||||
|
||||
import objectId from '@src/js/objectId';
|
||||
import objectId from '@/js/objectId';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ElementComponent',
|
||||
|
||||
@@ -6,7 +6,7 @@ import type { IDiscipline, IEvents } from 'model'
|
||||
|
||||
import { useCalendarStore } from '@store/CalendarStore'
|
||||
|
||||
import { CMyTeacher } from '@src/components/CMyTeacher'
|
||||
import { CMyTeacher } from '@/components/CMyTeacher'
|
||||
|
||||
// @ts-ignore
|
||||
import MixinOperator from '../../mixins/mixin-operator'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { CCard } from '@src/components/CCard'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import MixinOperator from '../../mixins/mixin-operator'
|
||||
import { defineComponent, ref } from 'vue'
|
||||
|
||||
|
||||
@@ -8,14 +8,14 @@ import { useI18n } from 'vue-i18n';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { costanti } from '@costanti';
|
||||
import type { ICart, IOrder, IOrderCart, IProduct } from '@src/model/Products';
|
||||
import { IShareWithUs } from '@src/model/Products';
|
||||
import type { ICart, IOrder, IOrderCart, IProduct } from '@/model/Products';
|
||||
import { IShareWithUs } from '@/model/Products';
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
|
||||
import { CSingleCart } from '../CSingleCart';
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner';
|
||||
import { CSelectUserActive } from '@src/components/CSelectUserActive';
|
||||
import { CTitleBanner } from '@/components/CTitleBanner';
|
||||
import { CSelectUserActive } from '@/components/CSelectUserActive';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CCart',
|
||||
|
||||
@@ -12,13 +12,13 @@ import {
|
||||
} from 'vue';
|
||||
|
||||
import { tools } from '@tools';
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb';
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb';
|
||||
import { costanti } from '@costanti';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { useUserStore } from '@store/UserStore';
|
||||
|
||||
import { CTitlePage } from '@src/components/CTitlePage';
|
||||
import { CGridTableRec } from '@src/components/CGridTableRec';
|
||||
import { CTitlePage } from '@/components/CTitlePage';
|
||||
import { CGridTableRec } from '@/components/CGridTableRec';
|
||||
import type { ICatalog, IColGridTable, INewCatalog, ISearchList } from 'model';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import type { PropType} from 'vue';
|
||||
import { defineComponent, ref, watch } from 'vue'
|
||||
|
||||
import { Catalogo } from '@src/views/ecommerce/catalogo'
|
||||
import type { IOptCatalogo } from '@src/model'
|
||||
import { Catalogo } from '@/views/ecommerce/catalogo'
|
||||
import type { IOptCatalogo } from '@/model'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CCatalogo',
|
||||
|
||||
@@ -21,9 +21,9 @@ import { CViewTable } from '../CViewTable';
|
||||
import { CMyValueDb } from '../CMyValueDb';
|
||||
import { CPrice } from '../CPrice';
|
||||
import { CText } from '../CText';
|
||||
import { CLabel } from '@src/components/CLabel';
|
||||
import { CSchedaProdotto } from '@src/components/CSchedaProdotto';
|
||||
import { CModifTrafiletto } from '@src/components/CModifTrafiletto';
|
||||
import { CLabel } from '@/components/CLabel';
|
||||
import { CSchedaProdotto } from '@/components/CSchedaProdotto';
|
||||
import { CModifTrafiletto } from '@/components/CModifTrafiletto';
|
||||
|
||||
import { CBarCode } from '../CBarCode';
|
||||
import { CTableCupleLabelValue } from '../CTableCupleLabelValue';
|
||||
@@ -40,12 +40,12 @@ import type {
|
||||
IVariazione,
|
||||
IRecFields,
|
||||
ICatalog,
|
||||
} from '@src/model';
|
||||
import { IBaseOrder } from '@src/model';
|
||||
} from '@/model';
|
||||
import { IBaseOrder } from '@/model';
|
||||
import { tools } from '@tools';
|
||||
import { useProducts } from '@store/Products';
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { useRouter } from 'vue-router';
|
||||
|
||||
import { costanti } from '@costanti';
|
||||
|
||||
@@ -5,8 +5,8 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@store/Modules/costanti'
|
||||
import { static_data } from '@src/db/static_data'
|
||||
import { CRegistration } from '@src/components/CRegistration'
|
||||
import { static_data } from '@/db/static_data'
|
||||
import { CRegistration } from '@/components/CRegistration'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CCheckIfIsLogged',
|
||||
|
||||
@@ -6,9 +6,9 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import type { PropType} from 'vue';
|
||||
import { defineComponent, computed, ref } from 'vue'
|
||||
import type { IUserFields } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { CLabel } from '@src/components/CLabel'
|
||||
import { CSendCoins } from '@src/components/CSendCoins'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { CLabel } from '@/components/CLabel'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CContactUser',
|
||||
|
||||
@@ -12,11 +12,11 @@ import { func_tools, toolsext } from '@store/Modules/toolsext'
|
||||
import { tools } from '@tools'
|
||||
import { useProducts } from '@store/Products'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { useRouter } from 'vue-router'
|
||||
|
||||
import { costanti } from '@costanti'
|
||||
import type { IOptCatalogo, IMyScheda, IProduct, ICatalog } from '@src/model'
|
||||
import type { IOptCatalogo, IMyScheda, IProduct, ICatalog } from '@/model'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -4,7 +4,7 @@ import { useI18n } from 'vue-i18n'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { defineComponent } from 'vue'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CCopyBtnSmall',
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { defineComponent, onMounted, PropType, ref, watch } from 'vue'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
import { date, useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { CCurrencyValue } from '@src/components/CCurrencyValue'
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CCurrencyValue } from '@/components/CCurrencyValue'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
|
||||
|
||||
import { costanti } from '@costanti'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { defineComponent, onMounted, PropType, ref, watch } from 'vue'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
import { date, useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
@@ -6,7 +6,7 @@ import { useRouter } from 'vue-router'
|
||||
import { useGlobalStore } from '../../store/globalStore'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import type { IMainCard } from '@store/Modules/costanti';
|
||||
import { costanti } from '@store/Modules/costanti'
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ import { useRouter } from 'vue-router'
|
||||
import { useGlobalStore } from '../../store/globalStore'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import type { IMainCard } from '@costanti';
|
||||
import { costanti } from '@costanti'
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { defineComponent, onMounted, PropType, ref, watch } from 'vue'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
import { date, useQuasar } from 'quasar'
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { defineComponent, ref, watch, computed } from 'vue';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { tools } from '@src/store/Modules/tools';
|
||||
import { tools } from '@/store/Modules/tools';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { defineComponent, ref, watch, computed } from 'vue';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { tools } from '@src/store/Modules/tools';
|
||||
import { tools } from '@/store/Modules/tools';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
|
||||
function toTS(s: string | null): number | null {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
import { ProductsList } from '@src/views/ecommerce'
|
||||
import { ProductsList } from '@/views/ecommerce'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CECommerce',
|
||||
|
||||
@@ -198,7 +198,7 @@ $gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
|
||||
.stat-value {
|
||||
letter-spacing: -0.03em;
|
||||
font-size: 2rem;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 800;
|
||||
background: $gradient-primary;
|
||||
-webkit-background-clip: text;
|
||||
|
||||
@@ -12,10 +12,10 @@ import { LandingFooter } from '../LandingFooter'
|
||||
import { CTitle } from '../CTitle'
|
||||
import { CImgText } from '../CImgText'
|
||||
import { CMyEditor } from '../CMyEditor'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { CMyAvatar } from '../CMyAvatar'
|
||||
import { CMySingleEvent } from '@src/components/CMySingleEvent'
|
||||
import { CMyTeacher } from '@src/components/CMyTeacher'
|
||||
import { CMySingleEvent } from '@/components/CMySingleEvent'
|
||||
import { CMyTeacher } from '@/components/CMyTeacher'
|
||||
import { CMySelect } from '../CMySelect'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@costanti'
|
||||
@@ -26,10 +26,10 @@ import MixinEvents from '../../mixins/mixin-events'
|
||||
import { useCalendarStore } from '@store/CalendarStore'
|
||||
import { func_tools, toolsext } from '@store/Modules/toolsext'
|
||||
import { useMessageStore } from '@store/MessageStore'
|
||||
import { static_data } from '@src/db/static_data'
|
||||
import { static_data } from '@/db/static_data'
|
||||
import { lists } from '@store/Modules/lists'
|
||||
import translate from '@src/globalroutines/util'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import translate from '@/globalroutines/util'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CEventsCalendar',
|
||||
|
||||
@@ -3,9 +3,9 @@ import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { CDownloadJsonFile } from '@src/components/CDownloadJsonFile'
|
||||
import { CDownloadJsonFile } from '@/components/CDownloadJsonFile'
|
||||
import { PropType, defineComponent, onMounted, ref } from 'vue'
|
||||
import type { IMyPage } from '@src/model'
|
||||
import type { IMyPage } from '@/model'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CExportImportPage',
|
||||
|
||||
@@ -17,7 +17,7 @@ import { useGlobalStore } from '../../store/globalStore';
|
||||
import { useCircuitStore } from '../../store/CircuitStore';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { costanti, IMainCard } from '@store/Modules/costanti';
|
||||
|
||||
import { CMyUser } from '../CMyUser';
|
||||
|
||||
@@ -4,16 +4,16 @@ import {
|
||||
} from 'vue'
|
||||
|
||||
import { tools } from '@tools'
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { costanti } from '@costanti'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
|
||||
import { CTitlePage } from '@src/components/CTitlePage'
|
||||
import { CGridTableRec } from '@src/components/CGridTableRec'
|
||||
import { CTitlePage } from '@/components/CTitlePage'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
import type { IColGridTable, ISearchList} from 'model';
|
||||
import { IMyBacheca, IMySkill, ISkill } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
|
||||
@@ -5,10 +5,10 @@ import {
|
||||
|
||||
import { tools } from '@tools'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { static_data } from '@src/db/static_data'
|
||||
import { static_data } from '@/db/static_data'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ import { defineComponent, ref, computed, PropType, toRef, onMounted, onBeforeUnm
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { tools } from '@tools'
|
||||
import { LandingFooter } from '@src/components/LandingFooter'
|
||||
import { Logo } from '@src/components/logo'
|
||||
import { LandingFooter } from '@/components/LandingFooter'
|
||||
import { Logo } from '@/components/logo'
|
||||
import type { IMyPage } from 'model'
|
||||
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ import { useUserStore } from '@store/UserStore';
|
||||
import { useQuasar } from 'quasar';
|
||||
import type { IImgGallery } from 'model';
|
||||
import { IGallery } from 'model';
|
||||
import { CMyPage } from '@src/components/CMyPage';
|
||||
import { CMyPage } from '@/components/CMyPage';
|
||||
import { tools } from '@tools';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { costanti } from '@costanti';
|
||||
|
||||
@@ -5,7 +5,7 @@ import { useUserStore } from '@store/UserStore'
|
||||
import { useQuasar } from 'quasar'
|
||||
import type { IImgGallery } from 'model';
|
||||
import { IGallery } from 'model'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { tools } from '@tools'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { costanti } from '@costanti'
|
||||
|
||||
@@ -4,22 +4,22 @@ import {
|
||||
} from 'vue'
|
||||
|
||||
import { tools } from '@tools'
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { costanti } from '@costanti'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
|
||||
import { CTitlePage } from '@src/components/CTitlePage'
|
||||
import { CGridTableRec } from '@src/components/CGridTableRec'
|
||||
import { CTitlePage } from '@/components/CTitlePage'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
import type { IColGridTable, ISearchList } from 'model';
|
||||
import { IMyBacheca, IMySkill, ISkill, TipoVisu } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { useQuasar } from 'quasar'
|
||||
|
||||
import { func } from '@src/store/Modules/fieldsTable'
|
||||
import { func } from '@/store/Modules/fieldsTable'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CGridOriz',
|
||||
|
||||
@@ -18,7 +18,7 @@ import { tools } from '../../store/Modules/tools';
|
||||
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable';
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
|
||||
import type {
|
||||
IColGridTable,
|
||||
@@ -52,20 +52,20 @@ import { useUserStore } from '@store/UserStore';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { useQuasar, exportFile } from 'quasar';
|
||||
import { costanti } from '@costanti';
|
||||
import translate from '@src/globalroutines/util';
|
||||
import translate from '@/globalroutines/util';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
import { CMyCardPopup } from '@src/components/CMyCardPopup';
|
||||
import { CMyCardService } from '@src/components/CMyCardService';
|
||||
import { CSingleMovement } from '@src/components/CSingleMovement';
|
||||
import { CMyCardGrpPopup } from '@src/components/CMyCardGrpPopup';
|
||||
import { CMyCardCircuitPopup } from '@src/components/CMyCardCircuitPopup';
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup';
|
||||
import { CMyCardService } from '@/components/CMyCardService';
|
||||
import { CSingleMovement } from '@/components/CSingleMovement';
|
||||
import { CMyCardGrpPopup } from '@/components/CMyCardGrpPopup';
|
||||
import { CMyCardCircuitPopup } from '@/components/CMyCardCircuitPopup';
|
||||
import { onBeforeRouteLeave, onBeforeRouteUpdate, useRouter } from 'vue-router';
|
||||
import { useRoute } from 'vue-router';
|
||||
import { NavigationGuardNext, RouteLocationNormalized } from 'vue-router';
|
||||
|
||||
import { Dialog } from 'quasar'; // Assicurati di importare correttamente Dialog da Quasar.
|
||||
|
||||
import { getMapBoundaries } from '@src/store/Modules/geocodingmap';
|
||||
import { getMapBoundaries } from '@/store/Modules/geocodingmap';
|
||||
import { isMap } from 'util/types';
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -6,7 +6,7 @@ import { tools } from '../../store/Modules/tools'
|
||||
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
import type {
|
||||
IColGridTable,
|
||||
@@ -38,7 +38,7 @@ import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useQuasar, exportFile } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import translate from '@src/globalroutines/util'
|
||||
import translate from '@/globalroutines/util'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useRoute } from 'vue-router'
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import { colTableHours } from '@src/store/Modules/fieldsTable'
|
||||
import { colTableHours } from '@/store/Modules/fieldsTable'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { defineComponent, ref } from 'vue'
|
||||
import type { IPagination } from 'model'
|
||||
import { CImgText } from '@src/components/CImgText'
|
||||
import { CImgText } from '@/components/CImgText'
|
||||
import { CCard } from '../CCard'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@src/components/CGridTableRec'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CGridTableRec } from '@/components/CGridTableRec'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import type { PropType} from 'vue';
|
||||
import { defineComponent, ref } from 'vue'
|
||||
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import type { IAnim} from '@src/model';
|
||||
import { IElemText } from '@src/model'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import type { IAnim} from '@/model';
|
||||
import { IElemText } from '@/model'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CImgPoster',
|
||||
|
||||
@@ -2,7 +2,7 @@ import {
|
||||
defineComponent,
|
||||
} from 'vue'
|
||||
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CImgText',
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { defineComponent, ref } from 'vue'
|
||||
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CImgTitle',
|
||||
|
||||
@@ -17,7 +17,7 @@ import { useQuasar } from 'quasar';
|
||||
import { tools } from '@tools';
|
||||
import { useProducts } from '@store/Products';
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { useRouter } from 'vue-router';
|
||||
|
||||
import { costanti } from '@costanti';
|
||||
|
||||
@@ -4,17 +4,17 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { IMyGroup, ICircuit, IAccount } from 'model';
|
||||
import { IImgGallery, IUserFields, IUserProfile, IFriends } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { CSaldo } from '@src/components/CSaldo'
|
||||
import { CSendCoins } from '@src/components/CSendCoins'
|
||||
import { CCurrencyValue } from '@src/components/CCurrencyValue'
|
||||
import { CCurrencyV2 } from '@src/components/CCurrencyV2'
|
||||
import { CSaldo } from '@/components/CSaldo'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
import { CCurrencyValue } from '@/components/CCurrencyValue'
|
||||
import { CCurrencyV2 } from '@/components/CCurrencyV2'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { defineComponent, ref, toRef, watch } from 'vue'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
@@ -5,7 +5,7 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@costanti'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { defineComponent, ref, toRef, watch } from 'vue'
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { tools } from '@/store/Modules/tools'
|
||||
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
@@ -6,7 +6,7 @@ import { useI18n } from 'vue-i18n'
|
||||
import { tools } from '@tools'
|
||||
import type { IMainCard } from '@store/Modules/costanti';
|
||||
import { costanti } from '@store/Modules/costanti'
|
||||
import { CBigBtn } from '@src/components/CBigBtn'
|
||||
import { CBigBtn } from '@/components/CBigBtn'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -11,10 +11,10 @@ import 'leaflet.markercluster/dist/MarkerCluster.css'
|
||||
import 'leaflet.markercluster/dist/MarkerCluster.Default.css'
|
||||
import 'leaflet.markercluster'
|
||||
|
||||
import { useUserStore } from '@src/store/UserStore'
|
||||
import { useGlobalStore } from '@src/store/globalStore'
|
||||
import { useUserStore } from '@/store/UserStore'
|
||||
import { useGlobalStore } from '@/store/globalStore'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { ICoordGPS } from '@src/model'
|
||||
import { ICoordGPS } from '@/model'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMapByTable',
|
||||
|
||||
@@ -10,9 +10,9 @@ import 'leaflet.markercluster/dist/MarkerCluster.Default.css'
|
||||
import 'leaflet.markercluster'
|
||||
import '../../utils/leaflet-extensions'; // Importa le estensioni
|
||||
|
||||
import { useUserStore } from '@src/store/UserStore'
|
||||
import { useGlobalStore } from '@src/store/globalStore'
|
||||
import { setCookie } from '@src/utils/auth'
|
||||
import { useUserStore } from '@/store/UserStore'
|
||||
import { useGlobalStore } from '@/store/globalStore'
|
||||
import { setCookie } from '@/utils/auth'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMapComuni',
|
||||
|
||||
@@ -10,12 +10,12 @@ import 'leaflet.markercluster/dist/MarkerCluster.Default.css'
|
||||
import 'leaflet.markercluster'
|
||||
import '../../utils/leaflet-extensions'; // Importa le estensioni
|
||||
|
||||
import { useUserStore } from '@src/store/UserStore'
|
||||
import { useUserStore } from '@/store/UserStore'
|
||||
|
||||
// Importa le immagini dei marker
|
||||
import icon from 'leaflet/dist/images/marker-icon.png'
|
||||
import iconShadow from 'leaflet/dist/images/marker-shadow.png'
|
||||
import type { ICoordGPS, ICoordLatLng } from '@src/model'
|
||||
import type { ICoordGPS, ICoordLatLng } from '@/model'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMapEditAddressByCoord',
|
||||
|
||||
@@ -9,7 +9,7 @@ import 'leaflet.markercluster/dist/MarkerCluster.Default.css'
|
||||
import 'leaflet.markercluster'
|
||||
import '../../utils/leaflet-extensions'; // Importa le estensioni
|
||||
|
||||
import { useUserStore } from '@src/store/UserStore'
|
||||
import { useUserStore } from '@/store/UserStore'
|
||||
|
||||
// Importa le immagini dei marker
|
||||
import icon from 'leaflet/dist/images/marker-icon.png'
|
||||
|
||||
@@ -10,7 +10,7 @@ import 'leaflet.markercluster/dist/MarkerCluster.Default.css'
|
||||
import 'leaflet.markercluster'
|
||||
import '../../utils/leaflet-extensions'; // Importa le estensioni
|
||||
|
||||
import { useUserStore } from '@src/store/UserStore'
|
||||
import { useUserStore } from '@/store/UserStore'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMapUsers',
|
||||
|
||||
@@ -3,14 +3,14 @@ import draggable from 'vuedraggable';
|
||||
|
||||
import { tools } from '@tools';
|
||||
|
||||
import { useGlobalStore } from '@src/store/globalStore';
|
||||
import { useGlobalStore } from '@/store/globalStore';
|
||||
|
||||
import { CMyEditorAI } from '@src/components/CMyEditorAI';
|
||||
import { CAITools } from '@src/components/CAITools';
|
||||
import { CMyEditorAI } from '@/components/CMyEditorAI';
|
||||
import { CAITools } from '@/components/CAITools';
|
||||
|
||||
import { costanti } from '@costanti';
|
||||
|
||||
import type { IMyScheda, IProduct, IRecFields } from '@src/model';
|
||||
import type { IMyScheda, IProduct, IRecFields } from '@/model';
|
||||
import { shared_consts } from 'app/src/common/shared_vuejs';
|
||||
import { useProducts } from 'app/src/store/Products';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
@@ -4,14 +4,14 @@ import { useRouter } from 'vue-router'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
import { CMyImgUser } from '@src/components/CMyImgUser'
|
||||
import { CSingleMovement } from '@src/components/CSingleMovement'
|
||||
import { CCurrencyValue } from '@src/components/CCurrencyValue'
|
||||
import { CMyImgUser } from '@/components/CMyImgUser'
|
||||
import { CSingleMovement } from '@/components/CSingleMovement'
|
||||
import { CCurrencyValue } from '@/components/CCurrencyValue'
|
||||
import { tools } from '@tools'
|
||||
import type { IMovQuery, IMovVisu} from '@src/model';
|
||||
import { IMovement } from '@src/model'
|
||||
import type { IMovQuery, IMovVisu} from '@/model';
|
||||
import { IMovement } from '@/model'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMovements',
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CProfile } from '@src/components/CProfile'
|
||||
import { CLabel } from '@src/components/CLabel'
|
||||
import { CCopyBtn } from '@src/components/CCopyBtn'
|
||||
import { CSkill } from '@src/components/CSkill'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { CMyGroup } from '@src/components/CMyGroup'
|
||||
import { CMyCircuit } from '@src/components/CMyCircuit'
|
||||
import { CContactUser } from '@src/components/CContactUser'
|
||||
import { CNotifAtTop } from '@src/components/CNotifAtTop'
|
||||
import { CTimeAgo } from '@src/components/CTimeAgo'
|
||||
import { CSendCoins } from '@src/components/CSendCoins'
|
||||
import { CMyUser } from '@src/components/CMyUser'
|
||||
import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CProfile } from '@/components/CProfile'
|
||||
import { CLabel } from '@/components/CLabel'
|
||||
import { CCopyBtn } from '@/components/CCopyBtn'
|
||||
import { CSkill } from '@/components/CSkill'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { CMyGroup } from '@/components/CMyGroup'
|
||||
import { CMyCircuit } from '@/components/CMyCircuit'
|
||||
import { CContactUser } from '@/components/CContactUser'
|
||||
import { CNotifAtTop } from '@/components/CNotifAtTop'
|
||||
import { CTimeAgo } from '@/components/CTimeAgo'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
import { CMyUser } from '@/components/CMyUser'
|
||||
import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import { tools } from '@tools'
|
||||
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
@@ -26,12 +26,12 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { IReaction, IMyCircuit, IMyGroup, IUserFields } from 'model';
|
||||
import { IBookmark, ICircuit, IFavorite } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { static_data } from '@src/db/static_data'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { static_data } from '@/db/static_data'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { useNotifStore } from '@store/NotifStore'
|
||||
import MixinUsers from '@src/mixins/mixin-users'
|
||||
import { useCircuitStore } from '@src/store/CircuitStore'
|
||||
import MixinUsers from '@/mixins/mixin-users'
|
||||
import { useCircuitStore } from '@/store/CircuitStore'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import type { PropType} from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
||||
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CProfile } from '@src/components/CProfile'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CProfile } from '@/components/CProfile'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
import { tools } from '@tools'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
@@ -17,7 +17,7 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { IColGridTable, ICircuit} from 'model';
|
||||
import { IImgGallery, IUserFields } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { colCitys, fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { useNotifStore } from '@store/NotifStore'
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import type { PropType} from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
||||
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CProfile } from '@src/components/CProfile'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CProfile } from '@/components/CProfile'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
import { tools } from '@tools'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
@@ -17,7 +17,7 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { IColGridTable} from 'model';
|
||||
import { IImgGallery, IUserFields } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { colCitys, fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { useNotifStore } from '@store/NotifStore'
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
import type { PropType } from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
||||
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CProfile } from '@src/components/CProfile'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CAccomodation } from '@src/components/CAccomodation'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CProfile } from '@/components/CProfile'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
import { CAccomodation } from '@/components/CAccomodation'
|
||||
import { tools } from '@tools'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
@@ -17,7 +17,7 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { IColGridTable } from 'model';
|
||||
import { IImgGallery, IUserFields } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { colCitys, fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { useRoute } from 'vue-router'
|
||||
import { useNotifStore } from '@store/NotifStore'
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import type { PropType } from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, watch, nextTick } from 'vue'
|
||||
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CProfile } from '@src/components/CProfile'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CMyGroup } from '@src/components/CMyGroup'
|
||||
import { CMyChipList } from '@src/components/CMyChipList'
|
||||
import { CGridTableUser } from '@src/components/CGridTableUser'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CMyUser } from '@src/components/CMyUser'
|
||||
import { CLabel } from '@src/components/CLabel'
|
||||
import { CGalleryImages } from '@src/components/CGalleryImages'
|
||||
import { CAccomodation } from '@src/components/CAccomodation'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CProfile } from '@/components/CProfile'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CMyGroup } from '@/components/CMyGroup'
|
||||
import { CMyChipList } from '@/components/CMyChipList'
|
||||
import { CGridTableUser } from '@/components/CGridTableUser'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
import { CMyUser } from '@/components/CMyUser'
|
||||
import { CLabel } from '@/components/CLabel'
|
||||
import { CGalleryImages } from '@/components/CGalleryImages'
|
||||
import { CAccomodation } from '@/components/CAccomodation'
|
||||
import { tools } from '@tools'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useCalendarStore } from '@store/CalendarStore'
|
||||
@@ -24,14 +24,14 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { IReaction, IBookedEventPage, IColGridTable, IBookedEvent, IEvents, IMessage, IMessagePage, IParamDialog, ISearchList } from '@model';
|
||||
import { EState } from '@model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { colCitys, fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { useNotifStore } from '@store/NotifStore'
|
||||
import { lists } from '@store/Modules/lists'
|
||||
import translate from '@src/globalroutines/util'
|
||||
import { useMessageStore } from '@src/store/MessageStore'
|
||||
import mixinEvents from '@src/mixins/mixin-events'
|
||||
import translate from '@/globalroutines/util'
|
||||
import { useMessageStore } from '@/store/MessageStore'
|
||||
import mixinEvents from '@/mixins/mixin-events'
|
||||
|
||||
import { colmyUserPeople } from '@store/Modules/fieldsTable';
|
||||
|
||||
|
||||
@@ -4,9 +4,9 @@ import { CCardState } from '../CCardState';
|
||||
import { computed, defineComponent } from 'vue';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { useProducts } from '@store/Products';
|
||||
import { CCopyBtn } from '@src/components/CCopyBtn';
|
||||
import { CSingleCart } from '@src/components/CSingleCart';
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner';
|
||||
import { CCopyBtn } from '@/components/CCopyBtn';
|
||||
import { CSingleCart } from '@/components/CSingleCart';
|
||||
import { CTitleBanner } from '@/components/CTitleBanner';
|
||||
import { tools } from '@store/Modules/tools';
|
||||
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
@@ -6,14 +6,14 @@ import { useCircuitStore } from '@store/CircuitStore';
|
||||
import type { ICircuit, IMyCircuit, IMyGroup } from 'model';
|
||||
import { IImgGallery, IUserFields, IUserProfile, IFriends, IAccount } from 'model';
|
||||
import { costanti } from '@costanti';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { tools } from '@tools';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { useRoute, useRouter } from 'vue-router';
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif';
|
||||
import { CSaldo } from '@src/components/CSaldo';
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner';
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif';
|
||||
import { CSaldo } from '@/components/CSaldo';
|
||||
import { CTitleBanner } from '@/components/CTitleBanner';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { userPanel } from 'app/src/rootgen/admin/userPanel';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { CMyCircuit } from '@src/components/CMyCircuit'
|
||||
import { CMyCircuit } from '@/components/CMyCircuit'
|
||||
import type { PropType } from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, toRef, watch } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
@@ -9,12 +9,12 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { ICircuit } from 'model';
|
||||
import { ISearchList, IUserFields } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CMovements } from '@src/components/CMovements'
|
||||
import { CSendRISTo } from '@src/components/CSendRISTo'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CMovements } from '@/components/CMovements'
|
||||
import { CSendRISTo } from '@/components/CSendRISTo'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
@@ -77,16 +77,16 @@ export default defineComponent({
|
||||
|
||||
const listcircuitsfind = computed(() => {
|
||||
// console.log('list modif')
|
||||
return updateListCircuit(costanti.FIND_CIRCUIT)
|
||||
return circuitStore.updateListCircuit(costanti.FIND_CIRCUIT)
|
||||
})
|
||||
const listcircuitsmy = computed(() => {
|
||||
// console.log('list modif')
|
||||
return updateListCircuit(costanti.MY_CIRCUITS)
|
||||
return circuitStore.updateListCircuit(costanti.MY_CIRCUITS)
|
||||
})
|
||||
|
||||
const listcircuitsfiltered = computed(() => {
|
||||
// console.log('list modif')
|
||||
return updateListCircuit(visu.value)
|
||||
return circuitStore.updateListCircuit(visu.value)
|
||||
})
|
||||
|
||||
const myoptions = computed(() => {
|
||||
@@ -127,34 +127,6 @@ export default defineComponent({
|
||||
}
|
||||
}
|
||||
|
||||
function updateListCircuit(visu: number) {
|
||||
let arr: any[] = []
|
||||
try {
|
||||
if (visu === costanti.CIRCUITS) {
|
||||
arr = circuitStore.listcircuits
|
||||
} else if (visu === costanti.MY_CIRCUITS) {
|
||||
arr = circuitStore.listcircuits.filter((circ: any) => userStore.my.profile.mycircuits.findIndex((rec: any) => circ.name === rec.circuitname) >= 0)
|
||||
} else if (visu === costanti.ASK_SENT_CIRCUIT) {
|
||||
arr = userStore.my.profile.asked_circuits
|
||||
}
|
||||
} catch (e) {
|
||||
arr = []
|
||||
}
|
||||
|
||||
if (visu === costanti.MY_CIRCUITS) {
|
||||
const arrtoinsert: any = circuitStore.listcircuits.filter((circ: any) => circ.isCircItalia)
|
||||
for (const rec of arrtoinsert) {
|
||||
if (arr.findIndex(myrec => myrec._id === rec._id) < 0) {
|
||||
// Se non c'è il circuito Nazionale, glielo aggiungo
|
||||
arr.push(rec)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return arr
|
||||
}
|
||||
|
||||
|
||||
async function load() {
|
||||
if (init.value)
|
||||
return // Gia inizializzato
|
||||
|
||||
@@ -5,7 +5,7 @@ import { useI18n } from 'vue-i18n'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { costanti } from '@costanti'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyDialog',
|
||||
|
||||
@@ -6,15 +6,15 @@ import { IOperators, ISize } from 'model'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useQuasar } from 'quasar'
|
||||
|
||||
import { CMySize } from '@src/components/CMySize'
|
||||
import { CBorders } from '@src/components/CBorders'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CMySize } from '@/components/CMySize'
|
||||
import { CBorders } from '@/components/CBorders'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
|
||||
import { tools } from '@tools'
|
||||
|
||||
import { costanti } from '@costanti'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyDimensioni',
|
||||
|
||||
@@ -11,46 +11,46 @@ import type {
|
||||
IMyScheda,
|
||||
ISchedaSingola,
|
||||
IText,
|
||||
} from '@src/model';
|
||||
import { IImgGallery, ILabelValue, IMyPage, IOperators } from '@src/model';
|
||||
} from '@/model';
|
||||
import { IImgGallery, ILabelValue, IMyPage, IOperators } from '@/model';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { useCatalogStore } from '@store/CatalogStore';
|
||||
|
||||
import { CImgTitle } from '@src/components/CImgTitle';
|
||||
import { CImgPoster } from '@src/components/CImgPoster';
|
||||
import { CMyElemAdd } from '@src/components/CMyElemAdd';
|
||||
import { CTitle } from '@src/components/CTitle/index';
|
||||
import { CImgTitle } from '@/components/CImgTitle';
|
||||
import { CImgPoster } from '@/components/CImgPoster';
|
||||
import { CMyElemAdd } from '@/components/CMyElemAdd';
|
||||
import { CTitle } from '@/components/CTitle/index';
|
||||
import { tools } from '@tools';
|
||||
import { useRouter } from 'vue-router';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { LandingFooter } from '@src/components/LandingFooter';
|
||||
import { COpenStreetMap } from '@src/components/COpenStreetMap';
|
||||
import { CCardCarousel } from '@src/components/CCardCarousel';
|
||||
import { CMyPage } from '@src/components/CMyPage';
|
||||
import { CMyPageIntro } from '@src/components/CMyPageIntro';
|
||||
import { CEventsCalendar } from '@src/components/CEventsCalendar';
|
||||
import { CMyEditor } from '@src/components/CMyEditor';
|
||||
import { CMySlider } from '@src/components/CMySlider';
|
||||
import { CMySlideNumber } from '@src/components/CMySlideNumber';
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec';
|
||||
import { CSelectImage } from '@src/components/CSelectImage';
|
||||
import { CSelectAnimation } from '@src/components/CSelectAnimation';
|
||||
import { CSelectColor } from '@src/components/CSelectColor';
|
||||
import { CSelectFontSize } from '@src/components/CSelectFontSize';
|
||||
import { CMySize } from '@src/components/CMySize';
|
||||
import { CBorders } from '@src/components/CBorders';
|
||||
import { CMyDimensioni } from '@src/components/CMyDimensioni';
|
||||
import { CMyText } from '@src/components/CMyText';
|
||||
import { CPickColor } from '@src/components/CPickColor';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { LandingFooter } from '@/components/LandingFooter';
|
||||
import { COpenStreetMap } from '@/components/COpenStreetMap';
|
||||
import { CCardCarousel } from '@/components/CCardCarousel';
|
||||
import { CMyPage } from '@/components/CMyPage';
|
||||
import { CMyPageIntro } from '@/components/CMyPageIntro';
|
||||
import { CEventsCalendar } from '@/components/CEventsCalendar';
|
||||
import { CMyEditor } from '@/components/CMyEditor';
|
||||
import { CMySlider } from '@/components/CMySlider';
|
||||
import { CMySlideNumber } from '@/components/CMySlideNumber';
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec';
|
||||
import { CSelectImage } from '@/components/CSelectImage';
|
||||
import { CSelectAnimation } from '@/components/CSelectAnimation';
|
||||
import { CSelectColor } from '@/components/CSelectColor';
|
||||
import { CSelectFontSize } from '@/components/CSelectFontSize';
|
||||
import { CMySize } from '@/components/CMySize';
|
||||
import { CBorders } from '@/components/CBorders';
|
||||
import { CMyDimensioni } from '@/components/CMyDimensioni';
|
||||
import { CMyText } from '@/components/CMyText';
|
||||
import { CPickColor } from '@/components/CPickColor';
|
||||
|
||||
import MixinMetaTags from '@src/mixins/mixin-metatags';
|
||||
import MixinBase from '@src/mixins/mixin-base';
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags';
|
||||
import MixinBase from '@/mixins/mixin-base';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { emitKeypressEvents } from 'readline';
|
||||
import { costanti } from '@costanti';
|
||||
import objectId from '@src/js/objectId';
|
||||
import { useProducts } from '@src/store/Products';
|
||||
import objectId from '@/js/objectId';
|
||||
import { useProducts } from '@/store/Products';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyEditElem',
|
||||
@@ -829,13 +829,95 @@ export default defineComponent({
|
||||
myel.value.features.push({
|
||||
name: 'Titolo',
|
||||
description: 'sottotitolo',
|
||||
icon: 'fas fa-heading',});
|
||||
icon: 'fas fa-heading',
|
||||
});
|
||||
saveElem();
|
||||
}
|
||||
|
||||
const styleDialogOpen = ref(false);
|
||||
const scriptDialogOpen = ref(false);
|
||||
const tempStyle = ref('');
|
||||
const tempScript = ref('');
|
||||
const originalStyle = ref('');
|
||||
const originalScript = ref('');
|
||||
|
||||
function openStyleDialog() {
|
||||
originalStyle.value = myel.value.container2 || '';
|
||||
tempStyle.value = myel.value.container2 || '';
|
||||
styleDialogOpen.value = true;
|
||||
}
|
||||
|
||||
function openScriptDialog() {
|
||||
originalScript.value = myel.value.container3 || '';
|
||||
tempScript.value = myel.value.container3 || '';
|
||||
scriptDialogOpen.value = true;
|
||||
}
|
||||
|
||||
function updateStylePreview() {
|
||||
myel.value.container2 = tempStyle.value;
|
||||
modifElem();
|
||||
}
|
||||
|
||||
function updateScriptPreview() {
|
||||
myel.value.container3 = tempScript.value;
|
||||
modifElem();
|
||||
}
|
||||
|
||||
function confirmCancel(type: 'style' | 'script') {
|
||||
let modificato = false;
|
||||
|
||||
if (type === 'style') {
|
||||
modificato = myel.value.container2 !== originalStyle.value;
|
||||
} else {
|
||||
modificato = myel.value.container3 !== originalScript.value;
|
||||
}
|
||||
|
||||
if (modificato) {
|
||||
$q.dialog({
|
||||
title: 'Conferma',
|
||||
message: 'Vuoi scartare le modifiche fatte?',
|
||||
cancel: true,
|
||||
persistent: true,
|
||||
}).onOk(() => {
|
||||
if (type === 'style') {
|
||||
myel.value.container2 = originalStyle.value;
|
||||
modifElem();
|
||||
styleDialogOpen.value = false;
|
||||
} else {
|
||||
myel.value.container3 = originalScript.value;
|
||||
modifElem();
|
||||
scriptDialogOpen.value = false;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
styleDialogOpen.value = false;
|
||||
scriptDialogOpen.value = false;
|
||||
}
|
||||
}
|
||||
|
||||
function saveStyle() {
|
||||
originalStyle.value = tempStyle.value;
|
||||
styleDialogOpen.value = false;
|
||||
}
|
||||
|
||||
function saveScript() {
|
||||
originalScript.value = tempScript.value;
|
||||
scriptDialogOpen.value = false;
|
||||
}
|
||||
onMounted(mounted);
|
||||
|
||||
return {
|
||||
tempStyle,
|
||||
tempScript,
|
||||
saveScript,
|
||||
saveStyle,
|
||||
confirmCancel,
|
||||
updateScriptPreview,
|
||||
updateStylePreview,
|
||||
styleDialogOpen,
|
||||
scriptDialogOpen,
|
||||
openScriptDialog,
|
||||
openStyleDialog,
|
||||
tools,
|
||||
shared_consts,
|
||||
getArrDisciplines,
|
||||
|
||||
@@ -945,29 +945,22 @@
|
||||
</CMyEditor>
|
||||
|
||||
<q-card-section>
|
||||
<q-input
|
||||
label="Stile Pagina <style>...</style>:"
|
||||
v-model="myel.container2"
|
||||
filled
|
||||
style="max-height: 200px"
|
||||
dense
|
||||
class="scroll-input"
|
||||
v-on:keyup.enter="saveElem"
|
||||
@update:model-value="modifElem"
|
||||
/>
|
||||
</q-card-section>
|
||||
<q-card-section>
|
||||
<q-input
|
||||
label="Script:"
|
||||
v-model="myel.container3"
|
||||
autogrow
|
||||
filled
|
||||
dense
|
||||
style="max-height: 200px"
|
||||
class="scroll-input"
|
||||
v-on:keyup.enter="saveElem"
|
||||
@update:model-value="modifElem"
|
||||
/>
|
||||
<div class="row items-center q-gutter-sm">
|
||||
<q-btn
|
||||
label="Stile Pagina"
|
||||
:color="myel.container2 ? 'green' : 'grey'"
|
||||
dense
|
||||
@click="openStyleDialog"
|
||||
icon="edit"
|
||||
/>
|
||||
<q-btn
|
||||
label="Script"
|
||||
:color="myel.container3 ? 'secondary' : 'grey'"
|
||||
dense
|
||||
@click="openScriptDialog"
|
||||
icon="code"
|
||||
/>
|
||||
</div>
|
||||
</q-card-section>
|
||||
</div>
|
||||
</div>
|
||||
@@ -2943,6 +2936,120 @@
|
||||
</CMyElemAdd>
|
||||
</q-dialog>
|
||||
</div>
|
||||
|
||||
<!-- Dialog per Stile -->
|
||||
<q-dialog
|
||||
v-model="styleDialogOpen"
|
||||
seamless
|
||||
position="right"
|
||||
>
|
||||
<q-card
|
||||
style="
|
||||
min-width: 600px;
|
||||
max-width: 600px;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
"
|
||||
>
|
||||
<q-card-section class="row items-center q-pb-none">
|
||||
<div class="text-h6">Stile Pagina</div>
|
||||
<q-space />
|
||||
<q-btn
|
||||
icon="close"
|
||||
flat
|
||||
round
|
||||
dense
|
||||
@click="confirmCancel('style')"
|
||||
/>
|
||||
</q-card-section>
|
||||
|
||||
<q-card-section class="col scroll">
|
||||
<q-input
|
||||
v-model="tempStyle"
|
||||
type="textarea"
|
||||
filled
|
||||
autogrow
|
||||
rows="10"
|
||||
label="<style>...</style>"
|
||||
@update:model-value="updateStylePreview"
|
||||
/>
|
||||
</q-card-section>
|
||||
|
||||
<q-card-actions
|
||||
align="right"
|
||||
class="q-pa-md"
|
||||
>
|
||||
<q-btn
|
||||
flat
|
||||
label="Annulla"
|
||||
@click="confirmCancel('style')"
|
||||
/>
|
||||
<q-btn
|
||||
color="primary"
|
||||
label="Ok"
|
||||
@click="saveStyle"
|
||||
/>
|
||||
</q-card-actions>
|
||||
</q-card>
|
||||
</q-dialog>
|
||||
|
||||
<!-- Dialog per Script -->
|
||||
<q-dialog
|
||||
v-model="scriptDialogOpen"
|
||||
seamless
|
||||
position="right"
|
||||
>
|
||||
<q-card
|
||||
style="
|
||||
min-width: 600px;
|
||||
max-width: 600px;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
"
|
||||
>
|
||||
<q-card-section class="row items-center q-pb-none">
|
||||
<div class="text-h6">Script</div>
|
||||
<q-space />
|
||||
<q-btn
|
||||
icon="close"
|
||||
flat
|
||||
round
|
||||
dense
|
||||
@click="confirmCancel('script')"
|
||||
/>
|
||||
</q-card-section>
|
||||
|
||||
<q-card-section class="col scroll">
|
||||
<q-input
|
||||
v-model="tempScript"
|
||||
type="textarea"
|
||||
filled
|
||||
autogrow
|
||||
rows="10"
|
||||
label="JavaScript"
|
||||
@update:model-value="updateScriptPreview"
|
||||
/>
|
||||
</q-card-section>
|
||||
|
||||
<q-card-actions
|
||||
align="right"
|
||||
class="q-pa-md"
|
||||
>
|
||||
<q-btn
|
||||
flat
|
||||
label="Annulla"
|
||||
@click="confirmCancel('script')"
|
||||
/>
|
||||
<q-btn
|
||||
color="primary"
|
||||
label="Ok"
|
||||
@click="saveScript"
|
||||
/>
|
||||
</q-card-actions>
|
||||
</q-card>
|
||||
</q-dialog>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./CMyEditElem.ts"></script>
|
||||
|
||||
@@ -11,77 +11,79 @@ import {
|
||||
onUpdated,
|
||||
} from 'vue';
|
||||
|
||||
import type { IOptCatalogo, ICoordGPS, IMyElem, ISocial } from '@src/model';
|
||||
import { IMyCard, IMyPage, IOperators } from '@src/model';
|
||||
import type { IOptCatalogo, ICoordGPS, IMyElem, ISocial } from '@/model';
|
||||
import { IMyCard, IMyPage, IOperators } from '@/model';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
|
||||
import { CImgTitle } from '../CImgTitle/index';
|
||||
import { FeaturesSection } from '../FeaturesSection/index';
|
||||
import { CImgPoster } from '@src/components/CImgPoster';
|
||||
import CSection from '@src/components/CSection/CSection.vue';
|
||||
import CRow from '@src/components/CRow/CRow.vue';
|
||||
import CColumn from '@src/components/CColumn/CColumn.vue';
|
||||
import { CProfileCompletitionBanner } from '@src/components/CProfileCompletitionBanner/index';
|
||||
import { CTitle } from '@src/components/CTitle/index';
|
||||
import { CGridOriz } from '@src/components/CGridOriz/index';
|
||||
import { ChatBot } from '@src/components/ChatBot/index';
|
||||
import { CCatalogList } from '@src/components/CCatalogList/index';
|
||||
import { CRaccoltaCataloghi } from '@src/components/CRaccoltaCataloghi/index';
|
||||
import { CImgPoster } from '@/components/CImgPoster';
|
||||
import CSection from '@/components/CSection/CSection.vue';
|
||||
import CRow from '@/components/CRow/CRow.vue';
|
||||
import CColumn from '@/components/CColumn/CColumn.vue';
|
||||
import { CProfileCompletitionBanner } from '@/components/CProfileCompletitionBanner/index';
|
||||
import { CTitle } from '@/components/CTitle/index';
|
||||
import { CGridOriz } from '@/components/CGridOriz/index';
|
||||
import { ChatBot } from '@/components/ChatBot/index';
|
||||
import { CCatalogList } from '@/components/CCatalogList/index';
|
||||
import { CRaccoltaCataloghi } from '@/components/CRaccoltaCataloghi/index';
|
||||
import { tools } from '@tools';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { LandingFooter } from '@src/components/LandingFooter';
|
||||
import { CMyActivities } from '@src/components/CMyActivities';
|
||||
import { CECommerce } from '@src/components/CECommerce';
|
||||
import { HomeRiso } from '@src/components/HomeRiso';
|
||||
import { Riso_Home_Modern } from '@src/components/Riso_Home_Modern';
|
||||
import { InvitaAmico } from '@src/components/InvitaAmico';
|
||||
import { CMyVideoYoutube } from '@src/components/CMyVideoYoutube';
|
||||
import { editprofile } from '@src/components/editprofile';
|
||||
import { CStatMacro } from '@src/components/CStatMacro';
|
||||
import { CSearchProduct } from '@src/components/CSearchProduct';
|
||||
import { CPageViewStats } from '@src/components/CPageViewStats';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { LandingFooter } from '@/components/LandingFooter';
|
||||
import { CMyActivities } from '@/components/CMyActivities';
|
||||
import { CECommerce } from '@/components/CECommerce';
|
||||
import { HomeRiso } from '@/components/HomeRiso';
|
||||
import mycircuits from '@/views/user/mycircuits/mycircuits.vue';
|
||||
import PageRis from '@/components/pageris/pageris.vue';
|
||||
import { Riso_Home_Modern } from '@/components/Riso_Home_Modern';
|
||||
import { InvitaAmico } from '@/components/InvitaAmico';
|
||||
import { CMyVideoYoutube } from '@/components/CMyVideoYoutube';
|
||||
import { editprofile } from '@/components/editprofile';
|
||||
import { CStatMacro } from '@/components/CStatMacro';
|
||||
import { CSearchProduct } from '@/components/CSearchProduct';
|
||||
import { CPageViewStats } from '@/components/CPageViewStats';
|
||||
import { CCardCarouselComp } from 'app/src/components/CCardCarouselComp';
|
||||
import { CQRCode } from '@src/components/CQRCode';
|
||||
import { CAITools } from '@src/components/CAITools';
|
||||
import { CCatalogo } from '@src/components/CCatalogo';
|
||||
import { CRaccolta } from '@src/components/CRaccolta';
|
||||
// import { CMapMarker } from '@src/components/CMapMarker.off'
|
||||
import { CMapUsers } from '@src/components/CMapUsers';
|
||||
import { CMapGetCoordinates } from '@src/components/CMapGetCoordinates';
|
||||
import { CMapEditAddressByCoord } from '@src/components/CMapEditAddressByCoord';
|
||||
import { CMapComuni } from '@src/components/CMapComuni';
|
||||
import { COpenStreetMap } from '@src/components/COpenStreetMap';
|
||||
import { CCardCarousel } from '@src/components/CCardCarousel';
|
||||
import { CMyPage } from '@src/components/CMyPage';
|
||||
import { CMyPageIntro } from '@src/components/CMyPageIntro';
|
||||
import { CEventsCalendar } from '@src/components/CEventsCalendar';
|
||||
import { CMyEditor } from '@src/components/CMyEditor';
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec';
|
||||
import { CSelectColor } from '@src/components/CSelectColor';
|
||||
import { CMainView } from '@src/components/CMainView';
|
||||
import { CMyProfileTutorial } from '@src/components/CMyProfileTutorial';
|
||||
import { CSendRISTo } from '@src/components/CSendRISTo';
|
||||
import { CDashboard } from '@src/components/CDashboard';
|
||||
import { CDashGroup } from '@src/components/CDashGroup';
|
||||
import { CMovements } from '@src/components/CMovements';
|
||||
import { CCheckAppRunning } from '@src/components/CCheckAppRunning';
|
||||
import { CStatusReg } from '@src/components/CStatusReg';
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner';
|
||||
import { CCheckIfIsLogged } from '@src/components/CCheckIfIsLogged';
|
||||
import { CSelectFontSize } from '@src/components/CSelectFontSize';
|
||||
import { CNotifAtTop } from '@src/components/CNotifAtTop';
|
||||
import { CPresentazione } from '@src/components/CPresentazione';
|
||||
import { CRegistration } from '@src/components/CRegistration';
|
||||
import { CShareSocial } from '@src/components/CShareSocial';
|
||||
import { CMyImageGallery } from '@src/components/CMyImageGallery';
|
||||
import { CMyHeading } from '@src/components/CMyHeading';
|
||||
import { CMyList } from '@src/components/CMyList';
|
||||
import { CMyCode } from '@src/components/CMyCode';
|
||||
import { CMyDivider } from '@src/components/CMyDivider';
|
||||
import { CVisuVideoPromoAndPDF } from '@src/components/CVisuVideoPromoAndPDF';
|
||||
import { CQRCode } from '@/components/CQRCode';
|
||||
import { CAITools } from '@/components/CAITools';
|
||||
import { CCatalogo } from '@/components/CCatalogo';
|
||||
import { CRaccolta } from '@/components/CRaccolta';
|
||||
// import { CMapMarker } from '@/components/CMapMarker.off'
|
||||
import { CMapUsers } from '@/components/CMapUsers';
|
||||
import { CMapGetCoordinates } from '@/components/CMapGetCoordinates';
|
||||
import { CMapEditAddressByCoord } from '@/components/CMapEditAddressByCoord';
|
||||
import { CMapComuni } from '@/components/CMapComuni';
|
||||
import { COpenStreetMap } from '@/components/COpenStreetMap';
|
||||
import { CCardCarousel } from '@/components/CCardCarousel';
|
||||
import { CMyPage } from '@/components/CMyPage';
|
||||
import { CMyPageIntro } from '@/components/CMyPageIntro';
|
||||
import { CEventsCalendar } from '@/components/CEventsCalendar';
|
||||
import { CMyEditor } from '@/components/CMyEditor';
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec';
|
||||
import { CSelectColor } from '@/components/CSelectColor';
|
||||
import { CMainView } from '@/components/CMainView';
|
||||
import { CMyProfileTutorial } from '@/components/CMyProfileTutorial';
|
||||
import { CSendRISTo } from '@/components/CSendRISTo';
|
||||
import { CDashboard } from '@/components/CDashboard';
|
||||
import { CDashGroup } from '@/components/CDashGroup';
|
||||
import { CMovements } from '@/components/CMovements';
|
||||
import { CCheckAppRunning } from '@/components/CCheckAppRunning';
|
||||
import { CStatusReg } from '@/components/CStatusReg';
|
||||
import { CTitleBanner } from '@/components/CTitleBanner';
|
||||
import { CCheckIfIsLogged } from '@/components/CCheckIfIsLogged';
|
||||
import { CSelectFontSize } from '@/components/CSelectFontSize';
|
||||
import { CNotifAtTop } from '@/components/CNotifAtTop';
|
||||
import { CPresentazione } from '@/components/CPresentazione';
|
||||
import { CRegistration } from '@/components/CRegistration';
|
||||
import { CShareSocial } from '@/components/CShareSocial';
|
||||
import { CMyImageGallery } from '@/components/CMyImageGallery';
|
||||
import { CMyHeading } from '@/components/CMyHeading';
|
||||
import { CMyList } from '@/components/CMyList';
|
||||
import { CMyCode } from '@/components/CMyCode';
|
||||
import { CMyDivider } from '@/components/CMyDivider';
|
||||
import { CVisuVideoPromoAndPDF } from '@/components/CVisuVideoPromoAndPDF';
|
||||
|
||||
import MixinMetaTags from '@src/mixins/mixin-metatags';
|
||||
import MixinBase from '@src/mixins/mixin-base';
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags';
|
||||
import MixinBase from '@/mixins/mixin-base';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { useRouter } from 'vue-router';
|
||||
@@ -95,6 +97,7 @@ export default defineComponent({
|
||||
components: {
|
||||
CImgTitle,
|
||||
CTitle,
|
||||
PageRis,
|
||||
LandingFooter,
|
||||
CEventsCalendar,
|
||||
CCardCarousel,
|
||||
@@ -106,6 +109,7 @@ export default defineComponent({
|
||||
HomeRiso,
|
||||
Riso_Home_Modern,
|
||||
CMyEditor,
|
||||
mycircuits,
|
||||
editprofile,
|
||||
CMyFieldRec,
|
||||
CSelectColor,
|
||||
@@ -451,18 +455,22 @@ export default defineComponent({
|
||||
|
||||
const executeScript = () => {
|
||||
if (myel.value.container3 && htmlContainer.value) {
|
||||
try {
|
||||
console.log('Script da eseguire:', myel.value.container3);
|
||||
nextTick(() => {
|
||||
try {
|
||||
console.log('S guire:', myel.value.container3);
|
||||
|
||||
const fn = new Function('element', myel.value.container3);
|
||||
fn(htmlContainer.value);
|
||||
} catch (e) {
|
||||
console.error('Script execution error:', e);
|
||||
}
|
||||
const fn = new Function('element', myel.value.container3);
|
||||
fn(htmlContainer.value);
|
||||
} catch (e) {
|
||||
console.error('Script execution error:', e);
|
||||
}
|
||||
})
|
||||
}
|
||||
};
|
||||
|
||||
watch(() => myel.value.container3, executeScript, { flush: 'post' });
|
||||
watch(() => myel.value.container3, executeScript);
|
||||
watch(() => myel.value.containerHtml, executeScript); // AGGIUNGI ANCHE QUESTO
|
||||
|
||||
|
||||
onUpdated(executeScript);
|
||||
|
||||
|
||||
@@ -91,6 +91,18 @@
|
||||
>
|
||||
<HomeRiso />
|
||||
</div>
|
||||
<div
|
||||
v-else-if="myel.type === shared_consts.ELEMTYPE.PAGERIS"
|
||||
class="myElemBase"
|
||||
>
|
||||
<PageRis />
|
||||
</div>
|
||||
<div
|
||||
v-else-if="myel.type === shared_consts.ELEMTYPE.CMYCIRCUITS"
|
||||
class="myElemBase"
|
||||
>
|
||||
<mycircuits />
|
||||
</div>
|
||||
<div
|
||||
v-else-if="myel.type === shared_consts.ELEMTYPE.RISOHOME_MODERN"
|
||||
class="myElemBase"
|
||||
@@ -603,7 +615,7 @@
|
||||
v-if="editOn"
|
||||
class="elemEdit"
|
||||
>
|
||||
CSendRISTo
|
||||
Bottoni (Invia/Ricevi RIS) CSendRISTo
|
||||
</div>
|
||||
<CSendRISTo></CSendRISTo>
|
||||
</div>
|
||||
|
||||
@@ -11,23 +11,23 @@ import type {
|
||||
IMyScheda,
|
||||
ISchedaSingola,
|
||||
IText,
|
||||
} from '@src/model';
|
||||
import { IImgGallery, ILabelValue, IMyPage, IOperators } from '@src/model';
|
||||
} from '@/model';
|
||||
import { IImgGallery, ILabelValue, IMyPage, IOperators } from '@/model';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { useCatalogStore } from '@store/CatalogStore';
|
||||
|
||||
import { tools } from '@tools';
|
||||
import { useRouter } from 'vue-router';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
|
||||
import MixinMetaTags from '@src/mixins/mixin-metatags';
|
||||
import MixinBase from '@src/mixins/mixin-base';
|
||||
import MixinMetaTags from '@/mixins/mixin-metatags';
|
||||
import MixinBase from '@/mixins/mixin-base';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { emitKeypressEvents } from 'readline';
|
||||
import { costanti } from '@costanti';
|
||||
import objectId from '@src/js/objectId';
|
||||
import { useProducts } from '@src/store/Products';
|
||||
import objectId from '@/js/objectId';
|
||||
import { useProducts } from '@/store/Products';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyElemAdd',
|
||||
|
||||
@@ -6,10 +6,10 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@costanti'
|
||||
import { CMyPopupEdit } from '@src/components/CMyPopupEdit'
|
||||
import { CMyPopupEdit } from '@/components/CMyPopupEdit'
|
||||
import type { IColGridTable, ISpecialField } from 'model';
|
||||
import { IOperators } from 'model'
|
||||
import MixinBase from '@src/mixins/mixin-base'
|
||||
import MixinBase from '@/mixins/mixin-base'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -6,10 +6,10 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@costanti'
|
||||
import { CMyPopupEdit } from '@src/components/CMyPopupEdit'
|
||||
import { CMyPopupEdit } from '@/components/CMyPopupEdit'
|
||||
import type { ISpecialField } from 'model';
|
||||
import { IColGridTable } from 'model'
|
||||
import MixinBase from '@src/mixins/mixin-base'
|
||||
import MixinBase from '@/mixins/mixin-base'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { CMyUser } from '@src/components/CMyUser'
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif'
|
||||
import { CMyUser } from '@/components/CMyUser'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import type { PropType} from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, toRef } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
@@ -8,7 +8,7 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { IUserFields } from 'model';
|
||||
import { IFriends, ISearchList } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
|
||||
|
||||
|
||||
@@ -4,17 +4,17 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { IMyGroup, ICircuit } from 'model';
|
||||
import { IImgGallery, IUserFields, IUserProfile, IFriends, IAccount } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { CSaldo } from '@src/components/CSaldo'
|
||||
import { CInfoAccount } from '@src/components/CInfoAccount'
|
||||
import { CSendCoins } from '@src/components/CSendCoins'
|
||||
import { CCurrencyValue } from '@src/components/CCurrencyValue'
|
||||
import { CSaldo } from '@/components/CSaldo'
|
||||
import { CInfoAccount } from '@/components/CInfoAccount'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
import { CCurrencyValue } from '@/components/CCurrencyValue'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -4,7 +4,7 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { IMyGroup, ICircuit} from 'model';
|
||||
import { IImgGallery, IUserFields, IUserProfile, IFriends, IAccount } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { CMyGroup } from '@src/components/CMyGroup'
|
||||
import { CMyGroup } from '@/components/CMyGroup'
|
||||
import type { PropType } from 'vue';
|
||||
import { computed, defineComponent, onMounted, ref, toRef } from 'vue'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
@@ -7,9 +7,9 @@ import { useQuasar } from 'quasar'
|
||||
import { costanti } from '@costanti'
|
||||
import type { IMyGroup } from 'model';
|
||||
import { ISearchList, IUserFields } from 'model'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { CUserNonVerif } from '@src/components/CUserNonVerif'
|
||||
import { CUserNonVerif } from '@/components/CUserNonVerif'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -4,12 +4,12 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { ICircuit, IMovQuery, IUserFields} from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { CSendCoins } from '@src/components/CSendCoins'
|
||||
import { CSaldo } from '@src/components/CSaldo'
|
||||
import { CUserInfoAccount } from '@src/components/CUserInfoAccount'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
import { CSaldo } from '@/components/CSaldo'
|
||||
import { CUserInfoAccount } from '@/components/CUserInfoAccount'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { defineComponent, ref, onMounted } from 'vue'
|
||||
import type { IMyPage } from 'model'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { CImgText } from '@src/components/CImgText'
|
||||
import { CCard } from '@src/components/CCard'
|
||||
import { CMyPage } from '@src/components/CMyPage'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CImgText } from '@/components/CImgText'
|
||||
import { CCard } from '@/components/CCard'
|
||||
import { CMyPage } from '@/components/CMyPage'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { useRouter } from 'vue-router'
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -2,9 +2,9 @@ import {
|
||||
defineComponent, onMounted, ref, toRef, watch,
|
||||
} from 'vue'
|
||||
|
||||
import type { IMyPage } from '@src/model'
|
||||
import type { IMyPage } from '@/model'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { LandingFooter } from '@src/components/LandingFooter'
|
||||
import { LandingFooter } from '@/components/LandingFooter'
|
||||
|
||||
import { CImgTitle } from '../CImgTitle/index'
|
||||
import { CTitle } from '../CTitle/index'
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
import { computed, defineComponent, onMounted, ref, toRef, watch } from 'vue';
|
||||
|
||||
import type { IMyElem, IMyPage } from '@src/model';
|
||||
import type { IMyElem, IMyPage } from '@/model';
|
||||
import { useGlobalStore } from '@store/globalStore';
|
||||
import { LandingFooter } from '@src/components/LandingFooter';
|
||||
import { CMyElem } from '@src/components/CMyElem';
|
||||
import { CMyElemAdd } from '@src/components/CMyElemAdd';
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner';
|
||||
import { CMyEditElem } from '@src/components/CMyEditElem';
|
||||
import { CMyPageElem2 } from '@src/components/CMyPageElem2';
|
||||
import { CExportImportPage } from '@src/components/CExportImportPage';
|
||||
import { LandingFooter } from '@/components/LandingFooter';
|
||||
import { CMyElem } from '@/components/CMyElem';
|
||||
import { CMyElemAdd } from '@/components/CMyElemAdd';
|
||||
import { CTitleBanner } from '@/components/CTitleBanner';
|
||||
import { CMyEditElem } from '@/components/CMyEditElem';
|
||||
import { CMyPageElem2 } from '@/components/CMyPageElem2';
|
||||
import { CExportImportPage } from '@/components/CExportImportPage';
|
||||
|
||||
import { CImgTitle } from '../CImgTitle/index';
|
||||
import { CTitle } from '../CTitle/index';
|
||||
import { tools } from '@tools';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import objectId from '@src/js/objectId';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import objectId from '@/js/objectId';
|
||||
import { useRouter, useRoute } from 'vue-router';
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -3,19 +3,19 @@ import {
|
||||
defineComponent, onMounted, ref, toRef, watch,
|
||||
} from 'vue'
|
||||
|
||||
import type { IMyElem, IMyPage } from '@src/model'
|
||||
import type { IMyElem, IMyPage } from '@/model'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { LandingFooter } from '@src/components/LandingFooter'
|
||||
import { CMyElem } from '@src/components/CMyElem'
|
||||
import { CMyEditElem } from '@src/components/CMyEditElem'
|
||||
import { LandingFooter } from '@/components/LandingFooter'
|
||||
import { CMyElem } from '@/components/CMyElem'
|
||||
import { CMyEditElem } from '@/components/CMyEditElem'
|
||||
|
||||
import { CImgTitle } from '../CImgTitle/index'
|
||||
import { CTitle } from '../CTitle/index'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import objectId from '@src/js/objectId'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import objectId from '@/js/objectId'
|
||||
|
||||
import { useRouter } from 'vue-router'
|
||||
|
||||
|
||||
@@ -2,9 +2,9 @@ import {
|
||||
defineComponent, onMounted, ref, toRef, watch,
|
||||
} from 'vue'
|
||||
|
||||
import type { IMyPage } from '@src/model'
|
||||
import type { IMyPage } from '@/model'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { LandingFooter } from '@src/components/LandingFooter'
|
||||
import { LandingFooter } from '@/components/LandingFooter'
|
||||
|
||||
import { CImgTitle } from '../CImgTitle/index'
|
||||
import { CTitle } from '../CTitle/index'
|
||||
|
||||
@@ -37,10 +37,10 @@ import { costanti } from '@costanti';
|
||||
// import 'vue3-tel-input/dist/vue3-tel-input.css'
|
||||
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable';
|
||||
import MixinBase from '@src/mixins/mixin-base';
|
||||
import MixinUsers from '@src/mixins/mixin-users';
|
||||
import MixinBase from '@/mixins/mixin-base';
|
||||
import MixinUsers from '@/mixins/mixin-users';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { useRouter } from 'vue-router';
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -5,21 +5,21 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import type { ICircuit, IUserFields } from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { CTitleBanner } from '@src/components/CTitleBanner'
|
||||
import { CSendCoins } from '@src/components/CSendCoins'
|
||||
import { CSkill } from '@src/components/CSkill'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CSaldo } from '@src/components/CSaldo'
|
||||
import { CMySelectCity } from '@src/components/CMySelectCity'
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CMyCircuit } from '@src/components/CMyCircuit'
|
||||
import { CMySelect } from '@src/components/CMySelect'
|
||||
import { CMyUserOnlyView } from '@src/components/CMyUserOnlyView'
|
||||
import { CMyUser } from '@src/components/CMyUser'
|
||||
import { CUserInfoAccount } from '@src/components/CUserInfoAccount'
|
||||
import { CTitleBanner } from '@/components/CTitleBanner'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
import { CSkill } from '@/components/CSkill'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
import { CSaldo } from '@/components/CSaldo'
|
||||
import { CMySelectCity } from '@/components/CMySelectCity'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CMyCircuit } from '@/components/CMyCircuit'
|
||||
import { CMySelect } from '@/components/CMySelect'
|
||||
import { CMyUserOnlyView } from '@/components/CMyUserOnlyView'
|
||||
import { CMyUser } from '@/components/CMyUser'
|
||||
import { CUserInfoAccount } from '@/components/CUserInfoAccount'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
@use "sass:color";
|
||||
|
||||
// ========================================
|
||||
// VARIABILI
|
||||
|
||||
@@ -4,16 +4,16 @@ import { useUserStore } from '@store/UserStore';
|
||||
import type { IUserFields } from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model';
|
||||
import { costanti } from '@costanti';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable';
|
||||
import { tools } from '@tools';
|
||||
import { toolsext } from '@store/Modules/toolsext';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { CMyCardPopup } from '@src/components/CMyCardPopup';
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup';
|
||||
import { useRouter } from 'vue-router';
|
||||
import { useCalendarStore } from '@src/store/CalendarStore';
|
||||
import { useGlobalStore } from '@src/store/globalStore';
|
||||
import { useCalendarStore } from '@/store/CalendarStore';
|
||||
import { useGlobalStore } from '@/store/globalStore';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyRecCard',
|
||||
|
||||
@@ -4,20 +4,20 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { ICatalog, IOptGrid, IUserFields } from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { CLabel } from '@src/components/CLabel'
|
||||
import { CMyCardPopup } from '@src/components/CMyCardPopup'
|
||||
import { CLabel } from '@/components/CLabel'
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useCalendarStore } from '@src/store/CalendarStore'
|
||||
import { useGlobalStore } from '@src/store/globalStore'
|
||||
import { useCalendarStore } from '@/store/CalendarStore'
|
||||
import { useGlobalStore } from '@/store/globalStore'
|
||||
|
||||
import type { ICatProd, ICollana, IPublisher } from "@src/model/Products"
|
||||
import { useProducts } from '@src/store/Products'
|
||||
import type { ICatProd, ICollana, IPublisher } from "@/model/Products"
|
||||
import { useProducts } from '@/store/Products'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyRecCatalog',
|
||||
|
||||
@@ -5,14 +5,14 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { IImgGallery, IUserFields, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { CMyCardPopup } from '@src/components/CMyCardPopup'
|
||||
import { CCurrencyValue } from '@src/components/CCurrencyValue'
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
||||
import { CCurrencyValue } from '@/components/CCurrencyValue'
|
||||
import { useRouter } from 'vue-router'
|
||||
// import { useRouter } from 'vue-router'
|
||||
|
||||
|
||||
@@ -4,13 +4,13 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { IUserFields} from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { CMyCardPopup } from '@src/components/CMyCardPopup'
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
||||
// import { useRouter } from 'vue-router'
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -4,20 +4,20 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { IRaccoltaCatalogo, IOptGrid, IUserFields } from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { toolsext } from '@store/Modules/toolsext'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { CLabel } from '@src/components/CLabel'
|
||||
import { CMyCardPopup } from '@src/components/CMyCardPopup'
|
||||
import { CLabel } from '@/components/CLabel'
|
||||
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useCalendarStore } from '@src/store/CalendarStore'
|
||||
import { useGlobalStore } from '@src/store/globalStore'
|
||||
import { useCalendarStore } from '@/store/CalendarStore'
|
||||
import { useGlobalStore } from '@/store/globalStore'
|
||||
|
||||
import type { ICatProd, ICollana, IPublisher } from "@src/model/Products"
|
||||
import { useProducts } from '@src/store/Products'
|
||||
import type { ICatProd, ICollana, IPublisher } from "@/model/Products"
|
||||
import { useProducts } from '@/store/Products'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyRecRaccoltaCataloghi',
|
||||
|
||||
@@ -6,7 +6,7 @@ import { useGlobalStore } from '@store/globalStore';
|
||||
import { useQuasar } from 'quasar';
|
||||
import { costanti } from '@costanti';
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable';
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
import type { IColGridTable } from 'model';
|
||||
import { IOperators } from 'model';
|
||||
import { tools } from '@tools';
|
||||
|
||||
@@ -4,14 +4,14 @@ import { useI18n } from 'vue-i18n'
|
||||
import { useUserStore } from '@store/UserStore'
|
||||
import { useGlobalStore } from '@store/globalStore'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { CMySelect } from '@src/components/CMySelect'
|
||||
import { CMySelect } from '@/components/CMySelect'
|
||||
|
||||
import { costanti } from '@costanti'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import MixinBase from '@src/mixins/mixin-base'
|
||||
import type { ISpecialField } from '@src/model'
|
||||
import MixinBase from '@/mixins/mixin-base'
|
||||
import type { ISpecialField } from '@/model'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMySelectCity',
|
||||
|
||||
@@ -6,18 +6,18 @@ import { Logo } from '../../components/logo/index'
|
||||
import { LandingFooter } from '../../components/LandingFooter/index'
|
||||
|
||||
import { tools } from '../../store/Modules/tools'
|
||||
import { static_data } from '@src/db/static_data'
|
||||
import { static_data } from '@/db/static_data'
|
||||
|
||||
import { CCard } from '@src/components/CCard/index'
|
||||
import { CImgText } from '@src/components/CImgText/index'
|
||||
import { CMyAvatar } from '@src/components/CMyAvatar/index'
|
||||
import { CMyTeacher } from '@src/components/CMyTeacher/index'
|
||||
import { CMyPage } from '@src/components/CMyPage/index'
|
||||
import { CCard } from '@/components/CCard/index'
|
||||
import { CImgText } from '@/components/CImgText/index'
|
||||
import { CMyAvatar } from '@/components/CMyAvatar/index'
|
||||
import { CMyTeacher } from '@/components/CMyTeacher/index'
|
||||
import { CMyPage } from '@/components/CMyPage/index'
|
||||
|
||||
import type { IEvents} from '@src/model';
|
||||
import { IOperators } from '@src/model'
|
||||
import MixinEvents from '@src/mixins/mixin-events'
|
||||
import { useGlobalStore } from '@src/store/globalStore'
|
||||
import type { IEvents} from '@/model';
|
||||
import { IOperators } from '@/model'
|
||||
import MixinEvents from '@/mixins/mixin-events'
|
||||
import { useGlobalStore } from '@/store/globalStore'
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -8,9 +8,9 @@ import { useQuasar } from 'quasar'
|
||||
|
||||
import { tools } from '@tools'
|
||||
|
||||
import { CMySlider } from '@src/components/CMySlider'
|
||||
import { CMySlider } from '@/components/CMySlider'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMySize',
|
||||
|
||||
@@ -8,9 +8,9 @@ import { useQuasar } from 'quasar';
|
||||
|
||||
import { tools } from '@tools';
|
||||
|
||||
import { CMySlider } from '@src/components/CMySlider';
|
||||
import { CMySlider } from '@/components/CMySlider';
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs';
|
||||
import { shared_consts } from '@/common/shared_vuejs';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMySlideNumber',
|
||||
|
||||
@@ -4,7 +4,7 @@ import { IOperators } from 'model'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useQuasar } from 'quasar'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMySlider',
|
||||
|
||||
@@ -10,11 +10,11 @@ import { tools } from '@tools'
|
||||
|
||||
import { costanti } from '@costanti'
|
||||
|
||||
import { CMySize } from '@src/components/CMySize'
|
||||
import { CMySlider } from '@src/components/CMySlider'
|
||||
import { CMyFieldRec } from '@src/components/CMyFieldRec'
|
||||
import { CMySize } from '@/components/CMySize'
|
||||
import { CMySlider } from '@/components/CMySlider'
|
||||
import { CMyFieldRec } from '@/components/CMyFieldRec'
|
||||
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CMyText',
|
||||
|
||||
@@ -4,12 +4,12 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { ICircuit, IUserFields } from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { CSendCoins } from '@src/components/CSendCoins'
|
||||
import { CSaldo } from '@src/components/CSaldo'
|
||||
import { CUserInfoAccount } from '@src/components/CUserInfoAccount'
|
||||
import { CSendCoins } from '@/components/CSendCoins'
|
||||
import { CSaldo } from '@/components/CSaldo'
|
||||
import { CUserInfoAccount } from '@/components/CUserInfoAccount'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
|
||||
@@ -4,7 +4,7 @@ import { useUserStore } from '@store/UserStore'
|
||||
import type { IUserFields } from 'model';
|
||||
import { IImgGallery, IUserProfile } from 'model'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { tools } from '@tools'
|
||||
import { useQuasar } from 'quasar'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
|
||||
@@ -6,10 +6,10 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@costanti'
|
||||
import { CMyPopupEdit } from '@src/components/CMyPopupEdit'
|
||||
import { CMyPopupEdit } from '@/components/CMyPopupEdit'
|
||||
import type { IColGridTable, ISpecialField } from 'model';
|
||||
import { IOperators } from 'model'
|
||||
import MixinBase from '@src/mixins/mixin-base'
|
||||
import MixinBase from '@/mixins/mixin-base'
|
||||
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
@@ -6,16 +6,16 @@ import { useUserStore } from '@store/UserStore'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { toolsext } from '@src/store/Modules/toolsext'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { toolsext } from '@/store/Modules/toolsext'
|
||||
import { computed } from 'vue'
|
||||
import type { INotif } from 'model'
|
||||
import { useNotifStore } from '@store/NotifStore'
|
||||
import { useCircuitStore } from '@store/CircuitStore'
|
||||
import { useRouter } from 'vue-router'
|
||||
import MixinUsers from '@src/mixins/mixin-users'
|
||||
import MixinUsers from '@/mixins/mixin-users'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CNotifAtTop',
|
||||
|
||||
@@ -6,10 +6,10 @@ import { useUserStore } from '@store/UserStore'
|
||||
import { fieldsTable } from '@store/Modules/fieldsTable'
|
||||
import { tools } from '@tools'
|
||||
import { costanti } from '@costanti'
|
||||
import { shared_consts } from '@src/common/shared_vuejs'
|
||||
import { CMyFieldDb } from '@src/components/CMyFieldDb'
|
||||
import { CDateTime } from '@src/components/CDateTime'
|
||||
import { toolsext } from '@src/store/Modules/toolsext'
|
||||
import { shared_consts } from '@/common/shared_vuejs'
|
||||
import { CMyFieldDb } from '@/components/CMyFieldDb'
|
||||
import { CDateTime } from '@/components/CDateTime'
|
||||
import { toolsext } from '@/store/Modules/toolsext'
|
||||
import { computed } from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user