overview.blade.php
2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<table class="table table-striped table-hover">
<tr>
<th>租借景点</th>
<td><?= $info[0]->spotname ?></td>
</tr>
<tr>
<th>租借机柜号</th>
<td><?= $info[0]->mac_no ?></td>
</tr>
<tr>
<th>租借类型</th>
<td>
<?php if ($info[0]->rent_type == 1) { ?>
现场租借
<?php } else { ?>
预约租借
<?php } ?>
</td>
</tr>
<tr>
<th>租借单号</th>
<td><?= $info[0]->power_no ?></td>
</tr>
<tr>
<th>租借充电宝编号</th>
<td><?= $info[0]->rent_no ?></td>
</tr>
<tr>
<th>租借仓口号</th>
<td><?= $info[0]->rent_hatch_no ?></td>
</tr>
<tr>
<th>租借数量</th>
<td><?= $info[0]->number ?></td>
</tr>
<tr>
<th>租金(每天价格)(单位/元)</th>
<td><?= $info[0]->one_day_price*0.01 ?></td>
</tr>
<tr>
<th>应收金额(单位/元)</th>
<td><?= $info[0]->total *0.01?></td>
</tr>
<tr>
<th>实收金额</th>
<td><?= $info[0]->real_total *0.01 ?></td>
</tr>
<tr>
<th>租借时间</th>
<td><?= $info[0]->add_time ?></td>
</tr>
<tr>
<th>归还时间</th>
<td><?= $info[0]->return_time ?></td>
</tr>
<tr>
<th>是否归还</th>
<td>
<?php if ($info[0]->is_return == 1) { ?>
归还
<?php } else { ?>
未归还
<?php } ?>
</td>
</tr>
<tr>
<th>是否退款</th>
<td>
<?php if($info[0]->refund_no){?>
已退款
<?php }else{?>
未退款
<?php }?>
</td>
</tr>
<tr>
<th>退款单号</th>
<td><?= $info[0]->refund_no ?></td>
</tr>
<tr>
<th>用户名</th>
<td><?= $info[0]->nick_name ?></td>
</tr>
<tr>
<th>用户手机号</th>
<td><?= $info[0]->phone?></td>
</tr>
</table>
{{--<div class="box box-success">--}}
{{--<div class="box-body">--}}
{{--<a href="#"--}}
{{--data-method="delete"--}}
{{--data-trans-button-cancel="{{trans('buttons.general.cancel')}}"--}}
{{--data-trans-button-confirm="{{trans('buttons.general.crud.delete')}}"--}}
{{--data-trans-title= "{{trans('strings.backend.general.are_you_sure')}}"--}}
{{--class="btn btn-xs btn-danger"><i class="fa fa-times" data-toggle="tooltip" data-placement="top" title="{{trans('buttons.general.crud.delete')}}"></i></a>';--}}
{{--<div class="clearfix"></div>--}}
{{--</div><!-- /.box-body -->--}}
{{--</div><!--box-->--}}