[ 'key_field' => 'id', 'is_search' => 1, 'search_url' => MyUrl('admin/user/index'), 'is_delete' => 1, 'delete_url' => MyUrl('admin/user/delete'), 'delete_key' => 'ids', ], // 表单配置 'form' => [ [ 'view_type' => 'checkbox', 'is_checked' => 0, 'checked_text' => '反选', 'not_checked_text' => '全选', 'align' => 'center', 'width' => 80, ], [ 'label' => '用户ID', 'view_type' => 'field', 'view_key' => 'id', 'width' => 105, 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'form_name' => 'id', 'where_type' => '=', ], ], [ 'label' => '头像', 'view_type' => 'module', 'view_key' => 'user/module/avatar', ], [ 'label' => '用户名', 'view_type' => 'field', 'view_key' => 'username', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '昵称', 'view_type' => 'field', 'view_key' => 'nickname', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ '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' => 'gender', 'view_data_key' => 'name', 'view_data' => lang('common_gender_list'), 'is_sort' => 1, 'search_config' => [ 'form_type' => 'select', 'where_type' => 'in', 'data' => lang('common_gender_list'), 'data_key' => 'id', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => '状态', 'view_type' => 'field', 'view_key' => 'status', 'view_data_key' => 'name', 'view_data' => lang('common_user_status_list'), 'is_sort' => 1, 'search_config' => [ 'form_type' => 'select', 'where_type' => 'in', 'data' => lang('common_user_status_list'), 'data_key' => 'id', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => '所在省', 'view_type' => 'field', 'view_key' => 'province', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '所在市', 'view_type' => 'field', 'view_key' => 'city', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '详细地址', 'view_type' => 'field', 'view_key' => 'address', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '生日', 'view_type' => 'field', 'view_key' => 'birthday_text', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'date', 'form_name' => 'birthday', 'is_point' => 1, ], ], [ 'label' => '可用积分', 'view_type' => 'field', 'view_key' => 'integral', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => '锁定积分', 'view_type' => 'field', 'view_key' => 'locking_integral', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'section', ], ], [ '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' => 'user/module/operate', 'align' => 'center', 'fixed' => 'right', ], ], ]; } } ?>