ScoreInfo.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!-- header start -->
  2. <include file="Public/Header" />
  3. <!-- header end -->
  4. <!-- header nav start -->
  5. <include file="Public/HeaderNav" />
  6. <!-- header nav end -->
  7. <div class="am-cf user-main" <if condition="!empty($max_width_style)">style="{{$max_width_style}}"</if>>
  8. <!-- user menu start -->
  9. <include file="Public/UserMenu" />
  10. <!-- user menu end -->
  11. <!-- content start -->
  12. <div class="user-content">
  13. <div class="user-content-body p-10">
  14. <legend>
  15. <span class="fs-16">{{:L('student_operation_score')}}</span>
  16. <a href="{{:U('Home/Student/Index')}}" class="fr fs-14 m-t-5 am-icon-mail-reply"> {{:L('common_operation_back')}}</a>
  17. </legend>
  18. <!-- table start -->
  19. <if condition="!empty($data)">
  20. <table class="am-table am-table-bordered am-table-centered am-radius score-table">
  21. <tr>
  22. <th>{{$data.username}}</th>
  23. <foreach name="student_score_title_list" item="title">
  24. <th rowspan="2" class="am-text-middle">{{$title}}</th>
  25. </foreach>
  26. </tr>
  27. <tr>
  28. <th class="class-name">{{$data.class_name}}</th>
  29. </tr>
  30. <foreach name="data.item" item="v">
  31. <foreach name="v.item" key="k" item="vs">
  32. <tr>
  33. <if condition="$k eq 0">
  34. <td rowspan="{{:count($v['item'])}}" class="am-text-middle">{{$v.name}}</td>
  35. </if>
  36. <td>{{$vs.subject_name}}</td>
  37. <td>{{$vs.score}}</td>
  38. <td>{{$vs.score_level}}</td>
  39. <td>{{$vs.add_time}}</td>
  40. <td>{{$vs.comment}}</td>
  41. </tr>
  42. </foreach>
  43. </foreach>
  44. </table>
  45. <else />
  46. <include file="Public/NoData" />
  47. </if>
  48. <!-- table end -->
  49. </div>
  50. </div>
  51. <!-- content end -->
  52. </div>
  53. <!-- layuot common module start -->
  54. <include file="Public/CommonModule" />
  55. <!-- layuot common module end -->
  56. <!-- footer start -->
  57. <include file="Public/Footer" />
  58. <!-- footer end -->