156 lines
5.9 KiB
PHP
156 lines
5.9 KiB
PHP
|
|
<?php
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Licensed ( https://opensource.org/licenses/mit-license.php )
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Author: Devil
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
namespace app\admin\form;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 积分日志动态表格
|
||
|
|
* @author Devil
|
||
|
|
* @blog http://gong.gg/
|
||
|
|
* @version 1.0.0
|
||
|
|
* @date 2020-06-27
|
||
|
|
* @desc description
|
||
|
|
*/
|
||
|
|
class IntegralLog
|
||
|
|
{
|
||
|
|
// 基础条件
|
||
|
|
public $condition_base = [];
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 入口
|
||
|
|
* @author Devil
|
||
|
|
* @blog http://gong.gg/
|
||
|
|
* @version 1.0.0
|
||
|
|
* @date 2020-06-27
|
||
|
|
* @desc description
|
||
|
|
* @param [array] $params [输入参数]
|
||
|
|
*/
|
||
|
|
public function Run($params = [])
|
||
|
|
{
|
||
|
|
$lang = MyLang('integrallog.form_table');
|
||
|
|
return [
|
||
|
|
// 基础配置
|
||
|
|
'base' => [
|
||
|
|
'key_field' => 'id',
|
||
|
|
'is_search' => 1,
|
||
|
|
'is_middle' => 0,
|
||
|
|
],
|
||
|
|
// 表单配置
|
||
|
|
'form' => [
|
||
|
|
[
|
||
|
|
'label' => $lang['user'],
|
||
|
|
'view_type' => 'module',
|
||
|
|
'view_key' => 'lib/module/user',
|
||
|
|
'grid_size' => 'sm',
|
||
|
|
'is_sort' => 1,
|
||
|
|
'search_config' => [
|
||
|
|
'form_type' => 'input',
|
||
|
|
'form_name' => 'user_id',
|
||
|
|
'where_type_custom' => 'in',
|
||
|
|
'where_value_custom' => 'SystemModuleUserWhereHandle',
|
||
|
|
'placeholder' => $lang['user_placeholder'],
|
||
|
|
],
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'label' => $lang['type'],
|
||
|
|
'view_type' => 'field',
|
||
|
|
'view_key' => 'type',
|
||
|
|
'view_data_key' => 'name',
|
||
|
|
'view_data' => MyConst('common_integral_log_type_list'),
|
||
|
|
'is_sort' => 1,
|
||
|
|
'search_config' => [
|
||
|
|
'form_type' => 'select',
|
||
|
|
'where_type' => 'in',
|
||
|
|
'data' => MyConst('common_integral_log_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['operation_id'],
|
||
|
|
'view_type' => 'field',
|
||
|
|
'view_key' => 'operation_id',
|
||
|
|
'is_sort' => 1,
|
||
|
|
'search_config' => [
|
||
|
|
'form_type' => 'input',
|
||
|
|
'where_type' => '=',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
[
|
||
|
|
'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' => 'integrallog/module/operate',
|
||
|
|
'align' => 'center',
|
||
|
|
'fixed' => 'right',
|
||
|
|
'width' => 80,
|
||
|
|
],
|
||
|
|
],
|
||
|
|
// 数据配置
|
||
|
|
'data' => [
|
||
|
|
'table_name' => 'UserIntegralLog',
|
||
|
|
'data_handle' => 'IntegralService::IntegralLogListHandle',
|
||
|
|
'data_params' => [
|
||
|
|
'is_public' => 0,
|
||
|
|
'user_type' => 'admin',
|
||
|
|
],
|
||
|
|
],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|