| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace UCore\DcatAdmin\Traits;
- use App\Module\System\AdminLazyRenderable\AdminInfo;
- /**
- * 管理员ID
- *
- */
- trait AdminId
- {
- public function columnAdminId($field = 'admin_id',$label = '管理员')
- {
- $this->grid->column($field,$label)->expand(function () use ($field) {
- return AdminInfo::make([
- 'admin_id' => $this->$field
- ]);
- });
- }
- }
|