This commit is contained in:
2024-12-03 10:18:07 +08:00
parent 6fcd8f7ce2
commit a6c7d1de15
14 changed files with 236 additions and 20 deletions

View File

@ -8,6 +8,7 @@ use plugin\ticket\model\TicketType;
use plugin\ticket\model\TicketUserShare;
use think\admin\Controller;
use think\admin\helper\QueryHelper;
use think\admin\model\SystemUser;
/**
* 用户随手拍
@ -57,7 +58,7 @@ class UserShare extends Controller
$this->ticket_list = [];
}
$this->type_list = TicketType::getList();
$this->user_list = [];
$this->user_list = SystemUser::query()->select();
$this->fetch('detail');
}