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.
|
- @{
- ViewBag.Title = "新生缴费管理";
- Layout = "~/Views/Shared/_Form.cshtml";
- }
- <style>
- .title{
- text-align:center;
- font-size:16px;
- margin-bottom:10px;
- }
- #form {
- padding: 10px 20px;
- }
- #btnBox{
- text-align:center;
- }
- #btnBox > div{
- margin-right:50px;
- margin-top:20px;
- }
- </style>
- <div class="lr-form-wrap" id="form">
- <div class="title">费用明细</div>
- <table class="table table-bordered" id="PayFeeDetail">
- @*<tr>
- <td>第一项</td>
- <td>100元</td>
- </tr>
- <tr>
- <td colspan="2">合计:200元</td>
- </tr>*@
- </table>
- <div id="btnBox">
- <div id="confirmPayFee" class="btn btn-primary">确认缴费</div>
- <div id="cancelPayFee" class="btn btn-default">取消缴费</div>
- </div>
- </div>
- @Html.AppendJsFile("/Areas/EducationalAdministration/Views/StuInfoFresh/PayFeeForm.js")
|