Commit 919c653a authored by 华国豪's avatar 华国豪 🙄
parents 6832ed80 3162c12c
This diff is collapsed.
This diff is collapsed.
...@@ -263,7 +263,7 @@ ...@@ -263,7 +263,7 @@
<img v-if="!img.url" src="../../assets/img/default.png" style="width:200px;height:133px;float:left;" alt=""> <img v-if="!img.url" src="../../assets/img/default.png" style="width:200px;height:133px;float:left;" alt="">
<img v-else :src="img.url" style="width:200px;height:133px;float:left;" alt=""> <img v-else :src="img.url" style="width:200px;height:133px;float:left;" alt="">
<div style="float:left;margin-left:20px;width:719px"> <div style="float:left;margin-left:20px;width:719px">
<p><span style="color:#5F95E8;font-size:16px;margin-bottom:13px">{{Scen.childItem.couponsName}}</span></p> <p style="margin-bottom:13px"><span style="color:#5F95E8;font-size:16px;">{{Scen.childItem.couponsName}}</span></p>
<p v-if="Scen.childItem.description" v-html="Scen.childItem.description"></p> <p v-if="Scen.childItem.description" v-html="Scen.childItem.description"></p>
</div> </div>
......
<template>
<div class="LocalTourList">
<div class="w1200">
</div>
</div>
</template>
<script>
export default {
data () {
return {
}
},
mounted() {
},
methods: {
}
}
</script>
<style>
</style>
This diff is collapsed.
...@@ -173,11 +173,17 @@ ...@@ -173,11 +173,17 @@
</li> </li>
<!-- 当地游 --> <!-- 当地游 -->
<li :class="{_active: navActive === 3}"> <li :class="{_active: navActive === 3}">
<div @click="handleSelect('/OneDayTour', 3), navActive = 3"> <div @click="handleSelect('/Localtourhome', 3), navActive = 3">
<span>当地游</span> <span>当地游</span>
<span class="__splice">|</span> <span class="__splice">|</span>
</div> </div>
</li> </li>
<!-- <li :class="{_active: navActive === 3}">
<div @click="handleSelect('/OneDayTour', 3), navActive = 3">
<span>当地游</span>
<span class="__splice">|</span>
</div>
</li> -->
<!-- 酒店 --> <!-- 酒店 -->
<li :class="{_active: navActive === 4}"> <li :class="{_active: navActive === 4}">
<div @click="handleSelect('/', 4), navActive = 4"> <div @click="handleSelect('/', 4), navActive = 4">
......
...@@ -380,7 +380,24 @@ export default new Router({ ...@@ -380,7 +380,24 @@ export default new Router({
title: "首页" title: "首页"
} }
}, },
{
path: "/Localtourhome",
name: "Localtourhome",
component: resolve =>
require(["@/components/LocalTour/Localtourhome.vue"], resolve),
meta: {
title: "当地游"
}
},
{
path: "/LocalTourList",
name: "LocalTourList",
component: resolve =>
require(["@/components/LocalTour/LocalTourList.vue"], resolve),
meta: {
title: "当地游列表"
}
},
] ]
}, },
......
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