master
yuan 7 years ago
parent f3f6af80f6
commit 2f2d21f03e

@ -82,7 +82,7 @@ public class PartnerBillServiceImpl implements PartnerBillService {
}
private String getQRCodeImg(JSONObject bill){
return PlatformEnvironment.getEnv().concatUrl("api/v1.0/business/bills/"+bill.getString("bill_code_id"));
return PlatformEnvironment.getEnv().concatUrl("api/v1.0/share_code/business/bills/"+bill.getString("bill_code_id"));
}
@Override

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

Loading…
Cancel
Save