audit_edit.html
3.0 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
<include file="public@header"/>
<style type="text/css">
.pic-list li {
margin-bottom: 5px;
}
</style>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('Audit/audit_list')}">审核列表</a></li>
<li class="active"><a href="#">编辑审核</a></li>
</ul>
<form action="{:url('Audit/audit_edit')}" method="post" class="form-horizontal js-ajax-form margin-top-20">
<div class="row">
<div class="col-md-9">
<table class="table table-bordered">
<input type="hidden" name="id" value="{$data.id}">
<input type="hidden" name="uid" value="{$data.uid}">
<tr>
<th>姓名</th>
<td>
<input class="form-control" type="text" name="name"
id="title" required value="{$data.name}" placeholder="请输入姓名" disabled/>
</td>
</tr>
<tr>
<th>手机号</th>
<td><input class="form-control" type="text" name="phone" id="source" disabled value="{$data.phone}"
placeholder="请输入手机号"></td>
</tr>
<tr>
<th>身份证号</th>
<td><input class="form-control" type="text" name="id_number" disabled value="{$data.id_number}"
placeholder="请输入身份证号"></td>
</tr>
<tr>
<th>身份证正面</th>
<td><img src="{:cmf_get_image_url($data.img_front)}" style="width:auto;height:auto;max-width: 100%;max-height: 100%;" alt=""></td>
</tr>
<tr>
<th>身份证反面</th>
<td><img src="{:cmf_get_image_url($data.img_back)}" style="width:auto;height:auto;max-width: 100%;max-height: 100%;" alt=""></td>
</tr>
</table>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary js-ajax-submit">审核通过</button>
<button type="button" class="btn btn-primary js-ajax-submit" onclick="turn_down({$data.id},{$data.uid})">审核驳回</button>
</div>
</div>
</div>
</div>
</form>
</div>
<script>
/**
*点击驳回
*/
function turn_down(id,uid){
$.post("{:url('Audit/turn_down')}",{uid:uid},function(data){
if(data){
window.location.href = "{:url('Audit/audit_list')}";
}else{
alert('驳回失败');
}
});
}
</script>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
</body>
</html>