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

View File

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