diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php index 6b3fd57b5..b6bb9472d 100644 --- a/app/admin/controller/User.php +++ b/app/admin/controller/User.php @@ -45,16 +45,14 @@ class User extends Controller $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') { + $this->type = input('type', 'all'); + if ($this->type === 'all') { $query->where(['is_deleted' => '0', 'status' => '1']); - } elseif ($this->template === 'recycle') { + } elseif ($this->type = '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); + $query->order('sort desc,id desc')->page(); } /** diff --git a/app/admin/view/user/index.html b/app/admin/view/user/index.html index 59d9ab08a..2e90073ec 100644 --- a/app/admin/view/user/index.html +++ b/app/admin/view/user/index.html @@ -2,19 +2,35 @@ {block name="button"} +{if isset($type) and $type eq 'all'} {if auth("add")} {/if} - {if auth("state")} 批量禁用 {/if} +{else} +{if auth("state")} +批量恢复 +{/if} +{if auth("remove")} +批量删除 +{/if} +{/if} {/block} {block name="content"}
- {include file='user/index_tab'} +
{include file='user/index_search'} @@ -27,8 +43,9 @@ - - + + + @@ -43,35 +60,47 @@ - + {/foreach} diff --git a/app/admin/view/user/index_tab.html b/app/admin/view/user/index_tab.html deleted file mode 100644 index af074c45a..000000000 --- a/app/admin/view/user/index_tab.html +++ /dev/null @@ -1,9 +0,0 @@ - \ No newline at end of file diff --git a/app/admin/view/user/recycle.html b/app/admin/view/user/recycle.html deleted file mode 100644 index 699a8cdd2..000000000 --- a/app/admin/view/user/recycle.html +++ /dev/null @@ -1,85 +0,0 @@ -{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'} -
账号信息账号状态
- img -
- 用户账号 {$vo.username|default=''} 用户昵称 {$vo.nickname|default='-'|raw}
- 联系手机 {$vo.contact_phone|default='未配置'|raw}, - 联系邮箱 {$vo.contact_mail|default='未配置'|raw} + img +
+ 登录账号:{$vo.username|default=''}
+ 用户昵称:{$vo.nickname|default='-'|raw}
- 账号创建于 {$vo.create_at|format_datetime} 共登录了 {$vo.login_num|default=0}
+
+ 联系手机:{$vo.contact_phone|default='未配置手机'|raw}
+ 联系邮箱:{$vo.contact_mail|default='未配置邮箱'|raw}
+
+ 创建时间:{$vo.create_at|format_datetime}( {eq name='vo.status' value='0'}已禁用{else}使用中{/eq} )
{if $vo.login_at} - 最近于 {$vo.login_at|format_datetime} 通过 {$vo.login_ip|default='--'} 登录,{else} + 最后登录:{$vo.login_at|format_datetime}( 已登录 {$vo.login_num|default=0} 次 )
+ {else} 该账号还没有登录过哦,登录之后才会有记录! {/if} - {eq name='vo.status' value='0'}已禁用{else}使用中{/eq}
+ {if isset($type) and $type eq 'all'} {if auth("pass")} 密 码 {/if} - {if auth("edit")} 编 辑 {/if} - {if auth("state") and $vo.status eq 1} 禁 用 {/if} - + {else} + {if auth("edit")} + 编 辑 + {/if} + {if auth("state") and $vo.status eq 0} + 恢 复 + {/if} + {if auth("remove")} + 删 除 + {/if} + {/if}
- {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("edit")} - 编 辑 - {/if} - - {if auth("state") and $vo.status eq 0} - 恢 复 - {/if} - - {if auth("remove")} - 删 除 - {/if} - -
- - {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} -
-
-{/block}