You've already forked guangan
积分变化
This commit is contained in:
20
plugs/think-plugs-points-mall/src/controller/PointLog.php
Normal file
20
plugs/think-plugs-points-mall/src/controller/PointLog.php
Normal 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');
|
||||
});
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user