Server_AccessControl/widgets/Department.php
2020-10-08 17:12:19 +07:00

23 lines
363 B
PHP

<?php
namespace app\widgets;
use yii\base\Widget;
class Department extends Widget {
public $pid;
public function init() {
parent::init();
}
public function run() {
return $this->render("department", [
"lists" => \app\models\Department::find()->andWhere(['pid' => $this->pid])->all()
]);
}
}