*[misc] add case for screen getSysOptions.

This commit is contained in:
songchenxuan
2024-09-12 15:52:21 +08:00
committed by 周鑫
parent eaa0e3808c
commit d7fd251cd0
+14
View File
@@ -1337,6 +1337,20 @@ class screenModel extends model
}
}
break;
case strpos($type, '.') !== false:
$params = explode('.', $type);
if(empty(array_filter($params)))
{
$options = array();
}
else
{
$module = $params[0];
$typeList = $params[1] . 'List';
$this->app->loadLang($module);
$options = $this->lang->$module->$typeList;
}
break;
default:
if($field and $sql)
{