You've already forked guangan
用户积分列表
This commit is contained in:
@ -2,7 +2,9 @@
|
||||
|
||||
namespace plugin\points_mall\controller;
|
||||
|
||||
use plugin\points_mall\model\PointsMallUserPoint;
|
||||
use think\admin\Controller;
|
||||
use think\admin\helper\QueryHelper;
|
||||
|
||||
/**
|
||||
* 积分情况
|
||||
@ -17,6 +19,12 @@ class Point extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->title = '积分详情';
|
||||
PointsMallUserPoint::mQuery()->layTable(function () {
|
||||
|
||||
}, static function (QueryHelper $query) {
|
||||
$query->with('user');
|
||||
$query->valueBetween('point');
|
||||
});
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user