cyywl_server/yudao-ui-app/pages/member_record/index.vue

128 lines
3.5 KiB
Vue
Raw Normal View History

2023-05-17 15:25:16 +08:00
<template>
<view class="box">
2023-05-19 16:09:25 +08:00
<view class="box-seach">
<u-search placeholder="按手机号搜索查询" v-model="keyword" border-color="#F94B78" height="70" margin="0 0 35rpx 0" placeholder-color="#9C9C9C" bg-color="#fff" :show-action="false"></u-search>
</view>
2023-05-18 18:03:06 +08:00
<view class="list-item" v-for="(item,index) in memberData" :key="index">
2023-05-19 16:09:25 +08:00
<view class="item-title">
<view class="item-phone">
<view></view>
<text>充值号码{{item.userPhone}}</text>
</view>
<button v-show="item.bool" @click="handleService(item.orderId)">退</button>
2023-05-18 18:03:06 +08:00
</view>
2023-05-17 15:25:16 +08:00
<view class="item-text">
2023-05-18 18:03:06 +08:00
<text>充值档次{{item.grade}}</text>
2023-05-19 11:34:07 +08:00
<text>日期{{item.stringCreateTime}}</text>
2023-05-17 15:25:16 +08:00
</view>
</view>
2023-05-19 16:09:25 +08:00
<u-navbar autoBack title="购买纪录"></u-navbar>
2023-05-17 15:25:16 +08:00
</view>
</template>
<script>
2023-05-18 18:03:06 +08:00
import {
2023-05-19 16:09:25 +08:00
memberOrderInfo,memberApplyRefund
2023-05-18 18:03:06 +08:00
} from '@/api/member.js';
import { Debounce } from '@/utils/validate.js'
2023-05-17 15:25:16 +08:00
export default {
2023-05-18 18:03:06 +08:00
name: "member_record",
2023-05-17 15:25:16 +08:00
data() {
return {
keyword:'',
2023-05-18 18:03:06 +08:00
memberData:[]
2023-05-17 15:25:16 +08:00
};
},
2023-05-18 18:03:06 +08:00
async onLoad() {
2023-05-19 16:09:25 +08:00
let milliseconds = 2 * 3600 * 1000 // 7200000 毫秒
let timestamp = new Date().getTime()
2023-05-18 18:03:06 +08:00
const res = await memberOrderInfo()
2023-05-19 16:09:25 +08:00
const arr = res.data.map((item) => {
return {
...item,
bool:item.createTime+milliseconds>timestamp
}
})
this.memberData = arr
2023-05-17 15:25:16 +08:00
},
2023-05-18 18:03:06 +08:00
watch:{
keyword :Debounce (function (){
this.memberData.sort((a,b) =>{
let aIndex = this.keyword.indexOf(a.userPhone)
let bIndex = this.keyword.indexOf(b.userPhone)
2023-05-19 11:34:07 +08:00
console.log(aIndex,bIndex)
2023-05-18 18:03:06 +08:00
if(aIndex > bIndex) return -1
if(aIndex < bIndex) return 1
if(a.userPhone == b.userPhone){
2023-05-19 11:34:07 +08:00
return a.stringCreateTime - b.stringCreateTime
2023-05-18 18:03:06 +08:00
}else{
2023-05-19 11:34:07 +08:00
if(a.stringCreateTime<b.stringCreateTime) return -1
if(a.stringCreateTime>b.stringCreateTime) return 1
2023-05-18 18:03:06 +08:00
return 0
}
})
},1000)
},
2023-05-17 15:25:16 +08:00
methods: {
2023-05-19 16:09:25 +08:00
async handleService(orderId){
await memberApplyRefund({orderId})
}
2023-05-17 15:25:16 +08:00
}
};
</script>
<style lang="scss" scoped>
.box {
2023-05-19 16:09:25 +08:00
margin-top: 10%;
padding: 20% 40rpx;
.box-seach{
padding: 10% 40rpx;
width: 100%;
position: fixed;
top: 3%;
left: 0;
}
2023-05-17 15:25:16 +08:00
.list-item{
2023-05-18 18:03:06 +08:00
margin-bottom: 26rpx;
padding: 30rpx 16rpx 25rpx 16rpx;
background: #FDF0F1;
2023-05-17 15:25:16 +08:00
border-radius: 20rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
2023-05-19 16:09:25 +08:00
.item-title{
2023-05-18 18:03:06 +08:00
display: flex;
2023-05-19 16:09:25 +08:00
justify-content: space-between;
.item-phone{
display: flex;
align-items: center;
font-size: 30rpx;
color: #E91D51;
view{
border-radius: 3rpx;
margin-right: 10rpx;
width: 5rpx;
height: 12rpx;
background: #E91D51;
}
}
button{
padding: 6rpx ;
font-size: 26rpx;
background: rgb(22,155,213);
color: #fff;
2023-05-18 18:03:06 +08:00
}
2023-05-17 15:25:16 +08:00
}
2023-05-19 16:09:25 +08:00
2023-05-17 15:25:16 +08:00
.item-text{
2023-05-18 18:03:06 +08:00
padding: 34rpx 12rpx;
background: #fff;
2023-05-17 15:25:16 +08:00
margin-top: 20rpx;
display: flex;
justify-content: space-between;
2023-05-18 18:03:06 +08:00
font-size: 30rpx;
2023-05-17 15:25:16 +08:00
}
}
}
</style>