From bb72629462b74f78ae3f8c85f68bc62c06b42636 Mon Sep 17 00:00:00 2001
From: 18650502300 <18650502300@163.com>
Date: Sun, 6 Oct 2024 15:50:31 +0800
Subject: [PATCH] =?UTF-8?q?1.=E5=AF=B9=E8=B4=A6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/system/reconciliation2.js | 44 +++
src/views/system/reconciliation2/index.vue | 332 +++++++++++++++++++++
2 files changed, 376 insertions(+)
create mode 100644 src/api/system/reconciliation2.js
create mode 100644 src/views/system/reconciliation2/index.vue
diff --git a/src/api/system/reconciliation2.js b/src/api/system/reconciliation2.js
new file mode 100644
index 0000000..6bef534
--- /dev/null
+++ b/src/api/system/reconciliation2.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询平台对账列表
+export function listReconciliation2(query) {
+ return request({
+ url: '/system/reconciliation2/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询平台对账详细
+export function getReconciliation2(reconciliationId) {
+ return request({
+ url: '/system/reconciliation2/' + reconciliationId,
+ method: 'get'
+ })
+}
+
+// 新增平台对账
+export function addReconciliation2(data) {
+ return request({
+ url: '/system/reconciliation2',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改平台对账
+export function updateReconciliation2(data) {
+ return request({
+ url: '/system/reconciliation2',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除平台对账
+export function delReconciliation2(reconciliationId) {
+ return request({
+ url: '/system/reconciliation2/' + reconciliationId,
+ method: 'delete'
+ })
+}
diff --git a/src/views/system/reconciliation2/index.vue b/src/views/system/reconciliation2/index.vue
new file mode 100644
index 0000000..4a24068
--- /dev/null
+++ b/src/views/system/reconciliation2/index.vue
@@ -0,0 +1,332 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+ {{ parseTime(scope.row.day, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.settlementAmount }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+