123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- namespace app\admin\controller\card;
- use app\common\controller\Backend;
- use app\common\model\CardDayCollect;
- use app\main\constants\ApiConstants;
- use app\main\service\ApiService;
- use think\Controller;
- use think\Request;
- /**
- * 抽奖统计管理
- *
- * @icon fa fa-circle-o
- */
- class Collect extends Backend
- {
- /**
- * @var CardDayCollect
- */
- protected $model = null;
- protected $noNeedRight = ['index'];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('CardDayCollect');
- }
- /**
- * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个方法
- * 因此在当前控制器中可不用编写增删改查的代码,如果需要自己控制这部分逻辑
- * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
- */
- public function index()
- {
- $aid = $this->request->get('id');
- //设置过滤方法
- $this->request->filter(['strip_tags']);
- if ($this->request->isAjax())
- {
- //如果发送的来源是Selectpage,则转发到Selectpage
- if ($this->request->request('pkey_name')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $channelId = $this->group < 3 ? 0 : $this->auth->id;
- $total = $this->model
- ->where('c_id', $aid)
- ->where('channel_id', $channelId)
- ->count();
- $list = $this->model
- ->where('c_id', $aid)
- ->where('channel_id', $channelId)
- ->order('createdate', 'desc')
- ->limit($offset, $limit)
- ->select();
- $result = array("total" => $total, "rows" => $list);
- return json($result);
- }
- $this->assignconfig('id', $aid);
- return $this->view->fetch();
- }
-
- }
|