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: [], }; },