quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
 
namespace app\operations\controller\plus\region;
 
use app\operations\controller\Controller;
use app\operations\model\plus\region\BonusLog as BonusLogModel;
 
/**
 * 分红结算控制器
 */
class BonusLog extends Controller
{
    /**
     * 结算列表
     */
    public function index($bonus_id)
    {
        $model = new BonusLogModel;
        $list = $model->getList($bonus_id);
        return $this->renderSuccess('', compact('list'));
    }
}