Commit 20d3c16e authored by 黄媛媛's avatar 黄媛媛
parents dd70cf7e a4b71166
...@@ -159,7 +159,6 @@ ...@@ -159,7 +159,6 @@
height: 280px; height: 280px;
background:linear-gradient(180deg,rgba(0,0,0,0.57),rgba(0,0,0,-0.38)); background:linear-gradient(180deg,rgba(0,0,0,0.57),rgba(0,0,0,-0.38));
border-radius:6px; border-radius:6px;
margin-right: 20px;
overflow: hidden; overflow: hidden;
} }
.FreeHome .fh-city .city-m>img{ .FreeHome .fh-city .city-m>img{
...@@ -674,7 +673,7 @@ ...@@ -674,7 +673,7 @@
<span @click.stop="goList2(item, 'menpiao')">门票</span> <span @click.stop="goList2(item, 'menpiao')">门票</span>
<span @click.stop="goList2(item, 'canshi')">餐食</span> <span @click.stop="goList2(item, 'canshi')">餐食</span>
<span @click.stop="goList2(item, 'yiri')">一日游</span> <span @click.stop="goList2(item, 'yiri')">一日游</span>
<img @click.stop="goList2(item)" src="../../assets/img/freeHome/more_s.png" alt=""> <img @click.stop="goList2(item, 'all')" src="../../assets/img/freeHome/more_s.png" alt="">
</div> </div>
</div> </div>
</div> </div>
...@@ -979,7 +978,7 @@ export default { ...@@ -979,7 +978,7 @@ export default {
this.$router.push({ this.$router.push({
name: "FreeList2", name: "FreeList2",
query: { query: {
tag: 1, tag: type,
id: obj.number, id: obj.number,
type: 2, type: 2,
name: obj.name, name: obj.name,
......
...@@ -813,6 +813,20 @@ export default { ...@@ -813,6 +813,20 @@ export default {
this.ccId = this.$route.query.id; this.ccId = this.$route.query.id;
this.ccName = this.$route.query.name; this.ccName = this.$route.query.name;
this.CCListActive = this.$route.query.CCListActive; this.CCListActive = this.$route.query.CCListActive;
if(this.$route.query.tag) {
if (this.$route.query.tag == 'menpiao') {
this.msg.cat_main_keys = ["TAG_2"]
this.typeTagIndex = 0
} else if (this.$route.query.tag == 'canshi'){
this.msg.cat_sub_keys = ["TAG_2_5"]
this.typeTagIndex = 3
} else if (this.$route.query.tag == 'yiri'){
this.msg.cat_main_keys = ["TAG_4"]
this.typeTagIndex = 1
} else if (this.$route.query.tag == 'all'){
}
}
this.getList() this.getList()
this.getCCList(1) this.getCCList(1)
}, },
...@@ -914,7 +928,6 @@ export default { ...@@ -914,7 +928,6 @@ export default {
// 获取列表 // 获取列表
getList(type, id){ getList(type, id){
let query = this.$route.query; let query = this.$route.query;
console.log(query)
if(query.type == 1) { if(query.type == 1) {
this.msg.country_keys = [query.id] this.msg.country_keys = [query.id]
} else { } else {
......
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