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.
 
 
 

90 lines
3.0 KiB

<template>
<view class="personal-collect">
<view class="personal-user">
<view style="width: 100%; margin-top: 10px;">
<view style="width: 100%;text-align: center;">
<img src="https://catmdogf.oss-cn-shanghai.aliyuncs.com/CMDF/front/personal/index/avatar_1.png" style="width: 66px; height: 66px;" mode="widthFix"></img>
</view>
<!-- <view style="width: 100%;text-align: center;">
<img src="https://catmdogf.oss-cn-shanghai.aliyuncs.com/CMDF/front/personal/index/cmdf_text.png"style="width:55px;height: 16px;" mode="widthFix"></img>
</view> -->
</view>
<!-- <view class="personal-collect-tips">
再下单{{dayNumber}}天订单可获得好礼
</view> -->
<view class="personal-collect-use-direction">
<uni-card title="[使用说明]" margin="15px">
<view class="uni-body">
<view class="personal-collect-use-direction-title">1.活动概述</view>
<view class="personal-collect-use-direction-content">
a.适用对象猫妈狗爸品牌有效会员
</view>
<view class="personal-collect-use-direction-content">
b.活动规则会员有效期内累计下单10次服务即可获得单次服务兑换券1张
</view>
<view class="personal-collect-use-direction-title">2.细则说明</view>
<view class="personal-collect-use-direction-content">
a.时间要求需要在会员有效期内进行下单方可参与集点累计
</view>
<view class="personal-collect-use-direction-content">
b.次数要求累计下单10次服务即上门服务次数若1天1次则计成功下单1次1天2次则计成功下单2次以此类推
</view>
<view class="personal-collect-use-direction-content">
c.优惠说明累计下单10次后即可获得1张单次服务兑换券即可在自领取到该优惠券的365个自然日内使用可减免1次上门服务费用下单时可直接使用扣减
</view>
<view class="personal-collect-use-direction-content">
d.其他在获得1张单次服务兑换券后累计天数清零将重新开始累计
</view>
</view>
</uni-card>
</view>
</view>
</view>
</template>
<script>
export default{
data(){
return{
dayNumber:5,
}
}
}
</script>
<style lang="scss">
.personal-collect{
.personal-user{
display: flex;
justify-content: center;
flex-wrap: wrap;
align-content:flex-start;
width: 100%;
height: 226px;
flex-shrink: 0;
background: linear-gradient(0deg, #F5F5F7 0%, #FFBF60 99.41%);
.personal-collect-tips{
color: #B78B43;
text-align: center;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
margin: 10px 0;
}
.personal-collect-use-direction-title{
color: #333;
font-size: 14px;
margin-bottom: 10px;
}
.personal-collect-use-direction-content{
color: #777;
font-size: 14px;
margin-bottom: 5px;
}
}
}
</style>