agencydetail.html
7.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
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
<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('Bank/index')}">银行列表</a></li>-->
<!--<li class="active"><a href="{:url('Bank/add')}">添加银行</a></li>-->
</ul>
<form action="{:url('AdminOauth/changeAgency')}" method="post" class="form-horizontal js-ajax-form margin-top-20" enctype="multipart/form-data" >
<div class="row">
<div class="col-md-9">
<table class="table table-bordered">
<input class="form-control" type="hidden" name="id"
value="{$list['id']}"/>
<tr>
<th width="15%">真实姓名</th>
<td><input class="form-control" type="text" name="name" readonly="readonly"
value="{$list['name']}" />
</td>
</tr>
<tr>
<th width="15%">手机号</th>
<td><input class="form-control" type="text" name="tel" value="{$list['tel']}" />
</td>
</tr>
<tr>
<th width="15%">余额</th>
<td><input class="form-control" type="text" name="money" value="{$list['money']}" />
</td>
</tr>
<tr>
<th width="15%">当前提现金额</th>
<td><input class="form-control" type="text" name="get_money" value="{$list['get_money']}" />
</td>
</tr>
<tr>
<th width="15%">中介报价次数</th>
<td><input class="form-control" type="text" name="count_agency" value="{$list['count_agency']}" />
</td>
</tr>
<tr>
<th width="15%">中介已中标次数</th>
<td><input class="form-control" type="text" name="count_deal" value="{$list['count_deal']}" />
</td>
</tr>
<tr>
<th width="15%">城市</th>
<td><input class="form-control" type="text" name="city" value="{$list['city']}" />
</td>
</tr>
<tr>
<th width="15%">所属公司</th>
<td><input class="form-control" type="text" name="company" value="{$list['company']}" />
</td>
</tr>
<tr>
<th width="15%">门店</th>
<td><input class="form-control" type="text" name="store" value="{$list['store']}" />
</td>
</tr>
<tr>
<th width="15%">服务小区<span style="color: red;">(请用+号连接)</span></th>
<td><input class="form-control" type="text" name="quarters" value="{$list['quarters']}" />
</td>
</tr>
<tr>
<th width="15%">推荐人手机号</th>
<td><input class="form-control" type="text" name="referee_tel" value="{$list['referee_tel']}" />
</td>
</tr>
<tr>
<th width="15%">推荐人id</th>
<td><input class="form-control" type="text" name="referee_id" value="{$list['referee_id']}" />
</td>
</tr>
<tr>
<th width="15%">PC短网址</th>
<td><input class="form-control" type="text" name="link" value="{$list['link']}" />
</td>
</tr>
<tr>
<th width="15%">手机短网址</th>
<td><input class="form-control" type="text" name="phone_link" value="{$list['phone_link']}" />
</td>
</tr>
<tr>
<th width="15%">最后登录ip</th>
<td><input class="form-control" type="text" name="last_login_ip" value="{$list['last_login_ip']}" />
</td>
</tr>
<tr>
<th width="15%">注册时ip</th>
<td><input class="form-control" type="text" name="create_ip" value="{$list['create_ip']}" />
</td>
</tr>
<tr>
<th width="15%">首次登录时间</th>
<td><input class="form-control" type="text" name="login_time" value="{$list['login_time']|date='Y-m-d H:i:s',###}" readonly />
</td>
</tr>
<tr>
<th width="15%">最后登录时间</th>
<td><input class="form-control" type="text" name="last_login_time" value="{$list['last_login_time']|date='Y-m-d H:i:s',###}" readonly/>
</td>
</tr>
<tr>
<th width="18%">注册时间</th>
<td><input class="form-control" type="text" name="create_time" value="{$list['create_time']|date='Y-m-d H:i:s',###}" readonly/>
</td>
</tr>
<tr>
<th>状态</th>
<td>
<select name="status">
<option name="status" value="1" <eq name="list.status" value="1">selected</eq>> 正常 </option>
<option name="status" value="8" <eq name="list.status" value="8">selected</eq>> 拉黑 </option>
</select>
<!--<input class="form-control" type="text" name="status" value="{$list['status']}" />-->
</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">{:lang('SAVE')}</button>
<a class="btn btn-default" href="{:url('AdminOauth/intermediary')}">{:lang('BACK')}</a>
</div>
</div>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
<script type="text/javascript">
//编辑器路径定义
var editorURL = GV.WEB_ROOT;
</script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.config.js"></script>
<script type="text/javascript" src="__STATIC__/js/ueditor/ueditor.all.min.js"></script>
<script type="text/javascript">
$(function () {
editorcontent = new baidu.editor.ui.Editor();
editorcontent.render('content');
try {
editorcontent.sync();
} catch (err) {
}
$('.btn-cancel-thumbnail').click(function () {
$('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png');
$('#thumbnail').val('');
});
});
</script>
</body>
</html>