* zin: add getpagecss.

This commit is contained in:
dingyongliang
2023-03-30 17:34:40 +08:00
parent a7a7b7cbb1
commit 1385e94ed8
3 changed files with 15 additions and 0 deletions
+5
View File
@@ -14,6 +14,11 @@ class assigntodialog extends wg
'useMailto?:bool=false',
);
public static function getPageCSS()
{
return file_get_contents(__DIR__ . DS . 'css' . DS . 'v1.css');
}
protected function build()
{
global $lang;
+5
View File
@@ -5,6 +5,11 @@ class historyrecord extends wg
{
protected static $defineProps = 'actions:array,users:array,methodName:string';
public static function getPageCSS()
{
return file_get_contents(__DIR__ . DS . 'css' . DS . 'v1.css');
}
private function buildHistoriesList()
{
global $app, $lang;
+5
View File
@@ -14,6 +14,11 @@ class programmenu extends wg
'activeKey?:string'
);
public static function getPageCSS()
{
return file_get_contents(__DIR__ . DS . 'css' . DS . 'v1.css');
}
private function buildMenuTree($parent, $parentID)
{
$children = $this->getChildProgram($parentID);