...
|
...
|
@@ -44,7 +44,7 @@ class IndexController extends WebAction |
|
|
$options['brandNameEn'] = isset($result['brandNameEn']) ? $result['brandNameEn'] : '';
|
|
|
$options['brandNameCn'] = isset($result['brandNameCn']) ? $result['brandNameCn'] : '';
|
|
|
$options['reviewNum'] = 6;
|
|
|
$options['controller'] = 'index';
|
|
|
$options['controller'] = 'Index';
|
|
|
$options['action'] = 'brand';
|
|
|
|
|
|
//调用模型获得数据
|
...
|
...
|
@@ -90,10 +90,10 @@ class IndexController extends WebAction |
|
|
$options['brandId'] = isset($result['brandId']) ? $result['brandId'] : '';
|
|
|
$options['brandBanner'] = isset($result['brandBanner']) ? $result['brandBanner'] : '';
|
|
|
$options['brandAbout'] = isset($result['brandAbout']) ? $result['brandAbout'] : '';
|
|
|
$options['controller'] = $this->_request->controller;
|
|
|
$options['action'] = $this->_request->action;
|
|
|
$options['controller'] = 'Index';
|
|
|
$options['action'] = 'brand';
|
|
|
//调用模型获得数据
|
|
|
$data = Product\BrandsModel::getBrandIntro($condition, $options);
|
|
|
$data = BrandsModel::getBrandIntro($condition, $options);
|
|
|
|
|
|
$data = array(
|
|
|
//初始化js
|
...
|
...
|
|