add:新增table组件

This commit is contained in:
JaguarJack
2021-03-29 19:52:01 +08:00
parent 2f25a0892e
commit d4020b93a3
9 changed files with 1217 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace catcher\library\table;
trait Events
{
/**
* 表格选择事件
*
* @time 2021年03月29日
* @return mixed
*/
public function selectionChange()
{
$this->appendEvents([
'selection-change' => 'handleSelectMulti'
]);
return $this;
}
}