优化页面和模型

This commit is contained in:
2026-03-30 18:33:24 +08:00
parent 2686c54781
commit 1cd5c3142d
33 changed files with 817 additions and 215 deletions

View File

@@ -0,0 +1,61 @@
<?php
namespace app\admin\controller\mall;
use Throwable;
use app\common\controller\Backend;
use support\Response;
use Webman\Http\Request;
/**
* 每日推送数据(后台列表)
*/
class DailyPush extends Backend
{
/**
* @var object|null
* @phpstan-var \app\common\model\MallDailyPush|null
*/
protected ?object $model = null;
protected array|string $preExcludeFields = ['id', 'create_time', 'update_time'];
protected string|array $quickSearchField = ['user_id', 'username', 'date'];
protected string|array $indexField = [
'id',
'user_id',
'date',
'username',
'yesterday_win_loss_net',
'yesterday_total_deposit',
'lifetime_total_deposit',
'lifetime_total_withdraw',
'create_time',
];
public function initialize(): void
{
parent::initialize();
$this->model = new \app\common\model\MallDailyPush();
}
/**
* 查看
* @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();
}
}