shopxo/app/admin/form/User.php
2022-04-18 00:54:11 +08:00

298 lines
11 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;
use think\facade\Db;
/**
* 用户动态表格
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-08
* @desc description
*/
class User
{
// 基础条件
public $condition_base = [];
/**
* 入口
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-08
* @desc description
* @param [array] $params [输入参数]
*/
public function Run($params = [])
{
return [
// 基础配置
'base' => [
'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' => 'field',
'view_key' => 'system_type',
'is_sort' => 1,
'search_config' => [
'form_type' => 'select',
'where_type' => 'in',
'data' => $this->SystemTypeList(),
'is_multiple' => 1,
],
],
[
'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' => MyConst('common_gender_list'),
'is_sort' => 1,
'search_config' => [
'form_type' => 'select',
'where_type' => 'in',
'data' => MyConst('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' => MyConst('common_user_status_list'),
'is_sort' => 1,
'search_config' => [
'form_type' => 'select',
'where_type' => 'in',
'data' => MyConst('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' => 'module',
'view_key' => 'user/module/referrer',
'grid_size' => 'sm',
'is_sort' => 1,
'search_config' => [
'form_type' => 'input',
'form_name' => 'referrer',
'where_type_custom' => 'in',
'where_value_custom' => 'WhereValueUserInfo',
'placeholder' => '请输入邀请用户名/昵称/手机/邮箱',
],
],
[
'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',
],
],
];
}
/**
* 用户信息条件处理
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-08
* @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;
}
/**
* 系统类型列表
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2022-04-14
* @desc description
*/
public function SystemTypeList()
{
return Db::name('User')->group('system_type')->column('system_type', 'system_type');
}
}
?>