| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace app\admin\controller\service\money;
- use app\common\controller\Backend;
- use think\Db;
- /**
- * 充值管理
- *
- * @icon fa fa-circle-o
- */
- class Recharge extends Backend
- {
- /**
- * Recharge模型对象
- * @var \app\admin\model\service\money\Recharge
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\service\money\Recharge;
- $this->view->assign("paytypeList", $this->model->getPaytypeList());
- $this->view->assign("stateList", $this->model->getStateList());
- }
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if (false === $this->request->isAjax()) {
- return $this->view->fetch();
- }
- //如果发送的来源是 Selectpage,则转发到 Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- [$where, $sort, $order, $offset, $limit] = $this->buildparams();
- $list = $this->model
- ->where($where)
- ->where('state',1)
- ->order($sort, $order)
- ->paginate($limit);
- foreach ($list as &$value)
- {
- $value->user = \app\admin\model\User::where(['id'=>$value->user_id])->field('id,nickname,avatar,mobile')->find();
- }
- $result = ['total' => $list->total(), 'rows' => $list->items()];
- return json($result);
- }
- }
|