|
|
@ -14,13 +14,16 @@
|
|
|
|
white-space: normal;
|
|
|
|
white-space: normal;
|
|
|
|
word-break: break-all;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weui_cell:before {
|
|
|
|
.weui_cell:before {
|
|
|
|
left: 0px;
|
|
|
|
left: 0px;
|
|
|
|
border-top: 1px solid #10B24C;
|
|
|
|
border-top: 1px solid #10B24C;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weui_cell {
|
|
|
|
.weui_cell {
|
|
|
|
line-height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.client {
|
|
|
|
.client {
|
|
|
|
color: white;
|
|
|
|
color: white;
|
|
|
|
font-size: 20px;
|
|
|
|
font-size: 20px;
|
|
|
@ -31,6 +34,7 @@
|
|
|
|
line-height: 45px;
|
|
|
|
line-height: 45px;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.orderCells {
|
|
|
|
.orderCells {
|
|
|
|
margin: 6%;
|
|
|
|
margin: 6%;
|
|
|
|
border: 1px solid #979797;
|
|
|
|
border: 1px solid #979797;
|
|
|
@ -63,10 +67,10 @@
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<p>Price</p>
|
|
|
|
<p>Price</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="weui_cell_ft">[[${order['currency']}]] [[${#numbers.formatDecimal(order['total_amount'],1,2)}]]</div>
|
|
|
|
<div class="weui_cell_ft">[[${order['currency']}]] [[${#numbers.formatDecimal(order['total_amount'],1,2)}]]
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:if="${customer!=null}">
|
|
|
|
</div>
|
|
|
|
<div class="weui_cell">
|
|
|
|
<div class="weui_cell" th:if="${customer!=null}">
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<p>Customer</p>
|
|
|
|
<p>Customer</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -74,19 +78,22 @@
|
|
|
|
<img data-th-src="@{${customer['headimg']}}" class="headimg"> <span th:text="${customer.nickname}"></span>
|
|
|
|
<img data-th-src="@{${customer['headimg']}}" class="headimg"> <span th:text="${customer.nickname}"></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="weui_cell">
|
|
|
|
<div class="weui_cell">
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<p>Customer Paid</p>
|
|
|
|
<p>Customer Paid</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="weui_cell_ft">[[${order['currency']}]] [[${#numbers.formatDecimal(order['customer_payment_amount'],1,2)}]]</div>
|
|
|
|
<div class="weui_cell_ft">[[${order['currency']}]]
|
|
|
|
|
|
|
|
[[${#numbers.formatDecimal(order['customer_payment_amount'],1,2)}]]
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:if="${order.coupon_payment_amount>0}">
|
|
|
|
<div th:if="${order.coupon_payment_amount>0}">
|
|
|
|
<div class="weui_cell">
|
|
|
|
<div class="weui_cell">
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<div class="weui_cell_bd weui_cell_primary">
|
|
|
|
<p>RoyalPay Subsidies</p>
|
|
|
|
<p>RoyalPay Subsidies</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="weui_cell_ft">[[${order['currency']}]] [[${#numbers.formatDecimal(order['coupon_payment_amount'],1,2)}]]</div>
|
|
|
|
<div class="weui_cell_ft">[[${order['currency']}]]
|
|
|
|
|
|
|
|
[[${#numbers.formatDecimal(order['coupon_payment_amount'],1,2)}]]
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|