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

170 lines
4.7 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-24 19:59:44 +08:00
<view class="list-item" v-for="(item,index) in memberData" :key="index" @click.stop="handleBack(item)">
2023-05-19 16:09:25 +08:00
<view class="item-title">
<view class="item-phone">
<view></view>
<text>充值号码{{item.userPhone}}</text>
</view>
2023-05-25 14:33:27 +08:00
<button v-show="item.bool && item.refundStatus == 0" @click.stop="handleService(item)">退</button>
2023-05-29 20:41:44 +08:00
<view v-show="item.refundStatus != 0">{{list[item.refundStatus]}}</view>
2023-05-18 18:03:06 +08:00
</view>
2023-05-17 15:25:16 +08:00
<view class="item-text">
2023-06-01 11:24:27 +08:00
<text>日期{{$util.timestampToTime(item.stringCreateTime)}}</text>
2023-06-01 14:16:20 +08:00
<text>充值档次{{item.grade}}</text>
2023-05-17 15:25:16 +08:00
</view>
</view>
2023-05-25 17:25:16 +08:00
<u-empty v-show="!memberData.length" text="暂无数据" mode="list"></u-empty>
2023-06-01 14:16:20 +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-25 14:33:27 +08:00
memberOrderInfo,memberApplyRefund,memberOrderInfoByPhone
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-29 20:41:44 +08:00
memberData:[],
list:['未退款','退款申请中','已退款','退款中']
2023-05-17 15:25:16 +08:00
};
},
2023-05-18 18:03:06 +08:00
async onLoad() {
2023-05-24 19:59:44 +08:00
await this.getList()
2023-05-17 15:25:16 +08:00
},
2023-05-18 18:03:06 +08:00
watch:{
2023-05-25 14:33:27 +08:00
keyword :Debounce (async function (){
if(this.keyword == ''){
await this.getList()
}else{
await this.searchList()
}
2023-05-18 18:03:06 +08:00
},1000)
},
2023-05-17 15:25:16 +08:00
methods: {
2023-05-24 19:59:44 +08:00
handleBack(item){
uni.navigateTo({
url:`/pages/member_back/index?userPhone=${item.userPhone}&grade=${item.grade}`
})
},
2023-05-25 14:33:27 +08:00
async searchList(){
let milliseconds = 2 * 3600 * 1000 // 7200000 毫秒
let timestamp = new Date().getTime()
const res = await memberOrderInfoByPhone(this.keyword)
if(res.data){
const arr = res.data.map((item) => {
return {
...item,
bool:item.createTime+milliseconds>timestamp
}
})
this.memberData = arr
}else{
this.memberData = []
}
},
2023-05-24 19:59:44 +08:00
async getList(){
let milliseconds = 2 * 3600 * 1000 // 7200000 毫秒
let timestamp = new Date().getTime()
const res = await memberOrderInfo()
2023-05-25 14:33:27 +08:00
if(res.data){
const arr = res.data.map((item) => {
return {
...item,
bool:item.createTime+milliseconds>timestamp
}
})
this.memberData = arr
}else{
this.memberData = []
}
2023-05-24 19:59:44 +08:00
},
2023-05-25 14:33:27 +08:00
async handleService(item){
await memberApplyRefund({orderId:item.id,type:3})
2023-05-24 19:59:44 +08:00
this.$util.Tips({
title: '申请成功'
});
await this.getList()
2023-05-19 16:09:25 +08:00
}
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;
2023-05-25 11:08:25 +08:00
background: url(../../static/images/memberBg.png);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
2023-05-25 17:25:16 +08:00
.u-empty{
margin-top: 20% !important;
::v-deep .u-icon__icon{
font-size: 140rpx !important;
}
::v-deep .u-empty__text{
font-size: 30rpx !important;
}
}
2023-05-19 16:09:25 +08:00
.box-seach{
2023-05-25 11:08:25 +08:00
z-index: 999;
2023-05-25 14:33:27 +08:00
padding: 0 40rpx;
2023-05-19 16:09:25 +08:00
width: 100%;
position: fixed;
2023-05-25 14:33:27 +08:00
top: 8%;
2023-05-19 16:09:25 +08:00
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-06-01 14:16:20 +08:00
padding: 20rpx 12rpx;
2023-05-18 18:03:06 +08:00
background: #fff;
2023-05-17 15:25:16 +08:00
margin-top: 20rpx;
display: flex;
2023-06-01 14:16:20 +08:00
flex-direction: column;
2023-05-17 15:25:16 +08:00
justify-content: space-between;
2023-05-18 18:03:06 +08:00
font-size: 30rpx;
2023-05-17 15:25:16 +08:00
}
}
}
</style>