|
|
@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
.delete {
|
|
|
|
|
|
|
|
text-decoration-line: line-through;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
<div ui-view>
|
|
|
|
<div ui-view>
|
|
|
|
<section class="content-header">
|
|
|
|
<section class="content-header">
|
|
|
|
<h1>Bill QR Code</h1>
|
|
|
|
<h1>Bill QR Code</h1>
|
|
|
@ -95,7 +100,8 @@
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
<tr ng-repeat="bill in bills">
|
|
|
|
<tr ng-repeat="bill in bills"
|
|
|
|
|
|
|
|
ng-class="{'delete':bill.status==2}">
|
|
|
|
<td ng-bind="bill.order_amount"></td>
|
|
|
|
<td ng-bind="bill.order_amount"></td>
|
|
|
|
<th ng-bind="bill.client_order_id"></th>
|
|
|
|
<th ng-bind="bill.client_order_id"></th>
|
|
|
|
<td ng-bind="bill.create_time"></td>
|
|
|
|
<td ng-bind="bill.create_time"></td>
|
|
|
|