| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace addons\RandFee\backend\controllers;
- use addons\RandFee\common\service\OrderService;
- use Yii;
- use common\controllers\AddonsController;
- /**
- * 默认控制器
- *
- * Class DefaultController
- * @package addons\RandFee\backend\controllers
- */
- class DefaultController extends BaseController
- {
- public $enableCsrfValidation = false;
- /**
- * 首页
- *
- * @return void
- */
- public function actionIndex()
- {
- if ($this->request->isAjax) {
- $post = $this->request->getQueryParams();
- $service = new OrderService(['mall_id' => $this->mall_id]);
-
- return $this->success('ok', $service->getOrderList($post));
- }
- return $this->render('index');
- }
- }
|