[ 'key_field' => 'id', 'is_search' => 1, 'search_url' => MyUrl('admin/integrallog/index'), ], // 表单配置 'form' => [ [ 'label' => '用户信息', 'view_type' => 'module', 'view_key' => 'lib/module/user', 'grid_size' => 'sm', 'search_config' => [ 'form_type' => 'input', 'form_name' => 'user_id', 'where_type' => 'like', 'where_type_custom' => 'in', 'where_value_custom' => 'WhereValueUserInfo', 'placeholder' => '请输入用户名/昵称/手机/邮箱', ], ], [ 'label' => '操作类型', 'view_type' => 'field', 'view_key' => 'type', 'view_data_key' => 'name', 'view_data' => lang('common_integral_log_type_list'), 'search_config' => [ 'form_type' => 'select', 'where_type' => 'in', 'data' => lang('common_integral_log_type_list'), 'data_key' => 'id', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => '操作积分', 'view_type' => 'field', 'view_key' => 'operation_integral', 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => '原始积分', 'view_type' => 'field', 'view_key' => 'original_integral', 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => '最新积分', 'view_type' => 'field', 'view_key' => 'new_integral', 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => '操作原因', 'view_type' => 'field', 'view_key' => 'msg', 'grid_size' => 'sm', 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => '操作人员id', 'view_type' => 'field', 'view_key' => 'operation_id', 'search_config' => [ 'form_type' => 'input', 'where_type' => '=', ], ], [ 'label' => '操作时间', 'view_type' => 'field', 'view_key' => 'add_time_time', 'search_config' => [ 'form_type' => 'datetime', 'form_name' => 'add_time', ], ], [ 'label' => '操作', 'view_type' => 'operate', 'view_key' => 'integrallog/module/operate', 'align' => 'center', 'fixed' => 'right', ], ], ]; } /** * 用户信息条件处理 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2020-06-27 * @desc description * @param [string] $value [条件值] * @param [array] $params [输入参数] */ public function WhereValueUserInfo($value, $params = []) { if(!empty($value)) { // 获取用户 id $ids = Db::name('User')->where('username|nickname|mobile|email', 'like', '%'.$value.'%')->column('id'); // 避免空条件造成无效的错觉 return empty($ids) ? [0] : $ids; } return $value; } } ?>