[ 'key_field' => 'id', 'is_search' => 1, 'search_url' => MyUrl('admin/admin/index'), 'is_delete' => 1, 'delete_url' => MyUrl('admin/admin/delete'), 'delete_key' => 'ids', ], // 表单配置 'form' => [ [ 'view_type' => 'checkbox', 'is_checked' => 0, 'checked_text' => '反选', 'not_checked_text' => '全选', 'align' => 'center', 'not_show_key' => 'id', 'not_show_data' => [1], 'width' => 80, ], [ 'label' => '管理员', 'view_type' => 'field', 'view_key' => 'username', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '状态', 'view_type' => 'field', 'view_key' => 'status', 'view_data_key' => 'name', 'view_data' => MyConst('common_admin_status_list'), 'is_sort' => 1, 'search_config' => [ 'form_type' => 'select', 'where_type' => 'in', 'data' => MyConst('common_admin_status_list'), 'data_key' => 'value', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => '性别', 'view_type' => 'field', 'view_key' => 'gender', 'view_data_key' => 'name', 'view_data' => MyConst('common_gender_list'), 'is_sort' => 1, 'search_config' => [ 'form_type' => 'select', 'where_type' => 'in', 'data' => MyConst('common_gender_list'), 'data_key' => 'id', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => '手机', 'view_type' => 'field', 'view_key' => 'mobile', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '邮箱', 'view_type' => 'field', 'view_key' => 'email', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '角色组', 'view_type' => 'field', 'view_key' => 'role_name', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'select', 'form_name' => 'role_id', 'where_type' => 'in', 'data' => $this->GetRoleList(), 'data_key' => 'id', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => '登录次数', 'view_type' => 'field', 'view_key' => 'login_total', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => '最后登录时间', 'view_type' => 'field', 'view_key' => 'login_time', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'datetime', ], ], [ 'label' => '创建时间', 'view_type' => 'field', 'view_key' => 'add_time', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'datetime', ], ], [ 'label' => '更新时间', 'view_type' => 'field', 'view_key' => 'upd_time', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'datetime', ], ], [ 'label' => '操作', 'view_type' => 'operate', 'view_key' => 'admin/module/operate', 'align' => 'center', 'fixed' => 'right', ], ], ]; } /** * 获取角色组列表 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2020-06-11 * @desc description */ public function GetRoleList() { // 角色 $params = [ 'where' => ['is_enable'=>1], 'field' => 'id,name', ]; $res = AdminService::RoleList($params); return $res['data']; } } ?>