edit.html
1.6 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
<form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
<table class="table table-striped">
<tbody>
<tr>
<td>{:__('用户昵称')}:</td>
<td>{$row.user.nickname}</td>
</tr>
<tr>
<td>{:__('姓名')}:</td>
<td>{$row.user.name}</td>
</tr>
<tr>
<td>{:__('身份证号')}:</td>
<td>{$row.admin.card}</td>
</tr>
<tr>
<td>{:__('电话')}:</td>
<td>{$row.user.mobile}</td>
</tr>
<tr>
<td>{:__('提现金额')}:</td>
<td>{$row.money}</td>
</tr>
<tr>
<td>{:__('审核状态')}:</td>
<td>
<div class="radio">
<label for="row[type]-2" class=""><input id="row[type]-2" name="row[type]" type="radio" value="2" {in name="2" value="$row.type" }checked{/in}/>审核通过</label>
<label for="row[type]-3" class=""><input id="row[type]-3" name="row[type]" type="radio" value="3" {in name="3" value="$row.type" }checked{/in}/>审核失败</label>
</div>
</td>
</tr>
</tbody>
</table>
<div class="form-group layer-footer">
<label class="control-label col-xs-12 col-sm-2"></label>
<div class="col-xs-12 col-sm-8">
<button type="submit" class="btn btn-success btn-embossed disabled">{:__('OK')}</button>
<button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
</div>
</div>
</form>