Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
xiaozhan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
冷斌
xiaozhan
Commits
248c5c92
Commit
248c5c92
authored
Mar 11, 2020
by
冷斌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
f06a7be6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
16 deletions
+20
-16
admin/themes/simplebootx/Admin/Userauth/index.html
+16
-16
application/Admin/Controller/UserauthController.class.php
+4
-0
No files found.
admin/themes/simplebootx/Admin/Userauth/index.html
View file @
248c5c92
...
...
@@ -11,24 +11,25 @@
<select
class=
"select_2"
name=
"status"
>
<option
value=
""
>
全部
</option>
<option
value=
"0"
<
if
condition=
"$formget.status eq '0'"
>
selected
</if>
>处理中
</option>
<option
value=
"1"
<
if
condition=
"$formget.status eq '1'"
>
selected
</if>
>审核成功
</option>
<option
value=
"2"
<
if
condition=
"$formget.status eq '2'"
>
selected
</if>
>审核失败
</option>
<option
value=
"1"
<
if
condition=
"$formget.status eq '1'"
>
selected
</if>
>审核成功
</option>
<option
value=
"2"
<
if
condition=
"$formget.status eq '2'"
>
selected
</if>
>审核失败
</option>
</select>
提交时间:
<input
type=
"text"
name=
"start_time"
class=
"js-date date"
value=
"{$formget.start_time}"
style=
"width: 80px;"
autocomplete=
"off"
>
-
<input
type=
"text"
class=
"js-date date"
name=
"end_time"
value=
"{$formget.end_time}"
style=
"width: 80px;"
autocomplete=
"off"
>
关键字:
关键字:
<input
type=
"text"
name=
"keyword"
style=
"width: 200px;"
value=
"{$formget.keyword}"
placeholder=
"请输入会员ID、姓名、手机"
>
<input
type=
"submit"
class=
"btn btn-primary"
value=
"搜索"
>
</form>
<input
type=
"button"
class=
"btn btn-primary"
style=
"background-color: #1dccaa;"
value=
"导出"
onclick=
"form1.action='{:U('Userauth/export')}';form1.submit();"
/>
</form>
<form
method=
"post"
class=
"js-ajax-form"
>
<table
class=
"table table-hover table-bordered"
>
<thead>
<tr>
<th
align=
"center"
>
会员ID
</th>
<th>
会员
</th>
<th>
会员
</th>
<th>
真实姓名
</th>
<th>
手机号码
</th>
<th>
身份证号
</th>
...
...
@@ -44,23 +45,23 @@
<foreach
name=
"lists"
item=
"vo"
>
<tr>
<td
align=
"center"
>
{$vo.uid}
</td>
<td>
{$vo['userinfo']['user_nicename']}
</td>
<td>
{$vo['userinfo']['user_nicename']}
</td>
<td>
{$vo['real_name']}
</td>
<td>
{$vo['mobile']}
</td>
<td>
{$vo['cer_no']}
</td>
<td>
{$vo['mobile']}
</td>
<td>
{$vo['cer_no']}
</td>
<td>
{$status[$vo['status']]}
</td>
<td>
{$vo.addtime|date="Y-m-d H:i:s",###}
</td>
<td>
{$vo.addtime|date="Y-m-d H:i:s",###}
</td>
<td>
<if
condition=
"$vo['status'] eq '0'"
>
处理中
<else/>
{$vo.uptime|date="Y-m-d H:i:s",###}
</if>
</if>
</td>
<td
align=
"center"
>
<a
href=
"{:U('Userauth/edit',array('id'=>$vo['uid']))}"
>
编辑
</a>
<td
align=
"center"
>
<a
href=
"{:U('Userauth/edit',array('id'=>$vo['uid']))}"
>
编辑
</a>
<!-- <a href="{:U('Cash/del',array('id'=>$vo['uid']))}" class="js-ajax-dialog-btn" data-msg="您确定要删除吗?">删除</a> -->
</td>
</tr>
...
...
@@ -73,4 +74,4 @@
</div>
<script
src=
"__PUBLIC__/js/common.js"
></script>
</body>
</html>
\ No newline at end of file
</html>
application/Admin/Controller/UserauthController.class.php
View file @
248c5c92
...
...
@@ -57,6 +57,10 @@ class UserauthController extends AdminbaseController
$this
->
display
();
}
function
export
()
{
echo
1
;
die
;
}
function
del
()
{
$id
=
intval
(
$_GET
[
'id'
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment