AdminId.php 467 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace UCore\DcatAdmin\Traits;
  3. use App\Module\System\AdminLazyRenderable\AdminInfo;
  4. /**
  5. * 管理员ID
  6. *
  7. */
  8. trait AdminId
  9. {
  10. public function columnAdminId($field = 'admin_id',$label = '管理员')
  11. {
  12. $this->grid->column($field,$label)->expand(function () use ($field) {
  13. return AdminInfo::make([
  14. 'admin_id' => $this->$field
  15. ]);
  16. });
  17. }
  18. }