Save.php 1.1 KB
<?php

use Action\AbstractAction;

class SaveController extends AbstractAction
{
    /**
     * 订单确认
     */
    public function indexAction()
    {
        $data = array(
            'orderSavePage' => true,
            'orderSave'=>array(
                    'orderProducts'=>array(
                        array('name' =>"Eight Guys 破洞束口牛仔裤",'tip'=>"颜色:蓝色 尺码:L",'unitprice'=>'179.00','currency'=>'0','count'=>'0'),
                        array('name' =>"Eight Guys 破洞束口牛仔裤",'tip'=>"颜色:蓝色 尺码:L",'unitprice'=>'179.00','currency'=>'0','count'=>'0')
                    )
                )
        );

        $this->_view->display('index', $data);
    }

    /*获取优惠卷的面额*/
    public function priceByCodeAction()
    {
        $result = array();

        do {
            
            $result=array(
                'code'=>200,
                'msg'=>'成功',//卷不存在,过期等等
                'price'=>'10'
            );
        } while (false);

        $this->echoJson($result);
    }

}