diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index 64f35d1e9..6b3fd57b5 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -42,8 +42,19 @@ class User extends Controller public function index() { $this->title = '系统用户管理'; - $query = $this->_query($this->table)->like('username,phone,mail')->equal('status'); - $query->dateBetween('login_at,create_at')->where(['is_deleted' => '0'])->order('sort desc,id desc')->page(); + $query = $this->_query($this->table)->like('username,phone,mail'); + $query->equal('status')->dateBetween('login_at,create_at'); + // 加载对应数据列表 + $this->template = $this->request->get('type', 'index'); + if ($this->template === 'index') { + $query->where(['is_deleted' => '0', 'status' => '1']); + } elseif ($this->template === 'recycle') { + $query->where(['is_deleted' => '0', 'status' => '0']); + } else { + $this->error("无法加载{$this->template}数据列表!"); + } + // 列表排序并显示 + $query->order('sort desc,id desc')->page(true, true, false, 0, $this->template); } /** diff --git a/app/admin/view/user/index.html b/app/admin/view/user/index.html index 672b39f48..6f1da6a8c 100644 --- a/app/admin/view/user/index.html +++ b/app/admin/view/user/index.html @@ -6,86 +6,79 @@ {/if} -{if auth("remove")} - +{if auth("state")} +批量禁用 {/if} {/block} {block name="content"} -
- {include file='user/index_search'} - - {notempty name='list'} - - - - - - - - - - {/notempty} - - {foreach $list as $key=>$vo} - - - - - - + + {/foreach} + +
- - - - 账号信息账号状态
- - - - - img -
- 用户账号 {$vo.username|default=''},账号昵称 {$vo.nickname|default='未配置账号昵称'|raw}
- 联系手机 {$vo.contact_phone|default='未配置联系手机'|raw}, - 联系邮箱 {$vo.contact_mail|default='未配置联系邮箱'|raw}。 -
-
- 账号创建于 {$vo.create_at|format_datetime},共登录了 {$vo.login_num|default=0}
- {if $vo.login_at} - 最近于 {$vo.login_at|format_datetime} 通过 {$vo.login_ip|default='--'} 登录,{else} - 该账号还没有登录过哦,登录之后才会有记录! - {/if} - {eq name='vo.status' value='0'}已禁用{else}使用中{/eq} -
+
+ {include file='user/index_tab'} +
+ {include file='user/index_search'} + + {notempty name='list'} + + + + + + + + + + {/notempty} + + {foreach $list as $key=>$vo} + + + + + + - - {/foreach} - -
+ + + + 账号信息账号状态
+ + + + + img +
+ 用户账号 {$vo.username|default=''} 用户昵称 {$vo.nickname|default='-'|raw}
+ 联系手机 {$vo.contact_phone|default='未配置'|raw}, + 联系邮箱 {$vo.contact_mail|default='未配置'|raw} +
+
+ 账号创建于 {$vo.create_at|format_datetime} 共登录了 {$vo.login_num|default=0}
+ {if $vo.login_at} + 最近于 {$vo.login_at|format_datetime} 通过 {$vo.login_ip|default='--'} 登录,{else} + 该账号还没有登录过哦,登录之后才会有记录! + {/if} + {eq name='vo.status' value='0'}已禁用{else}使用中{/eq} +
- {if auth("pass")} - 密 码 - {/if} + {if auth("pass")} + 设置密码 + {/if} - {if auth("edit")} - 编 辑 - {/if} + {if auth("edit")} + 编辑资料 + {/if} - {if auth("state") and $vo.status eq 1} - 禁 用 - {/if} + {if auth("state") and $vo.status eq 1} + 禁用账号 + {/if} - {if auth("state") and $vo.status eq 0} - 启 用 - {/if} - - {if auth("remove")} - 删 除 - {/if} - -
- - {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} +
+ {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} +
- {/block} diff --git a/app/admin/view/user/index_search.html b/app/admin/view/user/index_search.html index 815dbb5f2..e0fbb6174 100644 --- a/app/admin/view/user/index_search.html +++ b/app/admin/view/user/index_search.html @@ -25,21 +25,6 @@ -
- -
- -
-
-
diff --git a/app/admin/view/user/index_tab.html b/app/admin/view/user/index_tab.html new file mode 100644 index 000000000..d2303dd93 --- /dev/null +++ b/app/admin/view/user/index_tab.html @@ -0,0 +1,13 @@ + + + \ No newline at end of file diff --git a/app/admin/view/user/pass.html b/app/admin/view/user/pass.html index 32f990c4d..ce45fd01a 100644 --- a/app/admin/view/user/pass.html +++ b/app/admin/view/user/pass.html @@ -38,7 +38,7 @@

密码必需包含大小写字母、数字、符号的任意两者组合。

diff --git a/app/admin/view/user/recycle.html b/app/admin/view/user/recycle.html new file mode 100644 index 000000000..76a0c8c7e --- /dev/null +++ b/app/admin/view/user/recycle.html @@ -0,0 +1,81 @@ +{extend name='main'} + +{block name="button"} + +{if auth("state")} +批量恢复 +{/if} + + +{if auth("remove")} +批量删除 +{/if} + +{/block} + +{block name="content"} +
+ {include file='user/index_tab'} +
+ {include file='user/index_search'} + + {notempty name='list'} + + + + + + + + + + {/notempty} + + {foreach $list as $key=>$vo} + + + + + + + + {/foreach} + +
+ + + + 账号信息账号状态
+ + + + + img +
+ 用户账号 {$vo.username|default=''} 用户昵称 {$vo.nickname|default='-'|raw}
+ 联系手机 {$vo.contact_phone|default='未配置'|raw}, + 联系邮箱 {$vo.contact_mail|default='未配置'|raw} +
+
+ 账号创建于 {$vo.create_at|format_datetime} 共登录了 {$vo.login_num|default=0}
+ {if $vo.login_at} + 最近于 {$vo.login_at|format_datetime} 通过 {$vo.login_ip|default='--'} 登录,{else} + 该账号还没有登录过哦,登录之后才会有记录! + {/if} + {eq name='vo.status' value='0'}已禁用{else}使用中{/eq} +
+ + {if auth("state") and $vo.status eq 0} + 恢复账号 + {/if} + + {if auth("remove")} + 永久删除 + {/if} + +
+ + {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} +
+
+{/block}