'', 'value' => [], 'type' => '', 'field' => '', 'options' => [], 'info' => '', ]; /** * DiyTable constructor. * @param string $field * @param string $title * @param array $value * @param array $options */ 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; } /** * @param string $info * @return $this */ public function info(string $info) { $this->rule['info'] = $info; return $this; } /** * 设置列 * @param string $name * @param string $key * @param string $type * @param array $props * @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; } }