oil-station/gasStation-uni/pagesMy/moneyBalance/moneyBalance.vue
2024-01-04 15:19:02 +08:00

304 lines
5.7 KiB
Vue

<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">
<!-- <view class="kuangbox">使用规则 </view> -->
<view class="box-title">储值余额</view>
<view class="box-nmb">{{cardBalance}}</view>
<!-- <view class="dis-bt">
<view class="">累计获得0.00</view>
<view class="">已经抵用0.00</view>
</view> -->
</view>
<view class="box-gang">
<view class="">明细</view>
<!-- <view class="hui-anniu">全部 <u-icon name="arrow-down-fill" size="18"></u-icon> </view> -->
</view>
<view class="fuji">
<view class="mx-box" @click="godetails()" v-for="(item,index) in list" :key="index">
<view class="m-b-box">
<view class="box-name">加油站名称</view>
<view class="moneyname">充值成功</view>
</view>
<view class="y-bt">
<view class="sizehui">订单金额</view>
<view class="sizehei">{{item.rechargeBalance}}</view>
</view>
<view class="y-bt">
<view class="sizehui">优惠合计</view>
<view class="sizehong">{{item.obtain}}</view>
</view>
<view class="y-bt">
<view class="sizehui">订单时间</view>
<view class="sizehei">{{item.createTime}}</view>
</view>
<view class="dibu">
<view class="xiaanniu">评价有礼</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import request from "../../utils/request";
export default {
data() {
return {
list: [],
totalDetail: '',
show: false,
query: {
storeId: '',
mtUserId: '',
chainStoreId: '',
recordName: '储值卡',
pageNo: 1,
pageSize: 10
},
cardBalance: 0.00,
title: '',
}
},
components: {
},
onShow() {
this.query.storeId = uni.getStorageSync("storeId")
this.query.chainStoreId = uni.getStorageSync('chainStoreId')
this.list = []
this.getUserBalance();
this.getAllOrderList();
},
methods: {
// 查询全部充值订单
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();
}
})
},
godetails() {
uni.navigateTo({
url: '/pagesMy/details/details'
})
},
getUserBalance() {
request({
url: '/business/userManager/user/getUserBalanceApplet',
method: 'get',
params: this.query
}).then(res => {
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);
}
})
},
goback() {
uni.navigateBack()
}
}
}
</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;
}
.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>