Integrallog.php 6.2 KB
Newer Older
D
devil 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\admin\form;

use think\Db;

/**
 * 积分日志动态表格
 * @author  Devil
 * @blog    http://gong.gg/
 * @version 1.0.0
 * @date    2020-06-27
 * @desc    description
 */
D
devil 已提交
23
class IntegralLog
D
devil 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
{
    // 基础条件
    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 = [])
    {
        return [
            // 基础配置
            'base' => [
                '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',
D
devil 已提交
53
                    'is_sort'       => 1,
D
devil 已提交
54 55 56 57 58
                    'search_config' => [
                        'form_type'             => 'input',
                        'form_name'             => 'user_id',
                        'where_type'            => 'like',
                        'where_type_custom'     => 'in',
D
devil 已提交
59
                        'where_value_custom'    => 'WhereValueUserInfo',
D
devil 已提交
60 61 62 63 64 65
                        'placeholder'           => '请输入用户名/昵称/手机/邮箱',
                    ],
                ],
                [
                    'label'         => '操作类型',
                    'view_type'     => 'field',
D
devil 已提交
66 67 68
                    'view_key'      => 'type',
                    'view_data_key' => 'name',
                    'view_data'     => lang('common_integral_log_type_list'),
D
devil 已提交
69
                    'is_sort'       => 1,
D
devil 已提交
70 71 72 73 74 75 76 77 78
                    'search_config' => [
                        'form_type'         => 'select',
                        'where_type'        => 'in',
                        'data'              => lang('common_integral_log_type_list'),
                        'data_key'          => 'id',
                        'data_name'         => 'name',
                        'is_multiple'       => 1,
                    ],
                ],
D
devil 已提交
79 80 81 82
                [
                    'label'         => '操作积分',
                    'view_type'     => 'field',
                    'view_key'      => 'operation_integral',
D
devil 已提交
83
                    'is_sort'       => 1,
D
devil 已提交
84 85 86 87
                    'search_config' => [
                        'form_type'         => 'section',
                    ],
                ],
D
devil 已提交
88 89 90 91
                [
                    'label'         => '原始积分',
                    'view_type'     => 'field',
                    'view_key'      => 'original_integral',
D
devil 已提交
92
                    'is_sort'       => 1,
D
devil 已提交
93 94 95 96 97 98 99 100
                    'search_config' => [
                        'form_type'         => 'section',
                    ],
                ],
                [
                    'label'         => '最新积分',
                    'view_type'     => 'field',
                    'view_key'      => 'new_integral',
D
devil 已提交
101
                    'is_sort'       => 1,
D
devil 已提交
102 103 104 105 106 107 108 109 110
                    'search_config' => [
                        'form_type'         => 'section',
                    ],
                ],
                [
                    'label'         => '操作原因',
                    'view_type'     => 'field',
                    'view_key'      => 'msg',
                    'grid_size'     => 'sm',
D
devil 已提交
111
                    'is_sort'       => 1,
D
devil 已提交
112 113 114 115 116 117 118 119 120
                    'search_config' => [
                        'form_type'         => 'input',
                        'where_type'        => 'like',
                    ],
                ],
                [
                    'label'         => '操作人员id',
                    'view_type'     => 'field',
                    'view_key'      => 'operation_id',
D
devil 已提交
121
                    'is_sort'       => 1,
D
devil 已提交
122 123 124 125 126 127 128 129 130
                    'search_config' => [
                        'form_type'         => 'input',
                        'where_type'        => '=',
                    ],
                ],
                [
                    'label'         => '操作时间',
                    'view_type'     => 'field',
                    'view_key'      => 'add_time_time',
D
devil 已提交
131
                    'is_sort'       => 1,
D
devil 已提交
132 133 134 135 136
                    'search_config' => [
                        'form_type'         => 'datetime',
                        'form_name'         => 'add_time',
                    ],
                ],
D
devil 已提交
137 138 139 140 141 142 143
                [
                    'label'         => '操作',
                    'view_type'     => 'operate',
                    'view_key'      => 'integrallog/module/operate',
                    'align'         => 'center',
                    'fixed'         => 'right',
                ],
D
devil 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
            ],
        ];
    }

    /**
     * 用户信息条件处理
     * @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;
    }
}
?>