联系官方销售客服
QQ1835022299
028-61286886
结合LayUI中的时间组件和Ftable字段去二开,新增时间选择字段,有可能会对其他人有用,就分享一下,代码回复就可以看到
private function _field_type_select($id, $type) { $arr = [ 0 => dr_lang('不使用'), 1 => dr_lang('文本框'), 2 => dr_lang('下拉选择框'), 3 => dr_lang('时间日期'), ]; $html = ''; return $html; } private function _field_type_html($config, $cname, $value, $hang, $lie) { $html = ''; if ($config['type'] == 1) { $html.= ''; } elseif ($config['type'] == 2) { $html = ''; }elseif ($config['type'] == 3) { $html = ''; } return $html; }