...
|
...
|
@@ -98,6 +98,21 @@ class Bootstrap extends Bootstrap_Abstract |
|
|
$module = 'Product';
|
|
|
$controller = 'Item';
|
|
|
break;
|
|
|
case 'specialsale1':
|
|
|
$module = 'Product';
|
|
|
$controller = 'Sale';
|
|
|
$dispatcher->getRequest()->setParam('specialsaleId', 1);
|
|
|
break;
|
|
|
case 'specialsale2':
|
|
|
$module = 'Product';
|
|
|
$controller = 'Sale';
|
|
|
$dispatcher->getRequest()->setParam('specialsaleId', 2);
|
|
|
break;
|
|
|
case 'specialsale3':
|
|
|
$module = 'Product';
|
|
|
$controller = 'Sale';
|
|
|
$dispatcher->getRequest()->setParam('specialsaleId', 3);
|
|
|
break;
|
|
|
default: // 其它(识别为品牌)
|
|
|
$module = 'Product';
|
|
|
$action = 'Brand';
|
...
|
...
|
|