mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-05 05:19:21 +08:00
197 lines
7.5 KiB
PHP
197 lines
7.5 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 app\service\ArticleCategoryService;
|
|
|
|
/**
|
|
* 文章动态表格
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-16
|
|
* @desc description
|
|
*/
|
|
class Article
|
|
{
|
|
// 基础条件
|
|
public $condition_base = [];
|
|
|
|
/**
|
|
* 入口
|
|
* @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('article.form_table');
|
|
return [
|
|
// 基础配置
|
|
'base' => [
|
|
'key_field' => 'id',
|
|
'status_field' => 'is_enable',
|
|
'is_search' => 1,
|
|
'is_delete' => 1,
|
|
'is_middle' => 0,
|
|
'detail_title' => MyLang('form_table_base_detail_title'),
|
|
],
|
|
// 表单配置
|
|
'form' => [
|
|
[
|
|
'view_type' => 'checkbox',
|
|
'is_checked' => 0,
|
|
'checked_text' => MyLang('reverse_select_title'),
|
|
'not_checked_text' => MyLang('select_all_title'),
|
|
'align' => 'center',
|
|
'width' => 80,
|
|
],
|
|
[
|
|
'label' => $lang['info'],
|
|
'view_type' => 'module',
|
|
'view_key' => 'article/module/info',
|
|
'grid_size' => 'sm',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'form_name' => 'title',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['jump_url'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'jump_url',
|
|
'grid_size' => 'sm',
|
|
'search_config' => [
|
|
'form_type' => 'input',
|
|
'where_type' => 'like',
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['article_category_name'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'article_category_name',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'select',
|
|
'form_name' => 'article_category_id',
|
|
'where_type' => 'in',
|
|
'data' => $this->ArticleCategoryList(),
|
|
'data_key' => 'id',
|
|
'data_name' => 'name',
|
|
'is_multiple' => 1,
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['is_enable'],
|
|
'view_type' => 'status',
|
|
'view_key' => 'is_enable',
|
|
'post_url' => MyUrl('admin/article/statusupdate'),
|
|
'is_form_su' => 1,
|
|
'align' => 'center',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'select',
|
|
'where_type' => 'in',
|
|
'data' => MyConst('common_is_text_list'),
|
|
'data_key' => 'id',
|
|
'data_name' => 'name',
|
|
'is_multiple' => 1,
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['is_home_recommended'],
|
|
'view_type' => 'status',
|
|
'view_key' => 'is_home_recommended',
|
|
'post_url' => MyUrl('admin/article/statusupdate'),
|
|
'align' => 'center',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'select',
|
|
'where_type' => 'in',
|
|
'data' => MyConst('common_is_text_list'),
|
|
'data_key' => 'id',
|
|
'data_name' => 'name',
|
|
'is_multiple' => 1,
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['images_count'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'images_count',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'section',
|
|
],
|
|
],
|
|
[
|
|
'label' => $lang['access_count'],
|
|
'view_type' => 'field',
|
|
'view_key' => 'access_count',
|
|
'is_sort' => 1,
|
|
'search_config' => [
|
|
'form_type' => 'section',
|
|
],
|
|
],
|
|
[
|
|
'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',
|
|
],
|
|
],
|
|
[
|
|
'label' => MyLang('operate_title'),
|
|
'view_type' => 'operate',
|
|
'view_key' => 'article/module/operate',
|
|
'align' => 'center',
|
|
'fixed' => 'right',
|
|
],
|
|
],
|
|
// 数据配置
|
|
'data' => [
|
|
'table_name' => 'Article',
|
|
'data_handle' => 'ArticleService::ArticleListHandle',
|
|
'is_page' => 1,
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* 获取文章分类列表
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2020-06-11
|
|
* @desc description
|
|
*/
|
|
public function ArticleCategoryList()
|
|
{
|
|
$res = ArticleCategoryService::ArticleCategoryList(['field'=>'id,name']);
|
|
return $res['data'];
|
|
}
|
|
}
|
|
?>
|