257 lines
9.3 KiB
PHP
257 lines
9.3 KiB
PHP
<?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-26
|
||
* @desc description
|
||
*/
|
||
class Message
|
||
{
|
||
// 基础条件
|
||
public $condition_base = [
|
||
['is_delete_time', '=', 0],
|
||
];
|
||
|
||
/**
|
||
* 入口
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2020-06-26
|
||
* @desc description
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public function Run($params = [])
|
||
{
|
||
return [
|
||
// 基础配置
|
||
'base' => [
|
||
'key_field' => 'id',
|
||
'is_search' => 1,
|
||
'search_url' => MyUrl('admin/message/index'),
|
||
'is_delete' => 1,
|
||
'delete_url' => MyUrl('admin/message/delete'),
|
||
'delete_key' => 'ids',
|
||
],
|
||
// 表单配置
|
||
'form' => [
|
||
[
|
||
'view_type' => 'checkbox',
|
||
'is_checked' => 0,
|
||
'checked_text' => '反选',
|
||
'not_checked_text' => '全选',
|
||
'align' => 'center',
|
||
'width' => 80,
|
||
],
|
||
[
|
||
'label' => '用户信息',
|
||
'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' => '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_message_type_list'),
|
||
'is_sort' => 1,
|
||
'search_config' => [
|
||
'form_type' => 'select',
|
||
'where_type' => 'in',
|
||
'data' => lang('common_message_type_list'),
|
||
'data_key' => 'id',
|
||
'data_name' => 'name',
|
||
'is_multiple' => 1,
|
||
],
|
||
],
|
||
[
|
||
'label' => '业务类型',
|
||
'view_type' => 'field',
|
||
'view_key' => 'business_type',
|
||
'is_sort' => 1,
|
||
'search_config' => [
|
||
'form_type' => 'select',
|
||
'where_type' => 'in',
|
||
'data' => $this->MessageBusinessTypeList(),
|
||
'data_key' => 'name',
|
||
'data_name' => 'name',
|
||
'is_multiple' => 1,
|
||
],
|
||
],
|
||
[
|
||
'label' => '标题',
|
||
'view_type' => 'field',
|
||
'view_key' => 'title',
|
||
'is_sort' => 1,
|
||
'search_config' => [
|
||
'form_type' => 'input',
|
||
'where_type' => 'like',
|
||
],
|
||
],
|
||
[
|
||
'label' => '详情',
|
||
'view_type' => 'field',
|
||
'view_key' => 'detail',
|
||
'is_sort' => 1,
|
||
'grid_size' => 'lg',
|
||
'search_config' => [
|
||
'form_type' => 'input',
|
||
'where_type' => 'like',
|
||
],
|
||
],
|
||
[
|
||
'label' => '是否已读',
|
||
'view_type' => 'field',
|
||
'view_key' => 'is_read',
|
||
'view_data_key' => 'name',
|
||
'view_data' => lang('common_is_read_list'),
|
||
'is_sort' => 1,
|
||
'search_config' => [
|
||
'form_type' => 'select',
|
||
'where_type' => 'in',
|
||
'data' => lang('common_is_read_list'),
|
||
'data_key' => 'id',
|
||
'data_name' => 'name',
|
||
'is_multiple' => 1,
|
||
],
|
||
],
|
||
[
|
||
'label' => '用户是否删除',
|
||
'view_type' => 'field',
|
||
'view_key' => 'user_is_delete_time_text',
|
||
'is_sort' => 1,
|
||
'search_config' => [
|
||
'form_type' => 'select',
|
||
'where_type' => 'in',
|
||
'form_name' => 'user_is_delete_time',
|
||
'data' => lang('common_is_text_list'),
|
||
'data_key' => 'id',
|
||
'data_name' => 'name',
|
||
'where_type_custom' => 'WhereTypeUserIsDelete',
|
||
'where_value_custom' => 'WhereValueUserIsDelete',
|
||
'is_multiple' => 1,
|
||
],
|
||
],
|
||
[
|
||
'label' => '发送时间',
|
||
'view_type' => 'field',
|
||
'view_key' => 'add_time_time',
|
||
'is_sort' => 1,
|
||
'search_config' => [
|
||
'form_type' => 'datetime',
|
||
'form_name' => 'add_time',
|
||
],
|
||
],
|
||
[
|
||
'label' => '操作',
|
||
'view_type' => 'operate',
|
||
'view_key' => 'message/module/operate',
|
||
'align' => 'center',
|
||
'fixed' => 'right',
|
||
],
|
||
],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* 是否删除条件符号处理
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2020-06-08
|
||
* @desc description
|
||
* @param [string] $form_key [表单数据key]
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public function WhereTypeUserIsDelete($form_key, $params = [])
|
||
{
|
||
if(isset($params[$form_key]))
|
||
{
|
||
// 条件值是 0,1
|
||
// 解析成数组,都存在则返回null,则1 >, 0 =
|
||
$value = explode(',', urldecode($params[$form_key]));
|
||
if(count($value) == 1)
|
||
{
|
||
return in_array(1, $value) ? '>' : '=';
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
|
||
/**
|
||
* 是否删除条件值处理
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2020-06-08
|
||
* @desc description
|
||
* @param [string] $form_key [表单数据key]
|
||
* @param [array] $params [输入参数]
|
||
*/
|
||
public function WhereValueUserIsDelete($value, $params = [])
|
||
{
|
||
return (count($value) == 2) ? null : 0;
|
||
}
|
||
|
||
/**
|
||
* 用户信息条件处理
|
||
* @author Devil
|
||
* @blog http://gong.gg/
|
||
* @version 1.0.0
|
||
* @date 2020-06-26
|
||
* @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 2020-06-26
|
||
* @desc description
|
||
*/
|
||
public function MessageBusinessTypeList()
|
||
{
|
||
return Db::name('Message')->field('business_type as name')->group('business_type')->select();
|
||
}
|
||
}
|
||
?>
|