+ [task#135043 0.2h 2h] add content for the thinkBcg widget.

This commit is contained in:
wangzemei
2024-12-18 11:22:41 +08:00
committed by 孙浩
parent 2ed5a1f654
commit efe10dec91
+13
View File
@@ -10,4 +10,17 @@ requireWg('thinkModel');
*/
class thinkBcg extends thinkModel
{
protected function buildBody(): node
{
global $app, $lang;
$app->loadLang('thinkwizard');
list($mode, $wizard, $previewKey) = $this->prop(array('mode', 'wizard', 'previewKey'));
return div();
}
protected function build(): node
{
return div(setClass('model-appeals my-1 flex col flex-wrap justify-between'), $this->buildBody());
}
}