From aa62bfdd28d305488fedb308d1f9a28be027cc98 Mon Sep 17 00:00:00 2001 From: MO <448233645@qq.com> Date: Thu, 19 Oct 2023 11:13:12 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=AD=97=E6=AE=B5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/accounting/book/index.vue | 6 +++--- src/views/accounting/report/index.vue | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/accounting/book/index.vue b/src/views/accounting/book/index.vue index c8fcb317..0098c904 100644 --- a/src/views/accounting/book/index.vue +++ b/src/views/accounting/book/index.vue @@ -355,9 +355,9 @@ export default { process.env.VUE_APP_BASE_API + "/admin-api/archives/accounting-book/upload", // 请求地址 headers: { Authorization: "Bearer " + getAccessToken() }, // 设置上传的请求头部 - type0: 0, - type1: 1, - type2: 2, + type0: "总账", + type1: "明细账", + type2: "日记账", organizationList: [], }; }, diff --git a/src/views/accounting/report/index.vue b/src/views/accounting/report/index.vue index d95b7870..31820e5f 100644 --- a/src/views/accounting/report/index.vue +++ b/src/views/accounting/report/index.vue @@ -358,9 +358,9 @@ export default { process.env.VUE_APP_BASE_API + "/admin-api//archives/accounting-report/upload", // 请求地址 headers: { Authorization: "Bearer " + getAccessToken() }, // 设置上传的请求头部 - type0: 0, - type1: 1, - type2: 2, + type0: "资产负债表", + type1: "现金流量表", + type2: "利润表", organizationList: [], }; },