109 lines
3.7 KiB
PHP
109 lines
3.7 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\api\form;
|
|
|
|
/**
|
|
* DiyApi自定义页面动态表格
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-16
|
|
* @desc description
|
|
*/
|
|
class DiyApiCustomViewList
|
|
{
|
|
// 基础条件
|
|
public $condition_base = [
|
|
['is_enable', '=', 1],
|
|
];
|
|
|
|
/**
|
|
* 入口
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-16
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public function Run($params = [])
|
|
{
|
|
$lang = MyLang('customview_form_table');
|
|
return [
|
|
// 基础配置
|
|
'base' => [
|
|
'key_field' => 'id',
|
|
'status_field' => 'is_enable',
|
|
'is_search' => 1,
|
|
'is_middle' => 1,
|
|
],
|
|
// 表单配置
|
|
'form' => [
|
|
[
|
|
'label' => $lang['id'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'id',
|
|
'width' => 110,
|
|
'is_copy' => 1,
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => '=',
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['logo'],
|
|
'view_type' => 'images',
|
|
'view_key' => 'logo',
|
|
'images_width' => 30,
|
|
'width' => 80,
|
|
],
|
|
[
|
|
'label' => $lang['name'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'name',
|
|
'is_sort' => 1,
|
|
'params_where_name' => 'keywords',
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['add_time'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'add_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['upd_time'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'upd_time',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'datetime',
|
|
],
|
|
],
|
|
],
|
|
// 数据配置
|
|
'data' => [
|
|
'table_name' => 'CustomView',
|
|
'data_handle' => 'CustomViewService::CustomViewListHandle',
|
|
'is_page' => 1,
|
|
'is_handle_annex_field' => 1,
|
|
],
|
|
];
|
|
}
|
|
}
|
|
?>
|