2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace crmeb\form\components;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use crmeb\form\BuildInterface;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 卡片组件
|
|
|
|
|
* Class Card
|
|
|
|
|
* @package crmeb\form\components
|
|
|
|
|
*/
|
|
|
|
|
class Card implements BuildInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 组件名
|
|
|
|
|
*/
|
|
|
|
|
const NAME = 'card';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 规则
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
protected $rule = [
|
|
|
|
|
'componentsModel' => [],
|
|
|
|
|
'title' => '',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Card constructor.
|
|
|
|
|
* @param string $title
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(string $title)
|
|
|
|
|
{
|
|
|
|
|
$this->rule['title'] = $title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加组件群
|
|
|
|
|
* @param array $components
|
|
|
|
|
* @return $this
|
|
|
|
|
*/
|
|
|
|
|
public function components(array $components = [])
|
|
|
|
|
{
|
|
|
|
|
$this->rule['componentsModel'] = $components;
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
public function toArray(): array
|
|
|
|
|
{
|
|
|
|
|
$this->rule['name'] = self::NAME;
|
|
|
|
|
$componentsModel = [];
|
|
|
|
|
foreach ($this->rule['componentsModel'] as $item) {
|
|
|
|
|
if ($item instanceof BuildInterface) {
|
|
|
|
|
$componentsModel[] = $item->toArray();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$this->rule['componentsModel'] = $componentsModel;
|
|
|
|
|
return $this->rule;
|
|
|
|
|
}
|
|
|
|
|
}
|