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.
108 lines
2.3 KiB
108 lines
2.3 KiB
<template>
|
|
<view class="content" :class="test!=0?'he':''">
|
|
<navigation>
|
|
apply record
|
|
</navigation>
|
|
<view class="prore_body">
|
|
</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 flex">
|
|
<view class="num">
|
|
<view class="rec">
|
|
<view class="Nop1">
|
|
No.{{item.orderNo}}
|
|
</view>
|
|
<view class="Nop2">
|
|
{{item.addTime}}
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="time">
|
|
<view class="money">
|
|
+{{item.tranAmt}}
|
|
</view>
|
|
<view class="nickname">
|
|
Complete
|
|
</view>
|
|
|
|
</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:[],
|
|
}
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
this.getBounsRecord();
|
|
|
|
|
|
|
|
},
|
|
methods:{
|
|
qiehuan(i){
|
|
this.qie=i;
|
|
this.level=i+1;
|
|
this.getBounsRecord();
|
|
},
|
|
getBounsRecord(){
|
|
uni.request({
|
|
url: '/start/api/summary/bonusOutRecords',
|
|
data: {
|
|
"ticket": uni.getStorageSync('logInfo').data,
|
|
"pageNumber": 1,
|
|
"pageSize": 20,
|
|
},
|
|
header: {
|
|
'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8' //自定义请求头信息
|
|
},
|
|
method: 'POST', //请求方式 或GET,必须为大写
|
|
success: (res) => {
|
|
if(res.data.data.content!=''){
|
|
this.promotionRecord=res.data.data.content;
|
|
for(var i=0;i<this.promotionRecord.length;i++){
|
|
this.promotionRecord[i].addTime=index.formatyymmddhhmmss(this.promotionRecord[i].addTime);
|
|
this.promotionRecord[i].orderNo = this.promotionRecord[i].orderNo.substring(13, 20);
|
|
}
|
|
this.test=this.promotionRecord.length;
|
|
console.log(res.data)
|
|
}else{
|
|
console.log(123123)
|
|
}
|
|
},
|
|
fail: (res) => {
|
|
console.log(res.data);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|