mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-02 11:59:16 +08:00
143 lines
4.8 KiB
PHP
143 lines
4.8 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\index\form;
|
|
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 我的问答动态表格
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
*/
|
|
class Answer
|
|
{
|
|
// 基础条件
|
|
public $condition_base = [];
|
|
|
|
/**
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-29
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public function __construct($params = [])
|
|
{
|
|
// 用户信息
|
|
if(!empty($params['system_user']))
|
|
{
|
|
$this->condition_base[] = ['user_id', '=', $params['system_user']['id']];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 入口
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-30
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public function Run($params = [])
|
|
{
|
|
return [
|
|
// 基础配置
|
|
'base' => [
|
|
'key_field' => 'id',
|
|
'is_search' => 1,
|
|
],
|
|
// 表单配置
|
|
'form' => [
|
|
[
|
|
'label' => '联系人',
|
|
'view_type' => 'field',
|
|
'view_key' => 'name',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '联系电话',
|
|
'view_type' => 'field',
|
|
'view_key' => 'tel',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '内容',
|
|
'view_type' => 'module',
|
|
'view_key' => 'answer/module/content',
|
|
'grid_size' => 'lg',
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'form_name' => 'content',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '回复内容',
|
|
'view_type' => 'module',
|
|
'view_key' => 'answer/module/reply',
|
|
'grid_size' => 'lg',
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'form_name' => 'reply',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => '回复时间',
|
|
'view_type' => 'field',
|
|
'view_key' => 'reply_time_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
'form_name' => 'reply_time',
|
|
],
|
|
],
|
|
[
|
|
'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' => 'answer/module/operate',
|
|
'align' => 'center',
|
|
'fixed' => 'right',
|
|
],
|
|
],
|
|
// 数据配置
|
|
'data' => [
|
|
'table_name' => 'Answer',
|
|
'data_handle' => 'AnswerService::AnswerListHandle',
|
|
'is_page' => 1,
|
|
],
|
|
];
|
|
}
|
|
}
|
|
?>
|