From 94bf0a5e9507639fd3e3d193c68ad1d0033b3d83 Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Sat, 11 Nov 2023 18:08:10 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 2 +- .../AdministrativeContracts.vue | 244 ++++++++++++ .../contract/subcontract/Subcontractors.vue | 286 ++++++++++++++ .../contract/subcontract/subcontract.vue | 6 + .../Administrative/AdministrativePayments.vue | 241 ++++++++++++ .../Administrative/AdministrativeTickets.vue | 250 ++++++++++++ .../Collection/InvoicingRequests.vue | 365 ++++++++++++++++++ .../Collection/RecordsPayment.vue | 288 ++++++++++++++ .../Collection/Remittance.vue | 159 ++++++++ .../financialManagement/Collection/refund.vue | 206 ++++++++++ .../FareDifferences/INDEX.VUE | 0 .../financialManagement/Management/index.vue | 1 + .../financialManagement/bankAccount/INDE.VUE | 1 + .../financialManagement/deposit/BidBond.vue | 212 ++++++++++ .../deposit/RefundBidDeposit.vue | 181 +++++++++ src/views/financialManagement/draft/index.vue | 1 + .../payment/CollectTickets.vue | 253 ++++++++++++ .../payment/PaymentPlan.vue | 154 ++++++++ .../payment/PaymentRequests.vue | 347 +++++++++++++++++ .../payment/RefundHistory.vue | 275 +++++++++++++ .../reimbursement/DailyExpenses.vue | 0 .../reimbursement/DailyReimbursement.vue | 185 +++++++++ 22 files changed, 3656 insertions(+), 1 deletion(-) create mode 100644 src/views/contract/AdministrativeContracts/AdministrativeContracts.vue create mode 100644 src/views/contract/subcontract/Subcontractors.vue create mode 100644 src/views/financialManagement/Administrative/AdministrativePayments.vue create mode 100644 src/views/financialManagement/Administrative/AdministrativeTickets.vue create mode 100644 src/views/financialManagement/Collection/InvoicingRequests.vue create mode 100644 src/views/financialManagement/Collection/RecordsPayment.vue create mode 100644 src/views/financialManagement/Collection/Remittance.vue create mode 100644 src/views/financialManagement/Collection/refund.vue create mode 100644 src/views/financialManagement/FareDifferences/INDEX.VUE create mode 100644 src/views/financialManagement/Management/index.vue create mode 100644 src/views/financialManagement/bankAccount/INDE.VUE create mode 100644 src/views/financialManagement/deposit/BidBond.vue create mode 100644 src/views/financialManagement/deposit/RefundBidDeposit.vue create mode 100644 src/views/financialManagement/draft/index.vue create mode 100644 src/views/financialManagement/payment/CollectTickets.vue create mode 100644 src/views/financialManagement/payment/PaymentPlan.vue create mode 100644 src/views/financialManagement/payment/PaymentRequests.vue create mode 100644 src/views/financialManagement/payment/RefundHistory.vue create mode 100644 src/views/financialManagement/reimbursement/DailyExpenses.vue create mode 100644 src/views/financialManagement/reimbursement/DailyReimbursement.vue diff --git a/.vscode/settings.json b/.vscode/settings.json index 897708b..111724a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,7 @@ { "editor.formatOnSave": true, "[vue]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" + "editor.defaultFormatter": "Vue.volar" }, "editor.defaultFormatter": "esbenp.prettier-vscode", diff --git a/src/views/contract/AdministrativeContracts/AdministrativeContracts.vue b/src/views/contract/AdministrativeContracts/AdministrativeContracts.vue new file mode 100644 index 0000000..33b5f41 --- /dev/null +++ b/src/views/contract/AdministrativeContracts/AdministrativeContracts.vue @@ -0,0 +1,244 @@ + + + + \ No newline at end of file diff --git a/src/views/contract/subcontract/Subcontractors.vue b/src/views/contract/subcontract/Subcontractors.vue new file mode 100644 index 0000000..8b473b9 --- /dev/null +++ b/src/views/contract/subcontract/Subcontractors.vue @@ -0,0 +1,286 @@ + + + + \ No newline at end of file diff --git a/src/views/contract/subcontract/subcontract.vue b/src/views/contract/subcontract/subcontract.vue index f99b83b..cd385a1 100644 --- a/src/views/contract/subcontract/subcontract.vue +++ b/src/views/contract/subcontract/subcontract.vue @@ -135,6 +135,10 @@ + + + + + + \ No newline at end of file diff --git a/src/views/financialManagement/Administrative/AdministrativeTickets.vue b/src/views/financialManagement/Administrative/AdministrativeTickets.vue new file mode 100644 index 0000000..5b9f9dc --- /dev/null +++ b/src/views/financialManagement/Administrative/AdministrativeTickets.vue @@ -0,0 +1,250 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/Collection/InvoicingRequests.vue b/src/views/financialManagement/Collection/InvoicingRequests.vue new file mode 100644 index 0000000..9232c9a --- /dev/null +++ b/src/views/financialManagement/Collection/InvoicingRequests.vue @@ -0,0 +1,365 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/Collection/RecordsPayment.vue b/src/views/financialManagement/Collection/RecordsPayment.vue new file mode 100644 index 0000000..86874e8 --- /dev/null +++ b/src/views/financialManagement/Collection/RecordsPayment.vue @@ -0,0 +1,288 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/Collection/Remittance.vue b/src/views/financialManagement/Collection/Remittance.vue new file mode 100644 index 0000000..e8eb847 --- /dev/null +++ b/src/views/financialManagement/Collection/Remittance.vue @@ -0,0 +1,159 @@ + + + diff --git a/src/views/financialManagement/Collection/refund.vue b/src/views/financialManagement/Collection/refund.vue new file mode 100644 index 0000000..22c5009 --- /dev/null +++ b/src/views/financialManagement/Collection/refund.vue @@ -0,0 +1,206 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/FareDifferences/INDEX.VUE b/src/views/financialManagement/FareDifferences/INDEX.VUE new file mode 100644 index 0000000..e69de29 diff --git a/src/views/financialManagement/Management/index.vue b/src/views/financialManagement/Management/index.vue new file mode 100644 index 0000000..390b40b --- /dev/null +++ b/src/views/financialManagement/Management/index.vue @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/views/financialManagement/bankAccount/INDE.VUE b/src/views/financialManagement/bankAccount/INDE.VUE new file mode 100644 index 0000000..bc8709e --- /dev/null +++ b/src/views/financialManagement/bankAccount/INDE.VUE @@ -0,0 +1 @@ +银行账户 \ No newline at end of file diff --git a/src/views/financialManagement/deposit/BidBond.vue b/src/views/financialManagement/deposit/BidBond.vue new file mode 100644 index 0000000..c240054 --- /dev/null +++ b/src/views/financialManagement/deposit/BidBond.vue @@ -0,0 +1,212 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/deposit/RefundBidDeposit.vue b/src/views/financialManagement/deposit/RefundBidDeposit.vue new file mode 100644 index 0000000..e77fc6f --- /dev/null +++ b/src/views/financialManagement/deposit/RefundBidDeposit.vue @@ -0,0 +1,181 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/draft/index.vue b/src/views/financialManagement/draft/index.vue new file mode 100644 index 0000000..c69f255 --- /dev/null +++ b/src/views/financialManagement/draft/index.vue @@ -0,0 +1 @@ +汇票管理 \ No newline at end of file diff --git a/src/views/financialManagement/payment/CollectTickets.vue b/src/views/financialManagement/payment/CollectTickets.vue new file mode 100644 index 0000000..03ec02f --- /dev/null +++ b/src/views/financialManagement/payment/CollectTickets.vue @@ -0,0 +1,253 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/payment/PaymentPlan.vue b/src/views/financialManagement/payment/PaymentPlan.vue new file mode 100644 index 0000000..57376cc --- /dev/null +++ b/src/views/financialManagement/payment/PaymentPlan.vue @@ -0,0 +1,154 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/payment/PaymentRequests.vue b/src/views/financialManagement/payment/PaymentRequests.vue new file mode 100644 index 0000000..c0f7823 --- /dev/null +++ b/src/views/financialManagement/payment/PaymentRequests.vue @@ -0,0 +1,347 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/payment/RefundHistory.vue b/src/views/financialManagement/payment/RefundHistory.vue new file mode 100644 index 0000000..82d683b --- /dev/null +++ b/src/views/financialManagement/payment/RefundHistory.vue @@ -0,0 +1,275 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/reimbursement/DailyExpenses.vue b/src/views/financialManagement/reimbursement/DailyExpenses.vue new file mode 100644 index 0000000..e69de29 diff --git a/src/views/financialManagement/reimbursement/DailyReimbursement.vue b/src/views/financialManagement/reimbursement/DailyReimbursement.vue new file mode 100644 index 0000000..90eba7d --- /dev/null +++ b/src/views/financialManagement/reimbursement/DailyReimbursement.vue @@ -0,0 +1,185 @@ + + + + \ No newline at end of file