oil-station/gasStation-uni/pagesMy/moneyBalance/moneyBalance.vue

346 lines
7.4 KiB
Vue
Raw Normal View History

2023-11-27 09:24:16 +08:00
<template>
<view class="content">
<view class="container">
<view class="my-header">
<view class="my-icons" @click="goback"> <uni-icons type="left" size="16"></uni-icons> </view>
<view class="my-text">储值余额</view>
<view class="my-icons"></view>
</view>
<!-- 顶部区域 -->
<view class="top-box">
2024-01-03 09:11:56 +08:00
<!-- <view class="kuangbox">使用规则 </view> -->
2023-11-27 09:24:16 +08:00
<view class="box-title">储值余额</view>
2023-12-15 17:41:25 +08:00
<view class="box-nmb">{{cardBalance}}</view>
2023-12-21 18:11:46 +08:00
<!-- <view class="dis-bt">
2023-11-27 09:24:16 +08:00
<view class="">累计获得0.00</view>
<view class="">已经抵用0.00</view>
2023-12-21 18:11:46 +08:00
</view> -->
2023-11-27 09:24:16 +08:00
</view>
2024-01-27 09:05:50 +08:00
<!-- <view class="box-gang">
2023-11-27 09:24:16 +08:00
<view class="">明细</view>
2024-01-27 09:05:50 +08:00
<view class="hui-anniu">全部 <u-icon name="arrow-down-fill" size="18"></u-icon> </view>
</view> -->
2023-11-27 09:24:16 +08:00
<view class="fuji">
2024-01-27 09:05:50 +08:00
<view class="mx-box" v-for="(item,index) in list" :key="index">
2023-11-27 09:24:16 +08:00
<view class="m-b-box">
2024-01-27 09:05:50 +08:00
<!-- <view class="box-name">加油站名称</view> -->
<!-- <view class="moneyname">充值成功</view>payStatus -->
<view class="box-name">{{getStoreName(storeList,item.storeId)}}</view>
<view class="moneyname" v-if="item.payStatus=='paid'">已支付</view>
<view class="moneyname" v-else-if="item.payStatus=='payFail'">支付失败</view>
<view class="moneyname" v-else-if="item.payStatus=='refund'">已退款</view>
<view class="moneyname" v-else-if="item.payStatus=='refunding'">退款中</view>
<view class="moneyname" v-else>未支付</view>
</view>
<view class="y-bt">
<view class="sizehui">支付方式</view>
<!-- <view class="sizehei">{{item.paymentType}}</view> -->
<view class="sizehei" v-if="item.paymentType == 'CASH'">现金</view>
<view class="sizehei" v-else-if="item.paymentType == 'WECHAT'">微信</view>
<view class="sizehei" v-else-if="item.paymentType == 'ALIPAY'">支付宝</view>
<view class="sizehei" v-else-if="item.paymentType == 'UNIONPAY'">银联二维码</view>
2024-01-27 13:55:55 +08:00
<view class="sizehei" v-else-if="item.paymentType == 'xf'">消费</view>
2024-01-27 09:05:50 +08:00
<view class="sizehei" v-else>小程序码</view>
2023-11-27 09:24:16 +08:00
</view>
<view class="y-bt">
<view class="sizehui">订单金额</view>
2024-01-27 13:55:55 +08:00
<view class="sizehei" v-if="item.paymentType =='xf' ">{{'-'+item.rechargeBalance}}</view>
2023-11-27 09:24:16 +08:00
</view>
<view class="y-bt">
<view class="sizehui">优惠合计</view>
2024-01-27 13:55:55 +08:00
<view class="sizehong">{{item.obtain || 0}}</view>
2023-11-27 09:24:16 +08:00
</view>
<view class="y-bt">
<view class="sizehui">订单时间</view>
2023-12-21 18:11:46 +08:00
<view class="sizehei">{{item.createTime}}</view>
2023-11-27 09:24:16 +08:00
</view>
2024-01-27 09:05:50 +08:00
<!-- <view class="dibu">
2023-11-27 09:24:16 +08:00
<view class="xiaanniu">评价有礼</view>
2024-01-27 09:05:50 +08:00
</view> -->
2023-11-27 09:24:16 +08:00
</view>
</view>
</view>
</view>
</template>
<script>
2023-12-15 17:41:25 +08:00
import request from "../../utils/request";
2023-11-27 09:24:16 +08:00
export default {
data() {
return {
2023-12-21 18:11:46 +08:00
list: [],
totalDetail: '',
show: false,
query: {
storeId: '',
2024-01-04 15:19:02 +08:00
mtUserId: '',
chainStoreId: '',
2023-12-21 18:11:46 +08:00
recordName: '储值卡',
pageNo: 1,
pageSize: 10
},
2023-12-15 17:41:25 +08:00
cardBalance: 0.00,
2023-11-27 09:24:16 +08:00
title: '',
2024-01-27 09:05:50 +08:00
// 店铺列表信息
storeList: [],
2023-11-27 09:24:16 +08:00
}
},
components: {
2023-12-15 17:41:25 +08:00
},
onShow() {
2024-01-04 15:19:02 +08:00
this.query.storeId = uni.getStorageSync("storeId")
this.query.chainStoreId = uni.getStorageSync('chainStoreId')
2023-12-21 18:11:46 +08:00
this.list = []
this.getUserBalance();
this.getAllOrderList();
2024-01-27 09:05:50 +08:00
this.getStores();
2023-11-27 09:24:16 +08:00
},
methods: {
2024-01-27 09:05:50 +08:00
// 查询店铺列表信息
getStores() {
let _this = this;
request({
url: "business/storeInformation/store/list",
method: 'get',
}).then((res) => {
_this.storeList = res.data
})
},
2023-12-21 18:11:46 +08:00
// 查询全部充值订单
getAllOrderList() {
request({
url: 'business/marketingActivity/cardValueRecord/selectAllRecord',
method: 'get',
params: this.query
}).then((res) => {
if (res.code == 200) {
if (this.pageNo != 1) {
this.list = this.list.concat(res.data.records)
} else {
this.list = res.data.records
}
this.totalDetail = res.data.total
this.show = false
uni.hideLoading();
}
})
},
2023-11-27 09:24:16 +08:00
godetails() {
uni.navigateTo({
url: '/pagesMy/details/details'
})
},
2023-12-15 17:41:25 +08:00
getUserBalance() {
request({
2024-01-04 15:19:02 +08:00
url: '/business/userManager/user/getUserBalanceApplet',
2023-12-15 17:41:25 +08:00
method: 'get',
2024-01-04 15:19:02 +08:00
params: this.query
2023-12-15 17:41:25 +08:00
}).then(res => {
2024-01-04 15:19:02 +08:00
if (res.data) {
this.cardBalance = res.data.cardBalance,
this.myPoints = res.data.points,
/* if (res.data.refuelMoney!=null && res.data.refuelMoney!=""){
this.refuelMoney = JSON.parse(res.data.refuelMoney);
} */
this.refuelMoney = JSON.parse(res.data.refuelMoney);
console.log("333333333333333", this.refuelMoney);
2023-12-15 17:41:25 +08:00
}
})
},
2023-11-27 09:24:16 +08:00
goback() {
uni.navigateBack()
2024-01-27 09:05:50 +08:00
},
getStoreName(list, id) {
let name = "";
list.forEach(item => {
if (item.id == id) {
if (item.description != "" && item.description != null) {
name = item.name + "(" + item.description + ")"
} else {
name = item.name
}
}
})
return name;
},
2023-11-27 09:24:16 +08:00
}
}
</script>
<style scoped lang="scss">
.moni {
width: 100%;
}
.content {
background: #f4f5f6;
}
.container {
width: 100%;
height: 100vh;
box-sizing: border-box;
padding-top: 88px;
}
.my-header {
width: 100%;
height: 88px;
background: #ffffff;
display: flex;
align-items: center;
justify-content: space-between;
color: #000;
box-sizing: border-box;
padding: 0px 15px;
padding-top: 40px;
.my-icons {
width: 20px;
}
position: fixed;
top: 0px;
}
.top-box {
width: 90%;
// height: 105px;
border-radius: 8px;
background-color: #056cf2;
margin: 10px auto;
box-sizing: border-box;
padding: 10px;
color: white;
position: relative;
}
.kuangbox {
position: absolute;
top: 15px;
right: 15px;
box-sizing: border-box;
padding: 5px 10px;
background: #024192;
display: flex;
border-radius: 50px;
color: white;
font-size: 12px;
}
.dis-bt {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.box-title {}
.box-nmb {
font-size: 22px;
font-weight: bold;
margin-bottom: 15px;
}
.box-gang {
width: 90%;
margin: 10px auto;
display: flex;
align-items: center;
justify-content: space-between;
}
.hui-anniu {
box-sizing: border-box;
padding: 5px 10px;
background: #ebecef;
display: flex;
border-radius: 50px;
}
.fuji {
width: 100%;
box-sizing: border-box;
padding: 20px;
}
.mx-box {
width: 100%;
border-radius: 8px;
background-color: #ffffff;
box-sizing: border-box;
padding: 10px;
2024-01-27 09:05:50 +08:00
margin-top: 10px;
2023-11-27 09:24:16 +08:00
}
.m-b-box {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #dedede;
padding-bottom: 10px;
}
.y-bt {
display: flex;
align-items: center;
justify-content: space-between;
margin: 5px auto;
}
.box-name {
font-size: 16px;
font-weight: bold;
}
.moneyname {
font-size: 16px;
color: #056cf2;
}
.sizehui {
font-size: 14px;
color: #999999;
}
.sizehei {
font-size: 14px;
}
.sizehong {
font-size: 14px;
color: crimson;
}
.dibu {
display: flex;
align-items: center;
justify-content: flex-end;
}
.xiaanniu {
width: 90px;
background-color: #1678ff;
color: white;
border-radius: 50px;
height: 25px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
margin-top: 10px;
}
</style>