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"} -
- - | -- - | -账号信息 | -账号状态 | -- | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
- - | -- - | -
-
- 用户账号 {$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'}
+
|
+
密码必需包含大小写字母、数字、符号的任意两者组合。
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"} ++ + | ++ + | +账号信息 | +账号状态 | ++ |
---|---|---|---|---|
+ + | ++ + | +
+
+ 用户账号 {$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} + + | +