金诚优选前端代码
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.
 
 
 
 
 

125 lines
2.4 KiB

<template>
<view>
<lf-nav title="会员服务" :showIcon="true"></lf-nav>
<view class="content">
<view class="head">
<image mode="aspectFill" src="https://picsum.photos/seed/picsum/200/300"></image>
</view>
<view class="main">
<view class="item" v-for="(item, index) in 9" :key="index">
<image class="img"></image>
<view class="title">会员饮品</view>
<view class="desc">每月免费赠饮</view>
</view>
</view>
<view style="height: 120rpx;"></view>
<view class="fixed">
<!-- <view class="btn1" hover-class="lf-opacity" @click="$url('/pages/user/my/chatonline')">在线客服</view> -->
<view class="btn2" hover-class="lf-opacity">拨打客服电话</view>
</view>
</view>
</view>
</template>
<script>
export default {
data(){
return {
}
},
onLoad(){
},
methods: {
}
}
</script>
<style lang="scss" scoped="scoped">
.content{
padding: 30rpx 32rpx;
.head{
width: 686rpx;
height: 300rpx;
border-radius: 20rpx;
overflow: hidden;
&>image{
width: 100%;
height: 100%;
}
}
.main{
width: 100%;
display: flex;
flex-wrap: wrap;
.item{
width: 200rpx;
height: max-content;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 40rpx;
margin-right: 43rpx;
&:nth-child(3n){
margin-right: 0rpx;
}
.img{
width: 200rpx;
height: 200rpx;
background-color: #D8D8D8;
border-radius: 20rpx;
}
.title{
font-size: 28rpx;
color: #222222;
margin-top: 20rpx;
}
.desc{
font-size: 24rpx;
color: #777777;
margin-top: 10rpx;
}
}
}
.fixed{
height: 120rpx;
width: 750rpx;
position: fixed;
bottom: 0;
left: 0;
z-index: 2;
background-color: #FFFFFF;
border-top: 1rpx solid #e5e5e5;
box-sizing: border-box;
padding: 0 32rpx;
display: flex;
justify-content: space-between;
align-items: center;
.btn1{
width: 243rpx;
height: 100rpx;
border-radius: 50rpx;
border: 2rpx solid #15716E;
display: flex;
justify-content: center;
align-items: center;
color: #15716E;
font-size: 32rpx;
}
.btn2{
// width: 423rpx;
width: 686rpx;
height: 100rpx;
background: #15716E;
border-radius: 50rpx;
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
}
}
</style>