From 4f28b87e88e72b145c4f8a28ae002ca830ee83a0 Mon Sep 17 00:00:00 2001 From: 123456 <13063093621@163.com> Date: Thu, 21 Mar 2024 00:16:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E5=AF=B9=E5=85=AC=E6=94=B6?= =?UTF-8?q?=E6=AC=BE=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.test | 3 +- src/api/bs/bankAccountInfo.js | 54 ++ .../CorporateReceiptsCard/index.vue | 14 +- .../components/HeaderFilter.vue | 44 +- .../corporateReceipts/components/UserList.vue | 40 +- .../contract/corporateReceipts/index.vue | 8 +- .../contract/receipts/components/Rules.vue | 191 ------- src/views/contract/receipts/index.vue | 475 ++---------------- 8 files changed, 162 insertions(+), 667 deletions(-) create mode 100644 src/api/bs/bankAccountInfo.js delete mode 100644 src/views/contract/receipts/components/Rules.vue diff --git a/.env.test b/.env.test index 6c3d3c0..5c9a9e9 100644 --- a/.env.test +++ b/.env.test @@ -5,7 +5,8 @@ ENV = 'development' VUE_APP_TITLE = 链友融财务数字一体化信息系统 # 链友融财务数字一体化信息系统/开发环境 -VUE_APP_BASE_API = 'https://2537287x0n.imdo.co' +# VUE_APP_BASE_API = 'https://2537287x0n.imdo.co' +VUE_APP_BASE_API = 'https://351009q0x9.oicp.vip' # 路由懒加载 VUE_CLI_BABEL_TRANSPILE_MODULES = true diff --git a/src/api/bs/bankAccountInfo.js b/src/api/bs/bankAccountInfo.js new file mode 100644 index 0000000..aa74616 --- /dev/null +++ b/src/api/bs/bankAccountInfo.js @@ -0,0 +1,54 @@ +import request from '@/plugin/axios' + +// 创建银行账户信息 +export function createBankAccountInfo(data) { + return request({ + url: "/bs/bank-account-info/create", + method: "post", + data: data, + }); +} + +// 更新银行账户信息 +export function updateBankAccountInfo(data) { + return request({ + url: "/bs/bank-account-info/update", + method: "put", + data: data, + }); +} + +// 删除银行账户信息 +export function deleteBankAccountInfo(id) { + return request({ + url: "/bs/bank-account-info/delete?id=" + id, + method: "delete", + }); +} + +// 获得银行账户信息 +export function getBankAccountInfo(id) { + return request({ + url: "/bs/bank-account-info/get?id=" + id, + method: "get", + }); +} + +// 获得银行账户信息分页 +export function getBankAccountInfoPage(query) { + return request({ + url: "/bs/bank-account-info/page", + method: "get", + params: query, + }); +} + +// 导出银行账户信息 Excel +export function exportBankAccountInfoExcel(query) { + return request({ + url: "/bs/bank-account-info/export-excel", + method: "get", + params: query, + responseType: "blob", + }); +} diff --git a/src/components/CorporateReceiptsCard/index.vue b/src/components/CorporateReceiptsCard/index.vue index 3be16a8..07ee6a9 100644 --- a/src/components/CorporateReceiptsCard/index.vue +++ b/src/components/CorporateReceiptsCard/index.vue @@ -42,9 +42,9 @@
- - - + + +
@@ -54,7 +54,7 @@ - - \ No newline at end of file diff --git a/src/views/contract/receipts/index.vue b/src/views/contract/receipts/index.vue index caf58ab..4748b68 100644 --- a/src/views/contract/receipts/index.vue +++ b/src/views/contract/receipts/index.vue @@ -5,14 +5,19 @@
基本信息
- + + - - + + + + + +
附件
@@ -23,46 +28,27 @@
审批流程
- -
申请单关联
- -
预算信息提示
-
- {{form.budgetAmountInfo}} -
- - - -