當前位置: 首頁>>代碼示例>>PHP>>正文


PHP GlobalTemplete::getMultiPatient方法代碼示例

本文整理匯總了PHP中GlobalTemplete::getMultiPatient方法的典型用法代碼示例。如果您正苦於以下問題:PHP GlobalTemplete::getMultiPatient方法的具體用法?PHP GlobalTemplete::getMultiPatient怎麽用?PHP GlobalTemplete::getMultiPatient使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在GlobalTemplete的用法示例。


在下文中一共展示了GlobalTemplete::getMultiPatient方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

    .gonglue a:hover {
        color: #333;
    }
    </style>

<div class="oldpatients_box">
    <div class="oldpatients">
        <div class="oldpatients-title">門診/住院患者報到</div>
        <div class="oldpatients_con">
            <div class="tips" style="text-align:left; padding-left:186px;margin-bottom:-20px;">
                <?=$user->hasPatient()?"請選擇報到患者":"請填寫報到患者信息"?>
            </div>
            <div style="width:650px; margin:0 auto;">
                <p class="pt20"></p>
                <form action='dopatientsignin' method='post' name='form1' id='form1' class="fw-patients f14">
                    <?php  GlobalTemplete::getMultiPatient(array('user' => $user, 'patientId'=>'-1', 'thePatient' => $thePatient)); ?>
                    <input type="hidden" name="from" id="from" value="patientlist" />
                    <input type="hidden" name="forward" id="forward" value="<?=$forward?>" />
                    <input type="hidden" name="spaceId" id="spaceId" value="<?=$spaceId?>" />
                    <input type="hidden" name="newPatientTel" id="newPatientTel" value="<?=$thePatient['mobile']?>" />
                </form>
                <div style="padding-left: 10px; background-color: #eff8d6;" id="el_my_attachment"></div>
                <p></p>

                <div class="choose-btn pt20 pb10">
                    <a onclick="submitSignin('/user/choosepatient')" class="general-btn fb f14">
                        <span class="general-btn-l pl10">
                            <span class="general-btn-r pr10">
                                報&#12288;到
                            </span>
                        </span>
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:31,代碼來源:showpatientlist.php

示例2: ob_start

<?php
ob_start();
ob_clean();
GlobalTemplete::getMultiPatient(array('user' => $user, 'from' => 'comment', 'noJs' => true));
$html = ob_get_contents();
ob_end_clean();
echo $html;
?>
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:8,代碼來源:ajaxshowaddcomment.php

示例3: include

        <?php 
//        include('_space_followup_video.php');
        ?>
        <div class="w650 bc f14 pt30 pb30">
            <p class="fb orange">恭喜您順利地完成<?=$diseaseName?>手術!歡迎您按照院後醫院管理彩頁來到好大夫在線參與隨訪!</p>
            <p class="mt10 fb orange">我們已根據您或家屬在院內填寫的隨訪回執單將您的信息錄入隨訪係統。</p>
            <p class="mt30 tc"><img src="http://i1.hdfimg.com/userspace/images/cartoon101.jpg" alt="" /></p>
        <div id='notice' class="f14 pt40" style="text-align:center;color:red;font-size=30px;height:160px;">
        </div>
            <form action="" method="post" name="form1" id="form1" class="fw-patients">
            <p class="mt30 f16 fb">首先,請您核對並確認患者信息</p>
            <input type="hidden" name="patientCardNO" id="patientCardNO" value="<?=$patientCard->no?>" />
            <?php
            if($user->hasPatient()) 
            {
                GlobalTemplete::getMultiPatient(array('user' => $user, 'patientId'=>'-1'));
            } 
            else 
            {
                include('_signin_nopatient.php'); 
            }
            ?>
            <div class="mt20 tc mb20">
                <a class="general-btn fb f14"  ><span class="general-btn-l pl15"><span class="general-btn-r pr15"><span class="add-doctor-icon">患者信息確認無誤,進入隨訪</span></span></span></a>
            </div>
            </form>
    </div>
    </div>
</body>
<div style="width:980px; margin: auto"><?php include_once 'inner/www_footer.php' ?></div>
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:30,代碼來源:showpatientsignin.php

示例4: inityear

    <script type="text/javascript" src="http://i1.hdfimg.com/zixun/js/patient.39aca86c.js"></script>
    <script type="text/javascript" src="http://i1.hdfimg.com/zixun/js/city.b6ba4734.js"></script>
    <script type="text/javascript" src="http://i1.hdfimg.com/zixun/js/dateselect.js?1303386395"></script>
<SCRIPT LANGUAGE="JavaScript">
$(function(){
    inityear($("#dateyear"));
    initmonth($("#datemonth"));
});
</SCRIPT>
</head>
<body>
	<div class="checkPatients">
		<h3 class="checkPatients-title f16">請您選擇相應的患者資料</h3>
        <form id="select_patient" name="select_patient" action="<?=$target?>" method="post">
        <input type="hidden" name="usesession" value='true'/>
            <?php GlobalTemplete::getMultiPatient(array('user' => $user, 'thePatient' => $thePatient, 'patientId' => $patientId, 'from' => $from)); ?>
            <div class="checkPatients-submit"><input type="button" onclick="submitForm();" value="確認提交"></div>
        </form>
    </div>
	<script type="text/javascript">
        function submitForm()
        {/*{{{*/
            if (checkFormInput("select_patient"))
            {
                document.select_patient.submit()
            }
        }/*}}}*/
	</script>
</body>
</html>
開發者ID:sdgdsffdsfff,項目名稱:hdf-client,代碼行數:30,代碼來源:patientselect.php


注:本文中的GlobalTemplete::getMultiPatient方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。