From 13fd2c21fd9ad608d106f4eaaf23a2186595fa22 Mon Sep 17 00:00:00 2001 From: sundongyu <2811054731@qq.com> Date: Tue, 9 Apr 2024 16:40:06 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=E5=AE=8C=E6=88=90=E4=BA=86?= =?UTF-8?q?=E5=87=8F=E5=85=8D=E8=B4=B9=E7=94=A8=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/layout/components/LayoutAside.vue | 3 + .../receivables-management/billCollected.vue | 18 +- src/pages/receivables-management/daily.vue | 7 + .../receivables-management/waiverForm.vue | 257 ++++++++++++++++++ src/router/modules/receivablesManagement.js | 12 + 5 files changed, 295 insertions(+), 2 deletions(-) create mode 100644 src/pages/receivables-management/daily.vue create mode 100644 src/pages/receivables-management/waiverForm.vue diff --git a/src/layout/components/LayoutAside.vue b/src/layout/components/LayoutAside.vue index 133932b..faf4f0d 100644 --- a/src/layout/components/LayoutAside.vue +++ b/src/layout/components/LayoutAside.vue @@ -45,6 +45,9 @@ 助学贷款 + + 收费日报 + @@ -170,6 +173,7 @@ const editableCellState = cellParams => { return row.status !== 2 } const tableRef = ref() +//收费表格 const columns = computed(() => [ { title: '学生姓名', @@ -289,12 +293,22 @@ const columns = computed(() => [ }, { title: '操作', - colKey: 'operation' + width: 300, + colKey: 'operation', + align: 'center' } ]) +// 发票 const handleEdit = row => { router.push({ - path: 'bill-bill', + path: '/bill-bill', + query: row + }) +} +// 申请为减免学生 +const waivarForm = row => { + router.push({ + path: '/waivar-form', query: row }) } diff --git a/src/pages/receivables-management/daily.vue b/src/pages/receivables-management/daily.vue new file mode 100644 index 0000000..6ac5ab5 --- /dev/null +++ b/src/pages/receivables-management/daily.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/src/pages/receivables-management/waiverForm.vue b/src/pages/receivables-management/waiverForm.vue new file mode 100644 index 0000000..374a172 --- /dev/null +++ b/src/pages/receivables-management/waiverForm.vue @@ -0,0 +1,257 @@ + + + + + diff --git a/src/router/modules/receivablesManagement.js b/src/router/modules/receivablesManagement.js index 1b84c36..2f199e8 100644 --- a/src/router/modules/receivablesManagement.js +++ b/src/router/modules/receivablesManagement.js @@ -31,6 +31,18 @@ const ReceivablesManagement = [ name: "StudentLoan", component: () => import("@/pages/receivables-management/studentLoan.vue"), meta: { title: "助学贷款", }, + }, + { + path: "/waivar-form", + name: "WaivarForm", + component: () => import("@/pages/receivables-management/waiverForm.vue"), + meta: { title: "学生减免单", hidden: false }, + }, + { + path: "/daily", + name: "Daily", + component: () => import("@/pages/receivables-management/daily.vue"), + meta: { title: "收费日报", }, } ], },