You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
968 B

  1. @{
  2. ViewBag.Title = "新生缴费管理";
  3. Layout = "~/Views/Shared/_Form.cshtml";
  4. }
  5. <style>
  6. .title{
  7. text-align:center;
  8. font-size:16px;
  9. margin-bottom:10px;
  10. }
  11. #form {
  12. padding: 10px 20px;
  13. }
  14. #btnBox{
  15. text-align:center;
  16. }
  17. #btnBox > div{
  18. margin-right:50px;
  19. margin-top:20px;
  20. }
  21. </style>
  22. <div class="lr-form-wrap" id="form">
  23. <div class="title">费用明细</div>
  24. <table class="table table-bordered" id="PayFeeDetail">
  25. @*<tr>
  26. <td>第一项</td>
  27. <td>100元</td>
  28. </tr>
  29. <tr>
  30. <td colspan="2">合计:200元</td>
  31. </tr>*@
  32. </table>
  33. <div id="btnBox">
  34. <div id="confirmPayFee" class="btn btn-primary">确认缴费</div>
  35. <div id="cancelPayFee" class="btn btn-default">取消缴费</div>
  36. </div>
  37. </div>
  38. @Html.AppendJsFile("/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeForm.js")