9.24
This commit is contained in:
parent
c7670d1b27
commit
bf1165deba
@ -320,6 +320,12 @@
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "invite/details",
|
||||
"style": {
|
||||
"navigationBarTitleText": "活动详情"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "feedback/feedback",
|
||||
"style": {
|
||||
|
@ -1,7 +1,48 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<view class="container">
|
||||
|
||||
<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>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@ -19,26 +60,17 @@
|
||||
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.resetting() //重置方法
|
||||
this.getList() //调用请求
|
||||
},
|
||||
onLoad() {},
|
||||
onPullDownRefresh() {
|
||||
//下拉刷新
|
||||
this.resetting() //重置方法
|
||||
this.getList() //调用请求
|
||||
uni.stopPullDownRefresh()
|
||||
},
|
||||
onReachBottom() {
|
||||
// 触底加载
|
||||
if (this.pageNo >= this.totalPage) {
|
||||
uni.showToast({
|
||||
title: '没有下一页数据',
|
||||
icon: 'none'
|
||||
})
|
||||
|
||||
} else {
|
||||
this.pageNo++
|
||||
this.getList()
|
||||
}
|
||||
},
|
||||
|
||||
@ -46,36 +78,6 @@
|
||||
|
||||
},
|
||||
methods: {
|
||||
//滞空方法
|
||||
resetting() {
|
||||
this.pageNo = 1
|
||||
this.pageSize = 10
|
||||
this.totalPage = ''
|
||||
this.List = []
|
||||
},
|
||||
// 分页——网络请求
|
||||
async getList() {
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
});
|
||||
let res = await request({
|
||||
url: '网络请求',
|
||||
method: 'get',
|
||||
data: {
|
||||
pageNo: this.pageNo,
|
||||
pageSize: this.pageSize,
|
||||
}
|
||||
})
|
||||
if (res.code == 200) {
|
||||
uni.hideLoading(); //交互反馈
|
||||
if (this.pageNo != 1) {
|
||||
this.List = this.ruleList.concat(res.result.records)
|
||||
} else {
|
||||
this.List = res.result.records
|
||||
}
|
||||
this.totalPage = res.result.pages
|
||||
}
|
||||
},
|
||||
goback() {
|
||||
uni.navigateBack()
|
||||
}
|
||||
@ -92,6 +94,22 @@
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
box-sizing: border-box;
|
||||
|
||||
padding-top: 12px;
|
||||
}
|
||||
</style>
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
.dis {
|
||||
color: #666666;
|
||||
width: 30%;
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user