diff --git a/Host/Views.Mobile/User/MyRefundOrders.cshtml b/Host/Views.Mobile/User/MyRefundOrders.cshtml index 4bdcc59..ee1734c 100644 --- a/Host/Views.Mobile/User/MyRefundOrders.cshtml +++ b/Host/Views.Mobile/User/MyRefundOrders.cshtml @@ -121,7 +121,7 @@ 实付金额: - {{currentOrder.paymentamount}} + {{currentOrder.payamount}} 退款金额: @@ -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(); diff --git a/Host/Views/User/MyRefundOrders.cshtml b/Host/Views/User/MyRefundOrders.cshtml index f388e7c..b3b245f 100644 --- a/Host/Views/User/MyRefundOrders.cshtml +++ b/Host/Views/User/MyRefundOrders.cshtml @@ -71,6 +71,7 @@ 连接数 退款时长 退款单价 + 实付金额 退款金额 @foreach (var item in Model.List) @@ -85,6 +86,7 @@ @item.ConnectCount @item.DayCount @item.DayPrice + @item.PaymentAmount @item.RefundAmount }