This commit is contained in:
xiao-fajia 2024-08-04 13:34:11 +08:00
commit 9b980f9507
2 changed files with 20 additions and 1 deletions

View File

@ -139,7 +139,7 @@
</div>
<!-- 动画-->
</div>
<div style=" width: 156px;height: 42px;margin: 50px auto;" @click="golist(indexList[2].id)" >
<div style=" width: 156px;height: 42px;margin: 50px auto;cursor: pointer" @click="godx()" >
<img src="../assets/gw/anniu.png" style=" width: 156px;height: 42px">
</div>
</div>
@ -289,6 +289,12 @@ export default {
}
},
methods: {
godx(){
this.$router.push({
name: 'xufang',
query:{ id: '1813829868593483776' }
});
},
golist(id){
console.log('跳转',id)
this.$router.push({

View File

@ -7,6 +7,8 @@
<img src="../../assets/gw/ny-banner.jpg" alt="">
</div>
</div>
<div class="back" @click="goback"> <i class="el-icon-d-arrow-left"></i> 返回</div>
<!-- new -->
<div class="content-box" >
<div class="title_">{{info.contentTitle}}</div>
@ -75,6 +77,9 @@ export default {
},
methods: {
goback(){
this.$router.go(-1)
},
//
getCurrentActive(value) {
if (this.currentActive == value) {
@ -545,4 +550,12 @@ export default {
min-height:400px;
}
.back{
width: 80%;
margin: 15px auto;
display: flex;
align-items: center;
cursor: pointer;
color: #00A0E8;
}
</style>