Showing
1 changed file
with
43 additions
and
0 deletions
@@ -557,4 +557,47 @@ class HomeController extends AbstractAction | @@ -557,4 +557,47 @@ class HomeController extends AbstractAction | ||
557 | self::orderAction(); | 557 | self::orderAction(); |
558 | } | 558 | } |
559 | 559 | ||
560 | + public function orderDetailAction() | ||
561 | + { | ||
562 | + $data = array( | ||
563 | + 'name' => '毛毛莉Lydia', | ||
564 | + 'phoneNum' => '18600001133', | ||
565 | + 'address' => '南京市建邺区嘉陵江东街18号国家广告产业园5栋17楼', | ||
566 | + 'orderStatus' => '订单取消', | ||
567 | + 'orderNum' => '418358063', | ||
568 | + 'orderTime' => '2014-03-10 17:25:10', | ||
569 | + | ||
570 | + 'orderCancel' => true, | ||
571 | + | ||
572 | + 'goods' => array( | ||
573 | + array( | ||
574 | + 'id' => 1, | ||
575 | + 'thumb' => 'http://img11.static.yhbimg.com/goodsimg/2015/11/04/05/01ce2aff32fc3c90584f516167cd526d91.jpg?imageMogr2/thumbnail/235x314/extent/235x314/background/d2hpdGU=/position/center/quality/90', | ||
576 | + 'name' => 'Adidas Originals ZX FLUXM22508', | ||
577 | + 'color' => '黄', | ||
578 | + 'size' => '43', | ||
579 | + 'price' => '699.00', | ||
580 | + 'count' => '2' | ||
581 | + ), | ||
582 | + array( | ||
583 | + 'id' => 1, | ||
584 | + 'thumb' => 'http://img10.static.yhbimg.com/goodsimg/2015/11/04/05/0188f1aca49ac478a565ec029b5d2d4a6c.jpg?imageMogr2/thumbnail/235x314/extent/235x314/background/d2hpdGU=/position/center/quality/90', | ||
585 | + 'name' => 'B.Duck浴室玩伴mini浮水鸭', | ||
586 | + 'gift' => true, | ||
587 | + 'color' => '黄', | ||
588 | + 'size' => '43', | ||
589 | + 'price' => '0.00', | ||
590 | + 'count' => '1' | ||
591 | + ) | ||
592 | + ), | ||
593 | + | ||
594 | + 'sumPrice' => 799, | ||
595 | + 'salePrice' => 80, | ||
596 | + 'freight' => 5, | ||
597 | + 'coupon' => 0, | ||
598 | + 'yohoCoin' => 5, | ||
599 | + 'price' => 719 | ||
600 | + ); | ||
601 | + $this->_view->display('order-detail', array('orderDetail' => $data, 'orderDetailPage' => true)); | ||
602 | + } | ||
560 | } | 603 | } |
-
Please register or login to post a comment