label = $label; $this->name = $name; JsFacade::registerLayUIModule('laydate'); } /** * 设置默认值 * @param $value * @return $this */ public function setDefault($value) { $value and $this->default = $value; return $this; } /** * 获取html * @param bool $showLabel 是否显示label * @return mixed|string */ public function getHtml(bool $showLabel = true) { return <<{$this->getLabel($showLabel)}
{$this->getForm($showLabel)}
HTML; } /** * 获取label * @param $lineFeed * @return string */ private function getLabel($lineFeed) { return $lineFeed ? Basics::indentAndLineFeed(4, Basics::BEFORE) . "" : ""; } /** * 获取表单html文本 * @param $showLabel * @return string */ private function getForm($showLabel) { $placeholder = $showLabel ? "{:lang('please enter')}" : $this->label; $html = Basics::indentAndLineFeed(5, Basics::BEFORE) . "name}\" id='{$this->name}' required placeholder=\"{$placeholder}\" value=\"{$this->default}\" autocomplete=\"off\" class=\"layui-input\">" . Basics::indentAndLineFeed(4, Basics::BEFORE); JsFacade::layUICode(self::timeRender()); return $html; } /** * 时间选择js渲染 * @return string */ private function timeRender() { return <<name}' ,type: '{$this->timeType}' }); JS; } }