vr-shopxo-source/app/admin/form/Brand.php

239 lines
8.8 KiB
PHP
Raw Normal View History

2020-06-19 10:44:38 +00:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2021-03-16 02:34:52 +00:00
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
2020-06-19 10:44:38 +00:00
// +----------------------------------------------------------------------
2021-03-16 02:34:52 +00:00
// | Licensed ( https://opensource.org/licenses/mit-license.php )
2020-06-19 10:44:38 +00:00
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\admin\form;
2021-07-18 15:42:10 +00:00
use think\facade\Db;
2020-06-19 10:44:38 +00:00
use app\service\BrandService;
2020-08-01 14:17:32 +00:00
use app\service\BrandCategoryService;
2020-06-19 10:44:38 +00:00
/**
* 品牌动态表格
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-19
* @desc description
*/
class Brand
{
// 基础条件
public $condition_base = [];
/**
* 入口
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-18
* @desc description
* @param [array] $params [输入参数]
*/
public function Run($params = [])
{
2023-02-02 15:54:37 +00:00
$lang = MyLang('brand.form_table');
2020-06-19 10:44:38 +00:00
return [
// 基础配置
'base' => [
'key_field' => 'id',
'status_field' => 'is_enable',
'is_search' => 1,
2026-03-04 02:21:47 +00:00
'is_delete' => AdminIsPower('brand', 'delete') ? 1 : 0,
'is_middle' => 0,
2020-06-19 10:44:38 +00:00
],
// 表单配置
'form' => [
[
'view_type' => 'checkbox',
'is_checked' => 0,
2023-01-29 10:11:08 +00:00
'checked_text' => MyLang('reverse_select_title'),
'not_checked_text' => MyLang('select_all_title'),
2020-06-19 10:44:38 +00:00
'align' => 'center',
'width' => 80,
],
[
2024-10-21 02:51:14 +00:00
'label' => $lang['id'],
2020-06-19 10:44:38 +00:00
'view_type' => 'field',
2024-10-21 02:51:14 +00:00
'view_key' => 'id',
'width' => 110,
'is_copy' => 1,
'is_sort' => 1,
2020-06-19 10:44:38 +00:00
'search_config' => [
2024-10-21 02:51:14 +00:00
'form_type' => 'input',
'where_type' => '=',
],
],
[
'label' => $lang['name'],
'view_type' => 'field',
'view_key' => 'name',
'is_sort' => 1,
'width' => 150,
'params_where_name' => 'keywords',
'search_config' => [
2020-06-19 10:44:38 +00:00
'form_type' => 'input',
'where_type' => 'like',
],
],
[
2023-02-02 15:54:37 +00:00
'label' => $lang['describe'],
'view_type' => 'field',
'view_key' => 'describe',
'grid_size' => 'lg',
'is_sort' => 1,
'search_config' => [
'form_type' => 'input',
'where_type' => 'like',
],
],
2020-06-19 10:44:38 +00:00
[
2023-02-02 15:54:37 +00:00
'label' => $lang['logo'],
2024-01-19 06:49:32 +00:00
'view_type' => 'images',
'view_key' => 'logo',
'images_height' => 25,
2024-01-20 13:02:39 +00:00
'width' => 100,
2020-06-19 10:44:38 +00:00
],
[
2024-12-25 09:35:54 +00:00
'label' => $lang['url'],
'view_type' => 'field',
'view_key' => 'website_url',
'grid_size' => 'sm',
'is_first_link' => 1,
'first_link_key' => 'website_url',
'first_link_style' => 'primary',
'search_config' => [
2020-06-19 10:44:38 +00:00
'form_type' => 'input',
'where_type' => 'like',
],
],
[
2024-10-21 02:51:14 +00:00
'label' => $lang['brand_category_text'],
'view_type' => 'field',
'view_key' => 'brand_category_text',
'width' => 140,
'params_where_name' => 'category_ids',
'search_config' => [
2020-08-01 14:17:32 +00:00
'form_type' => 'select',
'form_name' => 'id',
'where_type' => 'in',
'data' => $this->BrandCategoryList(),
'data_key' => 'id',
'data_name' => 'name',
'is_multiple' => 1,
2020-08-20 15:38:41 +00:00
'where_value_custom' => 'WhereValueBrandCategory',
2020-06-19 10:44:38 +00:00
],
],
[
2024-10-21 02:51:14 +00:00
'label' => $lang['is_enable'],
'view_type' => 'status',
'view_key' => 'is_enable',
'post_url' => MyUrl('admin/brand/statusupdate'),
'is_form_su' => 1,
'align' => 'center',
'is_sort' => 1,
'width' => 130,
'params_where_name' => 'is_enable',
'search_config' => [
2020-06-19 10:44:38 +00:00
'form_type' => 'select',
'where_type' => 'in',
2023-08-27 08:59:15 +00:00
'data' => MyConst('common_is_text_list'),
2020-06-19 10:44:38 +00:00
'data_key' => 'id',
'data_name' => 'name',
'is_multiple' => 1,
],
],
[
2023-02-02 15:54:37 +00:00
'label' => $lang['sort'],
2020-06-19 10:44:38 +00:00
'view_type' => 'field',
'view_key' => 'sort',
'is_sort' => 1,
2024-01-20 13:02:39 +00:00
'width' => 160,
'search_config' => [
'form_type' => 'section',
],
2020-06-19 10:44:38 +00:00
],
[
2023-02-02 15:54:37 +00:00
'label' => $lang['add_time'],
2020-06-19 10:44:38 +00:00
'view_type' => 'field',
'view_key' => 'add_time',
'is_sort' => 1,
2020-06-19 10:44:38 +00:00
'search_config' => [
'form_type' => 'datetime',
],
],
[
2023-02-02 15:54:37 +00:00
'label' => $lang['upd_time'],
2020-06-19 10:44:38 +00:00
'view_type' => 'field',
'view_key' => 'upd_time',
'is_sort' => 1,
2020-06-19 10:44:38 +00:00
'search_config' => [
'form_type' => 'datetime',
],
],
[
2023-01-26 09:06:20 +00:00
'label' => MyLang('operate_title'),
2020-06-19 10:44:38 +00:00
'view_type' => 'operate',
'view_key' => 'brand/module/operate',
'align' => 'center',
'fixed' => 'right',
],
],
2022-08-02 09:23:10 +00:00
// 数据配置
'data' => [
'table_name' => 'Brand',
'data_handle' => 'BrandService::BrandListHandle',
],
2020-06-19 10:44:38 +00:00
];
}
/**
* 品牌分类
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-19
* @desc description
*/
public function BrandCategoryList()
{
2020-08-01 14:17:32 +00:00
$ret = BrandCategoryService::BrandCategoryList(['field'=>'id,name']);
2020-06-19 10:44:38 +00:00
return isset($ret['data']) ? $ret['data'] : [];
}
2020-08-01 14:17:32 +00:00
/**
* 品牌分类条件处理
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-06-03
* @desc description
* @param [array] $value [条件值]
* @param [array] $params [输入参数]
*/
public function WhereValueBrandCategory($value, $params = [])
{
if(!empty($value))
{
// 是否为数组
if(!is_array($value))
{
$value = [$value];
}
// 获取品牌 id
$ids = Db::name('BrandCategoryJoin')->where(['brand_category_id'=>$value])->column('brand_id');
// 避免空条件造成无效的错觉
return empty($ids) ? [0] : $ids;
}
return $value;
}
2020-06-19 10:44:38 +00:00
}
?>