Save.php
650 Bytes
<?php
use Action\AbstractAction;
class SaveController extends AbstractAction
{
/**
* 订单确认
*/
public function indexAction()
{
$data = array(
'orderSavePage' => true,
'orderSave' => true,
'hasAddress' => array(
array(
'user' => '王成龙',
'address' => '江苏省南京市建邺区嘉陵江东街18号,国家广告产业园5栋17楼,YOHO 18605269243',
'checked' => true
)
)
);
$this->_view->display('index', $data);
}
}