Procházet zdrojové kódy

reorganize components

Olivier Massot před 8 měsíci
rodič
revize
45b5c3d204

+ 0 - 0
components/Dialog/Trial/AllReadyDid.vue → components/Layout/Dialog/Trial/AllReadyDid.vue


+ 0 - 0
components/Dialog/Trial/StopConfirmation.vue → components/Layout/Dialog/Trial/StopConfirmation.vue


+ 1 - 1
components/Pages/Subscription/Card.vue → components/Layout/Pages/Subscription/Card.vue

@@ -14,7 +14,7 @@
 
       <!-- Texte -->
       <v-card-text>
-        <PagesSubscriptionList
+        <LayoutPagesSubscriptionList
           :elements="list"
           :color="color" />
       </v-card-text>

+ 0 - 0
components/Pages/Subscription/List.vue → components/Layout/Pages/Subscription/List.vue


+ 12 - 12
pages/subscription.vue

@@ -109,7 +109,7 @@ Page 'Mon abonnement'
 
             <v-row class="card-container">
               <v-col lg="3" sm="12" md="6" v-if="organizationProfile.isArtistProduct">
-                <PagesSubscriptionCard
+                <LayoutPagesSubscriptionCard
                 class="artistCard"
                 title="Logiciel Artist Standard"
                 :extraHeader="organizationProfile.isArtistProduct ? 'Votre version' : false"
@@ -131,11 +131,11 @@ Page 'Mon abonnement'
                     {{ $t('to_know_more') }} <i class="fa-solid fa-greater-than small"></i>
                   </v-btn>
                 </template>
-              </PagesSubscriptionCard>
+              </LayoutPagesSubscriptionCard>
               </v-col>
 
               <v-col lg="3" sm="12" md="6" v-if="organizationProfile.isArtist">
-                <PagesSubscriptionCard
+                <LayoutPagesSubscriptionCard
                   class="artistCard"
                   title="Logiciel Artist Premium*"
                   :extraHeader="organizationProfile.isArtistPremiumProduct ? 'Votre version' : '1 mois d\'essai offert'"
@@ -190,11 +190,11 @@ Page 'Mon abonnement'
                       </v-col>
                     </v-row>
                   </template>
-                </PagesSubscriptionCard>
+                </LayoutPagesSubscriptionCard>
               </v-col>
 
               <v-col lg="3" sm="12" md="6" :offset="!md && mdAndUp ? (organizationProfile.isSchool ? 4 : (organizationProfile.isArtistPremiumProduct ? 0 : 2)) : 0">
-                <PagesSubscriptionCard
+                <LayoutPagesSubscriptionCard
                   class="schoolCard"
                   :title="!organizationProfile.isSchool ? 'Logiciel School Standard / Premium' : (
                     organizationProfile.isSchoolPremiumProduct ? 'Logiciel School Premium' : 'Logiciel School Standard'
@@ -223,7 +223,7 @@ Page 'Mon abonnement'
                       </v-col>
                     </v-row>
                   </template>
-                </PagesSubscriptionCard>
+                </LayoutPagesSubscriptionCard>
               </v-col>
             </v-row>
           </v-container>
@@ -233,7 +233,7 @@ Page 'Mon abonnement'
           <v-container fluid class="container card-container">
             <v-row cols="12" >
               <v-col lg="3" sm="12" md="6">
-                <PagesSubscriptionCard
+                <LayoutPagesSubscriptionCard
                   class="optionsCard"
                   title="SMS"
                   sub-title="Option payante"
@@ -252,11 +252,11 @@ Page 'Mon abonnement'
                       acheter des credits SMS <i class="fa-solid fa-greater-than small"></i>
                     </v-btn>
                   </template>
-                </PagesSubscriptionCard>
+                </LayoutPagesSubscriptionCard>
               </v-col>
 
               <v-col lg="3" sm="12" md="6">
-                <PagesSubscriptionCard
+                <LayoutPagesSubscriptionCard
                   class="optionsCard"
                   title="Nom de domaine"
                   sub-title="Option payante"
@@ -275,7 +275,7 @@ Page 'Mon abonnement'
                       souscrire à l'option <i class="fa-solid fa-greater-than small"></i>
                     </v-btn>
                   </template>
-                </PagesSubscriptionCard>
+                </LayoutPagesSubscriptionCard>
               </v-col>
             </v-row>
           </v-container>
@@ -285,12 +285,12 @@ Page 'Mon abonnement'
 
   </LayoutContainer>
 
-  <DialogTrialAllReadyDid
+  <LayoutDialogTrialAllReadyDid
     :show="showDialogTrialAllReadyDid"
     @closeDialog = "showDialogTrialAllReadyDid = false"
   />
 
-  <DialogTrialStopConfirmation
+  <LayoutDialogTrialStopConfirmation
     :show="showDialogTrialStopConfirmation"
     @closeDialog = "showDialogTrialStopConfirmation = false"
     @stopTrial = "stopTrial"