《dcat admin》tab组件
目前情况:在选项卡2页面 切换列表的页数会跳到选项卡1的页面
有什么办法不进行跳转到其他选项卡页面嘛
//引用tab组件
$tab = Tab::make();
//$this->grid() 是当前页面的列表方法
$tab->add('选项卡1', 'html', true);
$tab->add('选项卡2',$this->grid());
没看懂