Date 日期控件
Date 日期控件适用于输入日期格式的控件,日期格式控件 可以对 int 类型 和 string 类型的Model 属性进行注解,如果是 int 类型 将保存时间戳,如果是 string 类型则保存如 2020-01-02 的格式。
使用示例:
#[Date(
label: '选择日期1',
)]
public string $date1 = '';
#使用时间戳格式
#[Date(
label: '选择日期2',
)]
public ?int $date2 = null; //此处不要设置为 0 ,0也是会对应一个日期。
同时我们可以用 $defaultFunc 来设置我们的默认值为当天,
完整示例如下:
UserModel
namespace app\home\model;
use beacon\core\Form;
use beacon\widget\Date;
#注意 这里需要使用表单注解
#[Form(title: '用户表单', table: '@pf_user', template: 'user.form.tpl')]
class UserModel
{
#[Date(
label: '选择日期1',
defaultFunc: [self::class, 'getDate']
)]
public ?string $date1 = null;
#[Date(
label: '选择日期2',
defaultFunc: 'time'
)]
public ?int $date2 = null;
public static function getDate(): string
{
return date('Y-m-d');
}
}
使用YeeUI 样式的 模板如下
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>{$form->title}</title>
<link type="text/css" rel="stylesheet" href="/yeeui/css/yeeui.css"/>
<link type="text/css" rel="stylesheet" href="/icofont/icofont.css"/>
<script src="/yeeui/third/jquery-3.3.1.min.js"></script>
<script src="/yeeui/yee.js"></script>
</head>
<body>
<div style="margin: 20px">
<form method="post">
<div class="yee-panel">
<div class="panel-caption">
{if $form->getType()=='add'}添加{elseif $form->getType()=='edit'}编辑{/if}{$form->title}
</div>
<div class="panel-content">
{foreach from=$form->getViewFields() item=field}
{field_row field=$field}
{/foreach}
</div>
<div class="yee-submit">
<label class="submit-label"></label>
<div class="submit-cell">
{*输出隐藏域*}
{$form->fetchHideBox()|raw}
<input type="submit" class="form-btn red" value="提交">
</div>
</div>
</div>
</form>
</div>
</html>
控制器页面如下:
namespace app\home\controller;
use app\home\model\UserModel;
use beacon\core\Controller;
use beacon\core\Form;
use beacon\core\Logger;
use beacon\core\Method;
class User extends Controller
{
#[Method(act: 'index', method: Method::GET)]
public function index()
{
$form = Form::create(UserModel::class, 'add');
$this->displayForm($form);
}
#[Method(act: 'index', method: Method::POST)]
public function add()
{
$user = new UserModel();
$form = Form::create($user, 'add');
$input = $this->completeForm($form);
Logger::log($input); #input 可以用用于插入或者更新数据库。
Logger::log($user);
}
}
呈现效果:
提交表单后 debug.php 打印数据如下:
{
"date1": "2021-05-12",
"date2": 1620748800
}
{
"___class_name": "app\\home\\model\\UserModel",
"date1": "2021-05-12",
"date2": "1620748800"
}