You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
734 B
32 lines
734 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace app\admin\controller\shopro\commission;
|
||
|
|
||
|
use app\admin\controller\shopro\Common;
|
||
|
use app\admin\model\shopro\commission\Reward as RewardModel;
|
||
|
|
||
|
class Reward extends Common
|
||
|
{
|
||
|
protected $model = null;
|
||
|
|
||
|
public function _initialize()
|
||
|
{
|
||
|
parent::_initialize();
|
||
|
$this->model = new RewardModel();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 查看
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
|
if (!$this->request->isAjax()) {
|
||
|
return $this->view->fetch();
|
||
|
}
|
||
|
|
||
|
$list = $this->model->sheepFilter()->with(['buyer', 'agent', 'order', 'order_item'])->paginate($this->request->param('list_rows', 10));
|
||
|
|
||
|
$this->success('获取成功', null, $list);
|
||
|
}
|
||
|
}
|