|
- <?php
- /**
- * 产品通用数据获取
- * ============================================================================
- * * 版权所有 蜘蛛出行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: 倪宗锋
- * PhpStorm ProdController.php
- * Create By 2017/6/28 10:14 $
- */
-
- namespace zzcx\controllers\home;
-
- use common\util\Util;
- use yii\web\Controller;
- use zzcx\service\home\Prod;
-
- class ProdController extends Controller
- {
- public $service = null;
-
- public function service()
- {
- if ($this->service == null) {
- $this->service = new Prod();
- }
- return $this->service;
- }
-
- /**
- * Des:获取产品的评论
- * Name: actionGetProdComment
- * @return string
- * @author 倪宗锋
- */
- public function actionGetProdComment()
- {
- $param = [
- 'page' => $this->_post('current_page', 1),
- 'page_size' => $this->_post('page_size', 10),
- 'pro_cate_id' => $this->_post('pro_cate_id', '')
- ];
- $getList = $this->service()->getProdComment($param);
- if ($getList['flag'] == false) {
- return Util::returnJsEr($getList['msg']);
- }
- return Util::returnJsSu('', $getList['data']);
- }
-
- }
|