积分变化

This commit is contained in:
2024-12-23 13:58:19 +08:00
parent c43e7a037a
commit 98a5c4f73f
5 changed files with 87 additions and 7 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace plugin\points_mall\controller;
use plugin\points_mall\model\PointsMallUserPointLog;
use think\admin\Controller;
use think\admin\helper\QueryHelper;
class PointLog extends Controller
{
public function index()
{
$this->title = '积分记录';
PointsMallUserPointLog::mQuery()->layTable(function () {
}, static function (QueryHelper $query) {
$query->with('user');
$query->dateBetween('create_at');
});
}
}