1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace app\admin\controller\special\recharge;
- use app\common\controller\Backend;
- use think\Controller;
- use think\Request;
- /**
- * 充值链-url
- *
- * @icon fa fa-circle-o
- */
- class Url extends Backend
- {
-
- /**
- * SpecialRechargeUrl 模型对象
- */
- protected $model = null;
- /**
- * 是否是关联查询
- */
- protected $relationSearch = true;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('SpecialRechargeUrl');
- $this->view->assign("orderStatusList", $this->model->getOrderStatusList());
- $this->view->assign("statusList", $this->model->getStatusList());
- }
-
- /**
- * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个方法
- * 因此在当前控制器中可不用编写增删改查的代码,如果需要自己控制这部分逻辑
- * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
- */
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $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();
- $total = $this->model
- ->where($where)
- ->order($sort, $order)
- ->count();
- $list = $this->model
- ->field("special_recharge_url.*, goods.money as money")
- ->join('special_recharge_tpl spt', 'spt.id = special_recharge_url.tpl_id')
- ->join('goods', 'goods.id = spt.goods_id')
- ->where($where)
- ->order($sort, $order)
- ->limit($offset, $limit)
- ->select();
- $result = array("total" => $total, "rows" => $list);
- return json($result);
- }
- return $this->view->fetch();
- }
- }
|