|
@@ -13,7 +13,7 @@
|
|
<p>退费订单</p><span>{{refund.refundOrderNo}}</span>
|
|
<p>退费订单</p><span>{{refund.refundOrderNo}}</span>
|
|
</view>
|
|
</view>
|
|
<view class="rechargeDet-list">
|
|
<view class="rechargeDet-list">
|
|
- <p>手续费</p><span>¥{{refund.proceduresAmount.toFixed(2)}}</span>
|
|
|
|
|
|
+ <p>手续费</p><span>¥{{refund.proceduresAmount!=null?refund.proceduresAmount.toFixed(2):''}}</span>
|
|
</view>
|
|
</view>
|
|
<view class="rechargeDet-list">
|
|
<view class="rechargeDet-list">
|
|
<p>退费时间</p><span>{{refund.applicationTime}}</span>
|
|
<p>退费时间</p><span>{{refund.applicationTime}}</span>
|
|
@@ -22,7 +22,7 @@
|
|
<p>退费渠道</p><span>{{refund.refundChannelText}}</span>
|
|
<p>退费渠道</p><span>{{refund.refundChannelText}}</span>
|
|
</view>
|
|
</view>
|
|
<view class="rechargeDet-list">
|
|
<view class="rechargeDet-list">
|
|
- <p>退费金额</p><span>¥{{refund.refundRealAmount.toFixed(2)}}</span>
|
|
|
|
|
|
+ <p>退费金额</p><span>¥{{refund.refundRealAmount!=null?refund.refundRealAmount.toFixed(2):''}}</span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="rechargeDet-main">
|
|
<view class="rechargeDet-main">
|
|
@@ -40,7 +40,7 @@
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
elderMode:false,
|
|
elderMode:false,
|
|
- refund :{}
|
|
|
|
|
|
+ refund :{"id":3,"regUserId":"c9ab09fb-1a91-4dc5-8573-cebb353cffae","refundAmount":0.01,"status":"0","refundOrderNo":"RE0525151604592452","refundTime":null,"refundChannel":"wechat","refundRealAmount":0.01,"proceduresAmount":0,"applicationTime":"2022-05-25 15:16","applicationBy":"c9ab09fb-1a91-4dc5-8573-cebb353cffae","examineTime":null,"examineBy":null,"remark":null,"createBy":"c9ab09fb-1a91-4dc5-8573-cebb353cffae","createTime":"2022-05-25 15:16","updateBy":null,"updateTime":null,"delFlag":false,"phone":null,"headImg":null,"applicationByN":null,"examineByN":null}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad(op){
|
|
onLoad(op){
|
|
@@ -107,7 +107,7 @@
|
|
@import "@/_theme.scss";
|
|
@import "@/_theme.scss";
|
|
.rechargeDet-head{
|
|
.rechargeDet-head{
|
|
background-color: #fff;
|
|
background-color: #fff;
|
|
- padding: 24px 0;
|
|
|
|
|
|
+ padding: 48rpx 0;
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
align-items: center;
|
|
@@ -116,25 +116,33 @@
|
|
align-items: flex-end;
|
|
align-items: flex-end;
|
|
justify-content: center;
|
|
justify-content: center;
|
|
font{
|
|
font{
|
|
|
|
+ @include themeify{
|
|
|
|
+ font-size:themed('font-size13');
|
|
|
|
+ line-height:themed('font-size13');
|
|
|
|
+ }
|
|
|
|
+ /*
|
|
font-size: 36px;
|
|
font-size: 36px;
|
|
- line-height: 36px;
|
|
|
|
|
|
+ line-height: 36px;*/
|
|
}
|
|
}
|
|
}
|
|
}
|
|
p{
|
|
p{
|
|
color:#999;
|
|
color:#999;
|
|
- margin-top: 4px;
|
|
|
|
|
|
+ margin-top: 8rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.rechargeDet-main{
|
|
.rechargeDet-main{
|
|
background-color: #fff;
|
|
background-color: #fff;
|
|
- padding-left: 16px;
|
|
|
|
- margin-top: 12px;
|
|
|
|
|
|
+ padding-left: 32rpx;
|
|
|
|
+ margin-top: 24rpx;
|
|
.rechargeDet-list{
|
|
.rechargeDet-list{
|
|
display: flex;
|
|
display: flex;
|
|
align-items: center;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
- padding: 12px 16px 12px 0;
|
|
|
|
- border-bottom: 1px solid #f7f7f7;
|
|
|
|
|
|
+ padding: 24rpx 32rpx 24rpx 0;
|
|
|
|
+ border-bottom: 2rpx solid #f7f7f7;
|
|
|
|
+ @include themeify{
|
|
|
|
+ font-size:themed('font-size1');
|
|
|
|
+ }
|
|
&:last-child{
|
|
&:last-child{
|
|
border-bottom: none;
|
|
border-bottom: none;
|
|
}
|
|
}
|