public function payedOrderAction()
 {
     $openid = get_openid();
     //取出所有已支付信息
     $order = new OrderFormModel();
     $allOrderArr = $order->getPayedOrderArrByOpenid($openid);
     //添加其它信息
     $allOrderArr = $this->_addInfo($allOrderArr);
     $this->assign('data', $allOrderArr);
     $this->assign("YZBody", $this->fetch('index'));
     $this->display(YZ_TEMPLATE);
 }