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.
135 lines
2.7 KiB
135 lines
2.7 KiB
<template>
|
|
<view class="content" :class="test!=0?'he':''">
|
|
<navigation>
|
|
promotion record
|
|
</navigation>
|
|
<view class="prore_body">
|
|
<view class="prore_lev">
|
|
<view class="level" v-for="(item,index) in levelCon" :key="item.id" @click="qiehuan(index)" :class="index==qie?'on':''">
|
|
{{item.text}}
|
|
</view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
<view class="noRes" v-show="test==0">
|
|
<view class="imgcon">
|
|
<image src="../../../../static/promo/[email protected]" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="res">
|
|
No results
|
|
</view>
|
|
</view>
|
|
<view class="record_body">
|
|
<view class="record_item flex" v-for="(item,index) in promotionRecord" :key="item.id">
|
|
<view class="numcon">
|
|
<image src="../../../../static/color/bg_er@3x(4).png" mode="aspectFit" class="recordTou"></image>
|
|
<view class="num">
|
|
|
|
<view class="rec">
|
|
<view class="Nop1">
|
|
{{item.nickname}}
|
|
</view>
|
|
<view class="Nop2">
|
|
{{item.addTime}}
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="time">
|
|
{{item.mobile}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import api from '@/utils/api'
|
|
import utils from '@/utils'
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
import index from '@/utils/index'
|
|
export default{
|
|
data(){
|
|
return{
|
|
test:0,
|
|
promotionRecord:[],
|
|
qie:0,
|
|
level:1,
|
|
pageSize:3,
|
|
totalElements:'',
|
|
levelCon:[
|
|
{
|
|
id:1,
|
|
text:'level1'
|
|
},
|
|
{
|
|
id:2,
|
|
text:'level2'
|
|
},
|
|
],
|
|
}
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
this.getBounsRecord();
|
|
|
|
|
|
|
|
},
|
|
onReachBottom() {
|
|
this.pageSize += 3;
|
|
if(this.pageSize>this.totalElements){
|
|
return;
|
|
}
|
|
|
|
this.getBounsRecord()
|
|
|
|
},
|
|
methods:{
|
|
qiehuan(i){
|
|
this.qie=i;
|
|
this.level=i+1;
|
|
this.getBounsRecord();
|
|
},
|
|
|
|
getBounsRecord(){
|
|
|
|
const post = api.promotionRecords({
|
|
"ticket": uni.getStorageSync('logInfo').data,
|
|
"level":this.level,
|
|
"pageNumber": 1,
|
|
"pageSize": this.pageSize,
|
|
})
|
|
post.then(res => {
|
|
this.totalElements=res.data.totalElements;
|
|
if(res.data.content){
|
|
this.promotionRecord=res.data.content;
|
|
for(var i=0;i<this.promotionRecord.length;i++){
|
|
this.promotionRecord[i].addTime=index.formatyymmddhhmmss(this.promotionRecord[i].addTime);
|
|
}
|
|
this.test=this.promotionRecord.length;
|
|
console.log(res.data)
|
|
}else{
|
|
console.log(res,555555555555);
|
|
console.log(123123)
|
|
}
|
|
})
|
|
.catch(e => {
|
|
uni.showToast({
|
|
title: e,
|
|
icon: 'none',
|
|
duration: 2500
|
|
})
|
|
})
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|