condition_base[] = ['user_id', '=', $user_id]; } /** * 入口 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2020-06-28 * @desc description * @param [array] $params [输入参数] */ public function Run($params = []) { $lang = MyLang('userintegral.form_table'); return [ // 基础配置 'base' => [ 'key_field' => 'id', 'is_search' => 1, 'is_middle' => 0, ], // 表单配置 'form' => [ [ 'label' => $lang['integral_type'], 'view_type' => 'field', 'view_key' => 'integral_type_name', 'is_sort' => 1, 'width' => 130, 'search_config' => [ 'form_type' => 'select', 'form_name' => 'integral_type', 'where_type' => 'in', 'data' => MyConst('common_integral_log_integral_type_list'), 'data_key' => 'id', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => $lang['operation_type'], 'view_type' => 'field', 'view_key' => 'operation_type_name', 'is_color' => 1, 'color_key' => 'operation_type', 'color_style' => [0=>'danger', 1=>'success'], 'is_sort' => 1, 'width' => 130, 'search_config' => [ 'form_type' => 'select', 'form_name' => 'operation_type', 'where_type' => 'in', 'data' => MyConst('common_integral_log_operation_type_list'), 'data_key' => 'id', 'data_name' => 'name', 'is_multiple' => 1, ], ], [ 'label' => $lang['operation_integral'], 'view_type' => 'field', 'view_key' => 'operation_integral', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => $lang['original_integral'], 'view_type' => 'field', 'view_key' => 'original_integral', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => $lang['new_integral'], 'view_type' => 'field', 'view_key' => 'new_integral', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'section', ], ], [ 'label' => $lang['msg'], 'view_type' => 'field', 'view_key' => 'msg', 'grid_size' => 'sm', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'input', 'where_type' => 'like', ], ], [ 'label' => $lang['add_time_time'], 'view_type' => 'field', 'view_key' => 'add_time_time', 'is_sort' => 1, 'search_config' => [ 'form_type' => 'datetime', 'form_name' => 'add_time', ], ], [ 'label' => MyLang('operate_title'), 'view_type' => 'operate', 'view_key' => 'userintegral/module/operate', 'align' => 'center', 'fixed' => 'right', 'width' => 80, ], ], // 数据配置 'data' => [ 'table_name' => 'UserIntegralLog', 'data_handle' => 'IntegralService::IntegralLogListHandle', 'detail_where' => $this->condition_base, 'is_fixed_name_field' => 1, 'fixed_name_data' => [ 'integral_type' => [ 'data' => MyConst('common_integral_log_integral_type_list'), ], 'operation_type' => [ 'data' => MyConst('common_integral_log_operation_type_list'), ], ], ], ]; } } ?>