在控制器 init 方法中加入代$this->treePidField='pid'
�对字段 pid 对赋值需要使用者自己实现
示例:
<?php
namespace app\controller;
use app\BaseController;
class User extends BaseController
{
use \tpScriptVueCurd\base\controller\Controller;
public function init(): void
{
$this->title='人员信息';
$this->md=\app\model\User::make($this);
//数据上级字段
$this->treePidField='pid';
//指定树形结构的列名
//$this->childrenColumnName='children';
//展示树形数据时,每层缩进的宽度,以 px 为单位
//$this->indentSize=15;
//是否展开所有父级
//$this->expandAllRows=false;
}
}
模型示例:https://gitee.com/tjztjspz/tp-script-vue-curd-test/blob/v2.0/app/model/Tree.php