连云港陪玩陪聊
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chunwan/pages/news/fangan.vue

74 lines
1.4 KiB

<template>
<view class="fangan">
<view class="item" @click="toPage()">
<image src="@/static/lvyou/fanganbg@2x.png"></image>
<view class="title">枣庄市出发台儿庄古城微山湖 风景名胜区故宫博物馆3日游</view>
<view class="desc">3/总长902.2km/25个景点</view>
</view>
<view class="item" @click="toPage()">
<image src="@/static/lvyou/fanganbg2@2x.png"></image>
<view class="title">枣庄市出发台儿庄古城微山湖 风景名胜区故宫博物馆3日游</view>
<view class="desc">3/总长902.2km/25个景点</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
toPage() {
uni.navigateTo({
url: "/pages/news/videoDetail"
})
}
}
}
</script>
<style scoped lang="scss">
.fangan{
padding: 0 25rpx;
overflow: hidden;
.item{
width: 702rpx;
height: 360rpx;
background: #FFFFFF;
border-radius: 20rpx;
overflow: hidden;
position: relative;
margin-top: 20rpx;
image{
width: 100%;
height: 100%;
}
.title{
width: 582rpx;
height: 91rpx;
font-weight: 500;
font-size: 38rpx;
color: #FFFFFF;
line-height: 54rpx;
position: absolute;
left: 25rpx;
top: 200rpx;
z-index: 2;
}
.desc{
width: 582rpx;
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
line-height: 54rpx;
position: absolute;
left: 25rpx;
bottom: 0;
z-index: 2;
}
}
}
</style>