UserShare

This commit is contained in:
2024-12-01 14:11:10 +08:00
parent 6ae0f97f9a
commit 912d8a299b
4 changed files with 83 additions and 32 deletions

View File

@ -41,9 +41,14 @@ class UserShare extends Controller
* @menu true
* @return void
*/
public function info()
public function detail()
{
$this->title = '随手拍详情';
TicketUserShare::mForm('form');
$where = $this->_vali([
'id.require' => '随手拍ID不能为空',
]);
$this->vo = TicketUserShare::mk()->where($where)->findOrEmpty();
if ($this->vo->isEmpty()) $this->error('用户随手拍不存在!');
$this->fetch('detail');
}
}