function ajaxqqconversationAction()
 {
     $this->_helper->layout->disableLayout();
     if ($this->_request->getParam('uid')) {
         $idValue = explode('&', $this->_request->getParam('uid'));
         $uid = $idValue[0];
         $qqconversationModel = new QqConversation();
         $qqconversation = $qqconversationModel->fetchAll('consumer_id="' . $uid . '"');
         if ($qqconversation) {
             $this->view->qqconversation = $qqconversation;
         }
     }
 }