where(['status' => 1])->order('sort desc,id desc')->select()->toArray(); } /** * 删除权限事件 * @param string $ids */ public function onAdminDelete(string $ids) { if (count($aids = str2arr($ids ?? '')) > 0) { SystemNode::mk()->whereIn('auth', $aids)->delete(); } sysoplog($this->oplogType, "删除{$this->oplogName}[{$ids}]及授权配置"); } /** * 格式化创建时间 * @param string $value * @return string */ public function getCreateAtAttr(string $value): string { return format_datetime($value); } }