本文整理汇总了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">
报 到
</span>
</span>
示例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;
?>
示例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>
示例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>