企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
:-: **设置界面整体css** * * * * * ~~~ //源代码如下 /** * @title 设置界面的样式 * @description 设置界面的样式,会自动对css进行压缩 * @createtime: 2018/7/12 15:19 * @param string $style 设置的css内容,可以多次设置 true [] '' * @return $this */ public function setPageStyle($style){ $this->pageStyle .= $style; return $this; } ~~~ * * * * * ~~~ //使用代码如下,前后无需加入<style></style> $form->setPageStyle(<<<HTML .layui-btn{ background: #FF0000; } HTML ); ~~~ * * * * * 同时可以多次补充 ~~~ //使用代码如下,前后无需加入<style></style> $table->setPageStyle(<<<HTML .layui-btn{ background: #FF0000; } HTML ); //other code $table->setPageStyle(<<<HTML .layui-btn-normal{ background: #FF0000; } HTML ); ~~~