kaiguan-zfb/page_user/order_detail.vue

227 lines
4.4 KiB
Vue
Raw Normal View History

2024-03-13 10:54:22 +08:00
<template>
<view>
2024-08-06 18:04:09 +08:00
<u-navbar title="收支详情" :border-bottom="false" :background="bgc" back-icon-color="#fff" title-color='#fff'
title-size='36' height='50'></u-navbar>
2024-03-25 19:46:07 +08:00
<view class="cont">
<view class="order_card">
<view class="cardtop">
2024-08-06 18:04:09 +08:00
<!-- <view class="text" v-if="list.status == 2">
2024-05-10 17:37:36 +08:00
已支付
</view>
<view class="text" v-if="list.status == 1">
未支付
</view>
<view class="text" v-if="list.status == 3">
已退款
</view>
<view class="text" v-if="list.status == 4">
已取消(用户)
</view>
<view class="text" v-if="list.status == 5">
已取消(系统)
</view>
<view class="text" v-if="list.status == 6">
支付中
2024-03-25 19:46:07 +08:00
</view>
2024-06-08 18:04:47 +08:00
<view class="num" v-if="list.type == 1">
2024-08-06 18:04:09 +08:00
{{list.suitTime}} 分钟
{{list.money}}
2024-03-25 19:46:07 +08:00
</view>
2024-06-08 18:04:47 +08:00
<view class="text" v-if="list.type == 1">
充值金额
2024-03-25 19:46:07 +08:00
</view>
2024-06-08 18:04:47 +08:00
<view class="nums" v-if="list.type == 2">
提现金额{{list.money}}
2024-08-06 18:04:09 +08:00
</view> -->
<view class="num">
<view class="info_li">
<view class="text">
变动金额
</view>
<view class="text" style="color: #8883F0;font-size: 60rpx;">
{{list.amount}}
</view>
</view>
2024-06-08 18:04:47 +08:00
</view>
2024-08-06 18:04:09 +08:00
2024-03-25 19:46:07 +08:00
</view>
<view class="card_bot">
<view class="info_li">
2024-08-06 18:04:09 +08:00
<view class="text">
变动日期
2024-06-08 18:04:47 +08:00
</view>
2024-03-13 10:54:22 +08:00
<view class="text">
2024-03-25 19:46:07 +08:00
{{list.createTime}}
2024-03-13 10:54:22 +08:00
</view>
2024-03-25 19:46:07 +08:00
</view>
2024-08-06 18:04:09 +08:00
<view class="info_li">
2024-03-25 19:46:07 +08:00
<view class="text">
2024-08-06 18:04:09 +08:00
变动前余额
2024-03-13 10:54:22 +08:00
</view>
<view class="text">
2024-08-06 18:04:09 +08:00
{{list.beforeBalance}}
2024-03-13 10:54:22 +08:00
</view>
</view>
2024-03-25 19:46:07 +08:00
<view class="info_li">
2024-08-06 18:04:09 +08:00
<view class="text">
变动后余额
2024-06-08 18:04:47 +08:00
</view>
2024-03-25 19:46:07 +08:00
<view class="text">
2024-08-06 18:04:09 +08:00
{{list.afterBalance}}
2024-03-13 10:54:22 +08:00
</view>
2024-03-25 19:46:07 +08:00
</view>
2024-08-06 18:04:09 +08:00
<view class="info_li">
<view class="text">
用户名称
2024-06-08 18:04:47 +08:00
</view>
2024-03-25 19:46:07 +08:00
<view class="text">
{{list.userName}}
2024-03-13 10:54:22 +08:00
</view>
</view>
2024-08-06 18:04:09 +08:00
<view class="info_li">
<view class="text">
变动原因
</view>
<view class="text">
{{list.reason}}
</view>
</view>
2024-03-13 10:54:22 +08:00
</view>
</view>
2024-03-25 19:46:07 +08:00
</view>
2024-03-13 10:54:22 +08:00
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
2024-05-21 18:02:34 +08:00
backgroundColor: "#8883f0",
2024-03-13 10:54:22 +08:00
},
2024-03-25 19:46:07 +08:00
list: {},
payType: ''
2024-03-13 10:54:22 +08:00
}
},
2024-07-17 17:59:51 +08:00
// 分享到好友(会话)
2024-08-06 18:04:09 +08:00
onShareAppMessage: function() {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function() {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
2024-03-25 19:46:07 +08:00
onLoad(option) {
// console.log(option)
this.getdetail(option.id)
},
2024-03-13 10:54:22 +08:00
methods: {
2024-03-25 19:46:07 +08:00
getdetail(id) {
2024-08-06 18:04:09 +08:00
this.$u.get("/app/recordBalance/" + id).then((res) => {
2024-03-25 19:46:07 +08:00
if (res.code == 200) {
this.list = res.data
}
2024-08-06 18:04:09 +08:00
})
2024-03-25 19:46:07 +08:00
},
2024-08-06 18:04:09 +08:00
2024-03-13 10:54:22 +08:00
}
}
</script>
2024-03-25 19:46:07 +08:00
<style lang="scss">
2024-08-06 18:04:09 +08:00
/deep/ .u-title {
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-08-06 18:04:09 +08:00
/deep/ .u-icon__icon {
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-08-06 18:04:09 +08:00
2024-03-25 19:46:07 +08:00
page {
2024-03-13 10:54:22 +08:00
background: #F7FAFE;
}
2024-03-25 19:46:07 +08:00
.cont {
display: flex;
// justify-content: center;
flex-wrap: wrap;
// width: 594rpx;
.order_card {
2024-03-13 10:54:22 +08:00
margin: 0 auto;
2024-03-25 19:46:07 +08:00
width: 700rpx;
height: 638rpx;
2024-05-10 17:37:36 +08:00
background-image: url('https://api.ccttiot.com/smartmeter/img/static/uXunwgElpYwvDbER83W0');
2024-03-25 19:46:07 +08:00
background-size: 100% 100%;
background-repeat: no-repeat;
.cardtop {
margin-top: 48rpx;
2024-08-06 18:04:09 +08:00
height: 190rpx;
2024-03-25 19:46:07 +08:00
.text {
text-align: center;
width: 100%;
2024-06-08 18:04:47 +08:00
height: 20rpx;
2024-03-13 10:54:22 +08:00
font-weight: 400;
font-size: 28rpx;
color: #808080;
2024-08-06 18:04:09 +08:00
margin-top: 20rpx;
2024-03-13 10:54:22 +08:00
}
2024-03-25 19:46:07 +08:00
.num {
text-align: center;
2024-08-06 18:04:09 +08:00
// margin-top: 18rpx;
padding-top: 10rpx;
box-sizing: border-box;
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
font-weight: 400;
// font-size: 60rpx;
color: #8883F0;
font-size: 36rpx;
}
.nums {
text-align: center;
padding-top: 48rpx;
2024-03-25 19:46:07 +08:00
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
font-weight: 400;
font-size: 60rpx;
color: #8883F0;
}
2024-08-06 18:04:09 +08:00
2024-03-25 19:46:07 +08:00
}
.card_bot {
margin: 0 auto;
margin-top: 20rpx;
width: 560rpx;
text-align: center;
.info_li {
2024-08-06 18:04:09 +08:00
margin-top: 20rpx;
2024-03-25 19:46:07 +08:00
width: 560rpx;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
.text {
font-weight: 400;
font-size: 28rpx;
color: #808080;
}
}
2024-03-13 10:54:22 +08:00
}
}
}
2024-03-25 19:46:07 +08:00
</style>