12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- namespace crmeb\form\components;
- use crmeb\form\BaseComponent;
- use crmeb\form\BuildInterface;
- class DiyTable extends BaseComponent implements BuildInterface
- {
-
- const NAME = 'diyTable';
-
- const TYPE = ['input', 'select', 'inputNumber', 'switch'];
-
- protected $rule = [
- 'title' => '',
- 'value' => [],
- 'type' => '',
- 'field' => '',
- 'options' => [],
- 'info' => '',
- ];
-
- public function __construct(string $field, string $title, array $value = [], array $options = [])
- {
- $this->rule['title'] = $title;
- $this->rule['field'] = $field;
- $this->rule['options'] = $options;
- $this->rule['value'] = $value;
- }
-
- public function info(string $info)
- {
- $this->rule['info'] = $info;
- return $this;
- }
-
- public function column(string $name, string $key, string $type = 'input', array $props = [])
- {
- $this->rule['options'][] = ['name' => $name, 'key' => $key, 'type' => $type, 'props' => $props];
- return $this;
- }
- public function toArray(): array
- {
- $this->rule['name'] = self::NAME;
- $this->before();
- return $this->rule;
- }
- }
|