fengchang 1 anno fa
parent
commit
c355585664

+ 6 - 1
hichina-main-front-mobile-first/src/pages/DestinationPage.vue

@@ -24,6 +24,7 @@
             class="destination-card cursor-pointer rounded-borders"
             @mouseenter="hoverFlag = true"
             @mouseleave="hoverFlag = true"
+            @click="goPage('/destination-detail/' + item.destinationid)"
           >
             <q-img
               class="rounded-borders"
@@ -31,7 +32,11 @@
               :src="normalizeMultiImageUrl(item.destinationProfileImage)"
             >
               <div class="absolute-bottom">
-                <div class="text-h6">{{ item.destinationName }}</div>
+                <div class="text-h6">
+                  <a :href="'./destination-detail/' + item.destinationId">{{
+                    item.destinationName
+                  }}</a>
+                </div>
                 <div class="text-subtitle2">
                   {{ item.parentDestinationName }}
                 </div>

+ 3 - 1
hichina-main-front-mobile-first/src/pages/TravelShopPage.vue

@@ -73,7 +73,9 @@
                 Start from ¥{{ item.minPrice }}
               </div>
               <div class="text-h5 q-mt-sm q-mb-xs">
-                {{ item.skuGroupName }}
+                <a :href="'./product-detail/' + item.skkuGroupId">{{
+                  item.skuGroupName
+                }}</a>
               </div>
             </q-card-section>
           </q-card>