列表组件优化、下拉选框支持分组单选

This commit is contained in:
gongfuxiang
2022-09-23 19:06:01 +08:00
parent ba42f1e8bb
commit b5bd929f21
26 changed files with 1757 additions and 183 deletions

View File

@ -73,10 +73,10 @@ class FormHandleModule
* @date 2020-06-02
* @desc description
* @param [string] $module [模块位置]
* @param [string] $action [模块方法(默认 Run 方法,可自动匹配控制器方法名)]
* @param [string] $action [模块方法(默认 Index/Run 方法,可自动匹配控制器方法名)]
* @param [mixed] $params [参数数据]
*/
public function Run($module, $action = 'Run', $params = [])
public function Run($module, $action = 'Index', $params = [])
{
// 参数校验
$ret = $this->ParamsCheckHandle($module, $action, $params);