index.html
5.8 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<include file="public@header"/>
<link rel="stylesheet" href="__STATIC__/install/css/mdialog.css">
<style>
.popup,.popdown{
width: 250px;
height: 100px;
background-color: rgba(0,0,0,0.5);
position: fixed;
top: 50%;
transform: translateY(-50px);
left: 0;
right: 0;
margin: 0 auto;
border-radius: 5px;
color: #ffffff;
}
.popup p,.popdown p{
text-align: center;
margin-top: 20px;
}
.popup span,.popdown span{
text-align: center;
line-height: 30px;
cursor: pointer;
}
.popup .queding,.popdown .sure{
display: inline-block;
width: 80px;
height: 30px;
background-color: #1E9FFF;
border-radius: 3px;
}
.popup span:hover,.popdown span:hover{
opacity: 0.8;
}
.popup .quxiao,.popdown .re{
display: inline-block;
width: 80px;
height: 30px;
ckground-color: #9cb945 ;
color: #333333;
border-radius: 3px;
background-color:#fff;
margin-left: 35px;
}
.btn_list{
margin: 0 auto;
width: 200px;
}
</style>
</head>
<body>
<div class="wrap">
<ul class="nav nav-tabs">
<li class="active"><a>退款管理</a></li>
</ul>
<form class="well form-inline margin-top-20" method="post" action="{:url('Refund/index')}">
时间:
<input type="text" class="form-control js-bootstrap-datetime" name="start_time"
value="{$start_time|default=''}"
style="width: 140px;" autocomplete="off"> -
<input type="text" class="form-control js-bootstrap-datetime" name="end_time"
value="{$end_time|default=''}"
style="width: 140px;" autocomplete="off">
用户名:
<input type="text" class="form-control" name="name" style="width: 200px;"
value="{$name|default=''}" placeholder="请输入姓名">
手机号:
<input type="text" class="form-control" name="tel" style="width: 200px;"
value="{$tel|default=''}" placeholder="请输入手机号">
<input type="submit" class="btn btn-primary" value="搜索"/>
<a class="btn btn-danger" href="{:url('Refund/index')}">清空</a>
<!--<span class="btn btn-default" onclick="window.history.back(-1)" >返回</span>-->
</form>
<form method="post" class="js-ajax-form margin-top-20">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>ID</th>
<th>用户id</th>
<th>用户名</th>
<th>手机号</th>
<th>类型</th>
<th>退款金额</th>
<th>退款单号</th>
<th>退款方式</th>
<th>退款原因</th>
<th>退款时间</th>
<th>退款成功时间</th>
<th>状态</th>
<!--<th>操作</th>-->
</tr>
</thead>
<tbody>
<foreach name="lists" item="vo">
<tr>
<td>{$vo.id}</td>
<td>{$vo.user_id}</td>
<td>{$vo.name}</td>
<td>{$vo.tel}</td>
<td>
<eq name="vo.user_type" value="1">
用户
</eq>
<eq name="vo.user_type" value="2">
中介
</eq>
</td>
<td>{$vo.money}</td>
<td>{$vo.refund_id}</td>
<td>
<eq name="vo.pay_type" value="1">
支付宝
</eq>
<eq name="vo.pay_type" value="2">
微信
</eq>
</td>
<td>
<eq name="vo.reason" value="1">
报价人数不足
</eq>
<eq name="vo.reason" value="2">
用户未选择
</eq>
<eq name="vo.reason" value="3">
用户未确认
</eq>
<eq name="vo.reason" value="4">
中介未确认
</eq>
</td>
<td>{:date('Y-m-d H:i:s',$vo['create_time'])}</td>
<td>{:date('Y-m-d H:i:s',$vo['refund_time'])}</td>
<td>
<eq name="vo.status" value="1">
<span index="{$vo.id}" style="color: #858585">退款处理中</span>
</eq>
<eq name="vo.status" value="2">
<span index="{$vo.id}" style="color: #858585">退款成功</span>
</eq>
<eq name="vo.status" value="3">
<span index="{$vo.id}" style="color: #858585">退款关闭</span>
</eq>
<eq name="vo.status" value="4">
<span index="{$vo.id}" style="color: #858585">退款异常</span>
</eq>
</td>
</tr>
</foreach>
</tbody>
</table>
<ul class="pagination">{$page|default=''}</ul>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
<script src="__STATIC__/js/layer/layer.js"></script>
<script type="text/javascript" src="__STATIC__/js/zepto.min.js"></script>
<script type="text/javascript" src="__STATIC__/js/mdialog.js"></script>
<script type="">
</script>
</body>
</html>