景徳镇旅游微信小程序
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.
 
 
 

87 lines
1.7 KiB

<template>
<!-- 非遗体验 -->
<view class="experience">
<navbar title="非遗体验" leftClick @leftClick="$utils.navigateBack" />
<view class="experience-img">
<image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode="aspectFill" />
</view>
<view class="experience-box" v-for="(item,index) in 10" :key="index">
<view class="experience-box-img">
<uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" radius="16rpx" width="100%" height="360rpx"
:fade="false" />
</view>
<view class="experience-box-font">
<view style="font-weight: 600;">孙天天陶瓷工作室</view>
<view style="font-size: 24rpx; color: #999999;">开放时间0800-2100</view>
<view class="experience-box-button">
<view>线上预订</view>
</view>
</view>
</view>
<tabber/>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style scoped lang="scss">
.experience {
.experience-img {
height: 400rpx;
image {
height: 100%;
width: 100%;
}
}
.experience-box {
width: 94%;
margin-left: 3%;
margin-top: 20rpx;
background-color: #fff;
box-shadow: 0px 0px 3px 0px #000;
border-radius: 12rpx;
.experience-box-img {
width: 94%;
margin-left: 3%;
padding-top: 20rpx;
}
.experience-box-font {
width: 94%;
margin-left: 3%;
margin-top: 30rpx;
.experience-box-button {
display: flex;
justify-content: flex-end;
align-items: center;
font-size: 28rpx;
color: #fff;
padding-bottom: 40rpx;
view {
padding: 10rpx 40rpx;
border-radius: 40rpx;
background-color: #C83741;
}
}
}
}
}
</style>