ProductController.php
413 Bytes
<?php
namespace backend\controllers;
use Yii;
/**
* Live controller
*/
class ProductController extends BaseController
{
/**
* 房间商品列表
* @return type
*/
public function actionList()
{
if (!$room_id = Yii::$app->getRequest()->getQueryParam('id')){
return $this->redirect($this->_refer);
}
return $this->render('list');
}
}