";
echo "";
echo "| ";
echo "$strPageTitle";
echo " | ";
echo "";
showHelp($helpId);
echo " | ";
echo "
";
echo "";
echo "";
//没有纪录时,显示无记录提示
if(!$rows){
echo "$strNotFindRecord";
exit();
}
?>
";
echo "| $strDescription | ";
echo "$strTariffRentChargeAmount | ";
echo "$strUnitChargingTimeSecond | ";
echo "";
$arr_description = array($strSMS,$strCallForwrd,$strRoaming,$strConferenceCall,$strCloseUserGroup);
$arr_amount = array($rows[sm_charge_amount],$rows[cf_charge_amount],$rows[roaming_charge_amount],$rows[cc_charge_amount],$rows[cug_charge_amount]);
$arr_unit = array("--",$rows[cf_charge_unit],$rows[roaming_charge_unit],$rows[cc_charge_unit],$rows[cug_charge_unit]);
for ($i=0;$i<5;$i++){
echo "";
echo "| $arr_description[$i] | ";
if($moneyPara < 10){
printf("%5.0f | ", $arr_amount[$i]/$moneyPara);
}
elseif($moneyPara < 100){
printf("%5.1f | ", $arr_amount[$i]/$moneyPara);
}
else{
printf("%5.2f | ", $arr_amount[$i]/$moneyPara);
}
//echo "$arr_amount[$i] | ";
echo "$arr_unit[$i] | ";
echo "
";
}
?>