oil-station/gasStation-uni/pagesMy/invite/details.vue

115 lines
2.0 KiB
Vue
Raw Normal View History

2024-09-24 16:51:04 +08:00
<template>
<view class="content">
<view class="container">
2024-09-24 17:08:49 +08:00
<view class="box-hang">
<view class="dis">活动名称</view>
<view class="" >
<text>推荐会员消费有礼</text>
</view>
</view>
<view class="box-hang">
<view class="dis">活动时间</view>
<view class="" >
<text>长期有效</text>
</view>
</view>
<view class="box-hang">
<view class="dis">推荐人等级</view>
<view class="" >
<text>普通会员白金会员</text>
</view>
</view>
<view class="box-hang">
<view class="dis">支付方式</view>
<view class="" >
<text>微信支付宝云闪付现金pos刷卡</text>
</view>
</view>
<view class="box-hang">
<view class="dis">赠送优惠券</view>
<view class="" >
<text>50元优惠券</text>
</view>
</view>
<view class="box-hang">
<view class="dis">赠送积分</view>
<view class="" >
<text>20</text>
</view>
</view>
<view class="box-hang">
<view class="dis">赠送成长值</view>
<view class="" >
<text>2成长值</text>
</view>
</view>
2024-09-24 16:51:04 +08:00
</view>
</view>
</template>
<script>
import request from '../../utils/request';
export default {
data() {
return {
title: '',
List: [],
pageNo: 1,
pageSize: 10,
totalPage: '',
}
},
2024-09-24 17:08:49 +08:00
onLoad() {},
2024-09-24 16:51:04 +08:00
onPullDownRefresh() {
//下拉刷新
uni.stopPullDownRefresh()
},
onReachBottom() {
// 触底加载
if (this.pageNo >= this.totalPage) {
2024-09-24 17:08:49 +08:00
2024-09-24 16:51:04 +08:00
} else {
this.pageNo++
}
},
components: {
},
methods: {
goback() {
uni.navigateBack()
}
}
}
</script>
<style scoped lang="scss">
.content {
background: #f4f5f6;
}
.container {
width: 100%;
height: 100vh;
box-sizing: border-box;
2024-09-24 17:08:49 +08:00
padding-top: 12px;
}
.box-hang {
background-color: white;
width: 96%;
display: flex;
box-sizing: border-box;
padding: 15px 15px;
border-bottom: 1px solid #f4f5f6;
margin: 0 auto;
font-size: 14px;
}
2024-09-24 16:51:04 +08:00
2024-09-24 17:08:49 +08:00
.dis {
color: #666666;
width: 30%;
2024-09-24 16:51:04 +08:00
}
2024-09-24 17:08:49 +08:00
</style>