student_isp_error_msg.php 827 B

1234567891011121314151617
  1. <style type="text/css">
  2. .exception-btn{cursor: pointer;color: red;text-decoration: underline;font-weight: bolder;}
  3. .exception-btn:link{color:red;}
  4. .exception-btn:visited{color:red;}
  5. .exception-btn:hover{color:red;}
  6. .exception-btn:active{color:red;}
  7. /*a.h:active,a.h:link,a.h:visited {color:#999;} a.h:hover,a.h:focus {color:#999;background:transparent;}*/
  8. </style>
  9. <?php if(isset($stuIspErroMsg[$rt['studentId']]) && $stuIspErroMsg[$rt['studentId']]):?>
  10. <?php
  11. $ispErrorMsg = implode('<br/>', $stuIspErroMsg[$rt['studentId']]);
  12. ?>
  13. <a class="exception-btn" style="font-size:12px" onclick="layer.alert('<?php echo $ispErrorMsg;?>');" title="点击我">异常</a>
  14. <?php else:?>
  15. <span class="label label-sm label-danger" style="font-size:12px">未生成</span> <!--红-->
  16. <?php endif;?>