Commit 7b28d2f0 authored by 沈良进's avatar 沈良进

接机,包车页面开发

parent 1b7cc065
...@@ -178,7 +178,7 @@ ...@@ -178,7 +178,7 @@
</div> </div>
<div class="text-weight-bold q-pa-sm">熱門目的地</div> <div class="text-weight-bold q-pa-sm">熱門目的地</div>
<q-separator /> <q-separator />
<div> <div class="flex flex-wrap">
<div class="hot-tag" @click="handleHotTagClick(item)" :class="{'hot-tag-select': setectHotTag === item.Id}" :key="item.Id" v-for="item in hotList">{{item.Name}}</div> <div class="hot-tag" @click="handleHotTagClick(item)" :class="{'hot-tag-select': setectHotTag === item.Id}" :key="item.Id" v-for="item in hotList">{{item.Name}}</div>
</div> </div>
<!-- <div class="col full-width row"> <!-- <div class="col full-width row">
......
...@@ -756,6 +756,13 @@ export default { ...@@ -756,6 +756,13 @@ export default {
); );
}, },
GotoDetails(item) { GotoDetails(item) {
if(item.productType === 4) { // 接送机,包车
this.CommonJump(
"/detailCar/"+item.configId,
{}
);
return
}
this.CommonJump( this.CommonJump(
"/detail/" + encodeURIComponent(item.id) + "/" + item.tcid, "/detail/" + encodeURIComponent(item.id) + "/" + item.tcid,
{} {}
......
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
.justify-between { .justify-between {
justify-content: space-between; justify-content: space-between;
} }
.flex-end {
justify-content: end;
}
.item-center { .item-center {
align-items: center; align-items: center;
} }
...@@ -87,6 +90,12 @@ ...@@ -87,6 +90,12 @@
.f16 { .f16 {
font-size: 16px; font-size: 16px;
} }
.f18 {
font-size: 18px;
}
.f20 {
font-size: 20px;
}
.f26 { .f26 {
font-size: 26px; font-size: 26px;
} }
......
This diff is collapsed.
This diff is collapsed.
...@@ -28,10 +28,14 @@ const routes = [{ ...@@ -28,10 +28,14 @@ const routes = [{
path: '/details/:id/:tcid', path: '/details/:id/:tcid',
component: () => component: () =>
import('pages/details.vue') import('pages/details.vue')
}, { //行程2 }, { // 包车,接机
path: '/detailCar/:id',
component: () =>
import('pages/detailsCar.vue')
}, { // 旅程
path: '/detail/:id/:tcid', path: '/detail/:id/:tcid',
component: () => component: () =>
import('pages/detailsNew.vue') import('pages/detailsCar.vue')
}, { }, {
path: '/search', //签证护照管理 path: '/search', //签证护照管理
component: () => component: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment