Exemplo n.º 1
0
<a href="<?=$linkset_word->moreurl?>" target="_blank">更多…</a>
<?php } ?>
</div>
</div>
<!--快速知道 end-->





                

				                    <!--随访推荐 start-->

<?php
                        if (DiseasePage::isDiseaseWithNfs($diseasePage->disease->id)){
?>
                    <div class="suifang lh180 mb30">

                    <p class="f20 suifang_title pb10"><a target="_blank" class="" href="http://www.<?=URL_PREFIX ?>haodf.com/paperdetail/guanxinbingyuanwaiguanli.htm">院外疾病管理服务</a><span class="f16 line_font">助您预防冠心病复发</span><span class="hot">Hot!!</span></p>

                    <p class="pb15">支架患者院后疾病管理是在医生指导下,通过网络和电话的方式,对患者康复过程进行长期、整体、正规的远程指导和管理,防范冠心病的复发甚至恶化。</p>

                    <p class="pb15">

                    <span class="or_block">用药指导</span>

                    <span class="or_block">病情监控</span>

                    <span class="or_block">生活指导</span>
Exemplo n.º 2
0
    public function index($request, $response)
    {/*{{{*/
        $this->initialize($request, $response);
        
        //疾病页2013版
        $diseasePage = DiseasePage::getByDiseaseId($this->disease->id);
        
        if($diseasePage instanceof DiseasePage && $diseasePage->isOnlineOrPreview())
        {
            $ddCnt = DiseaseClient::getInstance()->getDiseaseDoctorCnt($this->disease->id);
            $response->diseasePage = $diseasePage;
            $disease=$diseasePage->disease;
            $response->previewId = $request->getRequest('previewId', 0);
            $title = $disease->name.','.$disease->name.'的症状、治疗_疾病查询_好大夫在线';
            $keywords = $disease->name.",".$disease->name."的症状,".$disease->name."的治疗,".$disease->name."吃什么";
            $description = "中国最大的医疗网站-好大夫在线疾病库详细介绍".$disease->name."病因,".$disease->name."症状,".$disease->name."治疗方式,如何护理".$disease->name."患者等。推荐".$ddCnt."位".$disease->name."专家、咨询".$disease->name."问题、预约".$disease->name."专家门诊。";

            $response->title=$title;
            $response->keywords=$keywords;
            $response->description=$description;

            if (DiseasePage::isDiseaseWithNfs($diseasePage->disease->id)){
                $response->nfsCount = FollowupClient::getInstance()->getFollowupOwnerCount();
                $response->nfsDiseaseCount = FollowupClient::getInstance()->getPCINfsDiseaseCount();
                $response->nfsDiseaseSpaceCount = FollowupClient::getInstance()->getPCINfsDiseaseSpaceCount();
                $response->healthDiaryCount = HealthDiaryClient::getInstance()->getHealthDiaryCount();
            }

        	return 'diseasepage';
        }

        //旧模板中的新模板 : newindex => /disease/newindex
        //目前 newindex 437个疾病 by sjp 20130806
        if($this->disease->isNewDisease == 1){
            $this->newIndex($request, $response);
            return 'newindex';
        }
        //else 走到这里,是最旧的版本的模板: success => /disease/index


        //专题部分
        list($openBooking, $topic, $doctor) = $this->getZhuanTi4Case();

        //最新回复
        $threads = $this->searchByDisease($this->disease, 3);
        
        $response->openBooking = $openBooking;
        $response->topic = $topic;
        $response->doctor = $doctor;
        $response->diseaseId = $this->disease->id;
        $response->diseaseParentId = $this->diseaseParent->id;

        $response->modifiedTriageCity = array();
        $diseaseId = $this->disease->voteDisease->id;
        $this->getCurrencyMethod($request, $response, $diseaseId);
        $response->threads = $threads;
        $name = $this->disease->name;
        $response->diseaseName=$name;
        $commentCnt = DAL::get()->queryCommentCntByDiseaseId('doctorcomment', $this->disease->id);
        $diseaseDoctorCnt = DiseaseClient::getInstance()->getDiseaseDoctorCnt($this->disease->id);
        $response->desc = $commentCnt."篇".$name."患友亲历的看病经验、".$diseaseDoctorCnt."位大医院专家介绍".$name."症状、".$name."治疗方案等;各地".$name."专家排行;
            直接向专家本人咨询。".$diseaseDoctorCnt."位大医院专家介绍".$name."症状、".$name."治疗方案等;各地".$name."专家排行;直接向专家本人咨询。".
            $name."症状、".$name."治疗方案等;各地".$name."专家排行;直接向专家本人咨询";

    }/*}}}*/