项目结构
12114
└─ 07-lms-finance├─ .autod.conf.js├─ README.md├─ app│ ├─ common│ │ ├─ README.md│ │ └─ error.js│ ├─ constant│ │ ├─ README.md│ │ ├─ constant.js│ │ └─ error.js│ ├─ controller│ │ └─ README.md│ ├─ public│ │ ├─ README.md│ │ ├─ js│ │ │ ├─ Export2Excel.js│ │ │ ├─ currency.min.js│ │ │ └─ xlsx.full.min.js│ │ ├─ testFile│ │ │ ├─ 2022-上学期-用餐通信费用-支付上传.xlsx│ │ │ ├─ 2022-上学期-用餐通信费用-账单上传.xlsx│ │ │ ├─ 2022-上学期-用餐通信费用-账单模版下载.xlsx│ │ │ ├─ 2022-下学期-10月校服费课本费-支付上传.xlsx│ │ │ ├─ 2022-下学期-10月校服费课本费-账单上传.xlsx│ │ │ ├─ 2022-下学期-10月校服费课本费-账单模版下载.xlsx│ │ │ ├─ 2022年10月15日住宿费学费-支付上传.xlsx│ │ │ ├─ 2022年10月15日住宿费学费-账单上传.xlsx│ │ │ └─ 2022年10月15日住宿费学费-账单模板下载.xlsx│ │ ├─ 奖学金双sheet.xlsx│ │ ├─ 奖学金总额.xlsx│ │ ├─ 学期奖学金.xlsx│ │ └─ 缴费导入模板.xlsx│ ├─ schedule│ │ ├─ batchInsertPaymentRecord.js│ │ ├─ batchRevertRecordHistory.js│ │ ├─ batchUpdateScholarship.js│ │ └─ syncBillPaymentStatus.js│ ├─ service│ │ ├─ README.md│ │ ├─ bill.js│ │ ├─ billBatch.js│ │ ├─ payment.js│ │ └─ scholarship.js│ └─ view│ ├─ component│ │ └─ vueFilters.html│ ├─ page│ │ ├─ billBatchManagement.html│ │ ├─ billManagement.html│ │ ├─ paymentImport.html│ │ ├─ scholarshipImport.html│ │ └─ scholarshipManagement.html│ └─ pageDoc│ ├─ 1.billBatchManagement.md│ ├─ 2.billBatchImport.md│ ├─ 4.scholarshipManagement.md│ ├─ 5.scholarshipImport.md│ ├─ _sidebar.md│ └─ upload│ └─ protocol.jpeg├─ app.js├─ config│ ├─ config.default.js│ ├─ config.env.example.js│ ├─ config.local.example.js│ ├─ config.local.js│ ├─ config.prod.example.js│ └─ plugin.js├─ jsconfig.json├─ package-lock.json├─ package.json└─ sql├─ init.sql└─ mock.sql