...
|
...
|
@@ -36,6 +36,7 @@ class CouponController extends AbstractAction |
|
|
$result = CouponFloorProcess::getContent($resource['data']);
|
|
|
}
|
|
|
|
|
|
// $this->debugOut($resource);
|
|
|
$this->_view->display('index', array(
|
|
|
'content' => $result,
|
|
|
'floorPage' => true
|
...
|
...
|
@@ -232,4 +233,18 @@ class CouponController extends AbstractAction |
|
|
];
|
|
|
return $result;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
* 数据输出
|
|
|
*
|
|
|
* @param $data
|
|
|
*/
|
|
|
public function debugOut($data){
|
|
|
header("Content-type:text/html;charset=utf-8");
|
|
|
echo '<pre>';
|
|
|
print_r($data);
|
|
|
echo '</pre>';
|
|
|
exit;
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|