From c57b420838fed68806fd7d8413552fb379883640 Mon Sep 17 00:00:00 2001
From: zmj <1493694146@qq.com>
Date: Fri, 14 Jun 2024 18:08:46 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=B4=A2=E5=8A=A1=E8=BD=AC?=
=?UTF-8?q?=E8=B4=A6=E8=A1=A8API=EF=BC=8C=E9=87=8D=E6=9E=84=E7=B3=BB?=
=?UTF-8?q?=E7=BB=9F=E5=95=86=E5=BA=97=E7=BC=96=E8=BE=91=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/financial_transfers.ts | 21 ++-----
src/views/fnancial_transfers/index.vue | 78 +++++++++++++++++++++-----
src/views/system_store/edit.vue | 44 ++++++++++-----
3 files changed, 100 insertions(+), 43 deletions(-)
diff --git a/src/api/financial_transfers.ts b/src/api/financial_transfers.ts
index 01fbcf9b1..d8a7d5eb5 100644
--- a/src/api/financial_transfers.ts
+++ b/src/api/financial_transfers.ts
@@ -5,22 +5,11 @@ export function apiFinancialTransfersLists(params: any) {
return request.get({ url: '/financial_transfers/financialtransfers/lists', params })
}
-// 添加财务转账表
-export function apiFinancialTransfersAdd(params: any) {
- return request.post({ url: '/financial_transfers/financialtransfers/add', params })
+// 发送
+export function apiFinancialTransfersSend(params: any) {
+ return request.post({ url: '/financial_transfers/FinancialTransfers/send_transfers', params })
}
-// 编辑财务转账表
-export function apiFinancialTransfersEdit(params: any) {
- return request.post({ url: '/financial_transfers/financialtransfers/edit', params })
+export function apiFinancialTransfersConfirm(params: any) {
+ return request.post({ url: '/financial_transfers/FinancialTransfers/success_send', params })
}
-
-// 删除财务转账表
-export function apiFinancialTransfersDelete(params: any) {
- return request.post({ url: '/financial_transfers/financialtransfers/delete', params })
-}
-
-// 财务转账表详情
-export function apiFinancialTransfersDetail(params: any) {
- return request.get({ url: '/financial_transfers/financialtransfers/detail', params })
-}
\ No newline at end of file
diff --git a/src/views/fnancial_transfers/index.vue b/src/views/fnancial_transfers/index.vue
index fd57d3023..31a77047e 100644
--- a/src/views/fnancial_transfers/index.vue
+++ b/src/views/fnancial_transfers/index.vue
@@ -1,6 +1,6 @@
-
+
@@ -19,11 +19,18 @@
-
+
+
+ {{ timeFormat(row.initiation_time, 'yyyy-mm-dd') }}
+
+
-
- 起飞
+
+ 发送
+
+
+ 确认
@@ -33,22 +40,42 @@
+
+
+ {{ rowDate.store_realName }}
+ {{ rowDate.store_bank_code }}
+ {{ rowDate.store_bank }}
+ {{ rowDate.store_bank_address }}
+
+
+ 通过
+ 不通过
+
+
+
+
+
+
+
+
+
+
+
+ 确定
+ 取消
+
+
+
diff --git a/src/views/system_store/edit.vue b/src/views/system_store/edit.vue
index cb4794c21..a46b0e1a6 100644
--- a/src/views/system_store/edit.vue
+++ b/src/views/system_store/edit.vue
@@ -1,7 +1,6 @@