feat:开会前的提交

This commit is contained in:
sundongyu 2024-04-10 13:21:33 +08:00
parent 923bebedf1
commit 3a0821334d
3 changed files with 63 additions and 6 deletions

View File

@ -49,10 +49,10 @@
<span>助学贷款</span>
</t-menu-item>
<t-menu-item value="3-4" to="/daily">
<span>收费日报</span>
<span>收费日报及收费明细</span>
</t-menu-item>
<t-menu-item value="3-5" to="/charge-schedule">
<span>收费明细</span>
<span>学生催款单</span>
</t-menu-item>
</t-submenu>
<t-submenu value="4" title="学生管理">

View File

@ -11,7 +11,7 @@
/>
</div>
<div class="table">
<div>1</div>
<div>收费日报表</div>
<t-table
row-key="id"
:data="tableData"
@ -21,7 +21,64 @@
:pagination="pagination"
:show-header="true"
cell-empty-content="-"
max-height="500"
max-height="550"
lazy-load
@row-click="handleRowClick"
@page-change="onPageChange"
:loading="loading"
>
</t-table>
</div>
<div class="table">
<div>减免明细表</div>
<t-table
row-key="id"
:data="tableData"
:columns="columns"
:hover="true"
table-layout="auto"
:pagination="pagination"
:show-header="true"
cell-empty-content="-"
max-height="550"
lazy-load
@row-click="handleRowClick"
@page-change="onPageChange"
:loading="loading"
>
</t-table>
</div>
<div class="table">
<div>退费明细表</div>
<t-table
row-key="id"
:data="tableData"
:columns="columns"
:hover="true"
table-layout="auto"
:pagination="pagination"
:show-header="true"
cell-empty-content="-"
max-height="550"
lazy-load
@row-click="handleRowClick"
@page-change="onPageChange"
:loading="loading"
>
</t-table>
</div>
<div class="table">
<div>学生欠费明细表</div>
<t-table
row-key="id"
:data="tableData"
:columns="columns"
:hover="true"
table-layout="auto"
:pagination="pagination"
:show-header="true"
cell-empty-content="-"
max-height="550"
lazy-load
@row-click="handleRowClick"
@page-change="onPageChange"

View File

@ -42,13 +42,13 @@ const ReceivablesManagement = [
path: "/daily",
name: "Daily",
component: () => import("@/pages/receivables-management/daily.vue"),
meta: { title: "收费日报", },
meta: { title: "收费日报及收费明细", },
},
{
path: "/charge-schedule",
name: "ChargeSchedule",
component: () => import("@/pages/receivables-management/chargeSchedule.vue"),
meta: { title: "收费明细", },
meta: { title: "学生催款单", },
}
],
},