用户随手拍后台详情

This commit is contained in:
2024-11-29 15:25:13 +08:00
parent 92af02cb3e
commit 0db1a67e68
2 changed files with 50 additions and 0 deletions

View File

@ -12,6 +12,15 @@ use think\admin\helper\QueryHelper;
*/
class UserShare extends Controller
{
/**
* 随手拍列表
* @auth true
* @menu true
* @return void
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function index()
{
$this->title = '用户随手拍';
@ -25,4 +34,16 @@ class UserShare extends Controller
$query->with(['user'])->append(['imgs_arr', 'status_text', 'type_name', 'last_reply']);
});
}
/**
* 随手拍详情
* @auth true
* @menu true
* @return void
*/
public function info()
{
$this->title = '随手拍详情';
TicketUserShare::mForm('form');
}
}