diff --git a/src/layout/components/LayoutAside.vue b/src/layout/components/LayoutAside.vue
index 99cc8e5..15d9975 100644
--- a/src/layout/components/LayoutAside.vue
+++ b/src/layout/components/LayoutAside.vue
@@ -48,6 +48,9 @@
助学贷款
+
+ 收费日报
+
diff --git a/src/pages/receivables-management/billCollected.vue b/src/pages/receivables-management/billCollected.vue
index df23924..c02a631 100644
--- a/src/pages/receivables-management/billCollected.vue
+++ b/src/pages/receivables-management/billCollected.vue
@@ -14,6 +14,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 @@
+
+ 1
+
+
+
+
+
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: "收费日报", },
}
],
},