[积分商城]PlayX领取记录

This commit is contained in:
2026-03-20 18:10:44 +08:00
parent 2e0ecbaebe
commit c74b029436
5 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
<?php
namespace app\admin\controller\mall;
use Throwable;
use app\common\controller\Backend;
use support\Response;
use Webman\Http\Request;
/**
* PlayX 领取记录(后台列表)
*/
class PlayxClaimLog extends Backend
{
/**
* @var object|null
* @phpstan-var \app\common\model\MallPlayxClaimLog|null
*/
protected ?object $model = null;
protected array|string $preExcludeFields = ['id', 'create_time', 'update_time'];
protected string|array $quickSearchField = ['user_id', 'claim_request_id'];
protected string|array $indexField = [
'id',
'claim_request_id',
'user_id',
'claimed_amount',
'create_time',
];
public function initialize(): void
{
parent::initialize();
$this->model = new \app\common\model\MallPlayxClaimLog();
}
/**
* 查看
* @throws Throwable
*/
public function index(Request $request): Response
{
$response = $this->initializeBackend($request);
if ($response !== null) {
return $response;
}
if ($request->get('select') || $request->post('select')) {
return $this->select($request);
}
return $this->_index();
}
}