This commit is contained in:
“wanyongkang”
2021-03-16 14:33:20 +08:00
parent f8665d9d14
commit 02519d99e4
2 changed files with 6 additions and 2 deletions

View File

@@ -121,7 +121,7 @@
</tr>
<tr>
<td>实付金额:</td>
<td>{{currentOrder.paymentamount}}</td>
<td>{{currentOrder.payamount}}</td>
</tr>
<tr>
<td>退款金额:</td>
@@ -173,7 +173,8 @@
account:"",
orderamount:"",
couponamount:"",
payamount:""
payamount:"",
refundamount:""
}
},
computed: {
@@ -240,6 +241,7 @@
payamount: $(_self).attr('a-payamount'),
refundresttime: $(_self).attr('a-refundresttime'),
payamount: $(_self).attr('a-payamount'),
refundamount: $(_self).attr('a-refundamount'),
}
app.setOrderInfo(currentOrder);
$(_self).show();

View File

@@ -71,6 +71,7 @@
<th>连接数</th>
<th>退款时长</th>
<th>退款单价</th>
<th>实付金额</th>
<th>退款金额</th>
</tr>
@foreach (var item in Model.List)
@@ -85,6 +86,7 @@
<td>@item.ConnectCount</td>
<td>@item.DayCount</td>
<td>@item.DayPrice</td>
<td>@item.PaymentAmount</td>
<td>@item.RefundAmount</td>
</tr>
}