From a2d85cd3074ae9a2c6289618dc928dce3c693a7b Mon Sep 17 00:00:00 2001
From: lonewolfyx <877085893@qq.com>
Date: Sat, 7 Feb 2026 15:52:29 +0800
Subject: [PATCH] =?UTF-8?q?refactor(FinancialApproval):=20=E9=87=8D?=
=?UTF-8?q?=E6=9E=84=E8=B4=A2=E5=8A=A1=E5=AE=A1=E6=89=B9=E9=A1=B5=E9=9D=A2?=
=?UTF-8?q?=E7=BB=84=E4=BB=B6=E7=BB=93=E6=9E=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/Salemain.js | 11 ++
pages/work/FinancialApproval/ListItem.vue | 67 +++++++
pages/work/FinancialApproval/index.vue | 209 +++++-----------------
3 files changed, 121 insertions(+), 166 deletions(-)
create mode 100644 api/Salemain.js
create mode 100644 pages/work/FinancialApproval/ListItem.vue
diff --git a/api/Salemain.js b/api/Salemain.js
new file mode 100644
index 0000000..dfc128f
--- /dev/null
+++ b/api/Salemain.js
@@ -0,0 +1,11 @@
+import request from '@/utils/request'
+
+// 查询财务审批列表
+export const financeList = (data, query) => {
+ return request({
+ url: '/bussiness/salemain/financeList',
+ method: 'post',
+ data: data,
+ params: query,
+ })
+}
diff --git a/pages/work/FinancialApproval/ListItem.vue b/pages/work/FinancialApproval/ListItem.vue
new file mode 100644
index 0000000..4452b72
--- /dev/null
+++ b/pages/work/FinancialApproval/ListItem.vue
@@ -0,0 +1,67 @@
+
+
+
+
+ 状态:
+ {{ item.stateText }}
+
+
+ 下单日期:
+ {{ formatDate(item.adddate) }}
+
+
+
+ 支付方式:
+ {{ item.creditperiods > 0 ? '非现款' : '现款' }}
+
+
+ 区域:
+ {{ item.areaName }}
+
+
+
+ 订单金额:
+ {{ formatPrice(item.contractmoney) }}
+
+
+ 补差金额:
+ {{ formatPrice(item.disCount) }}
+
+
+ 商业公司剩余未核销金额:
+ {{ formatPrice(item.balance) }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/work/FinancialApproval/index.vue b/pages/work/FinancialApproval/index.vue
index 89b644b..e0e82b6 100644
--- a/pages/work/FinancialApproval/index.vue
+++ b/pages/work/FinancialApproval/index.vue
@@ -1,186 +1,63 @@
-
-
+
+
-
+
-
-
-
- 暂无匹配的合同数据
-
+
+
-
-
-
- 生产单位: {{ contract.companyName }}
-
-
- 合同编号: {{ contract.contractcode }}
-
-
-
-
- 制单日期: {{ formatDate(contract.adddate) }}
-
-
- 订单金额: {{ contract.contractmoney.toFixed(2) }}
-
-
-
-
- 状态: {{ contract.stateText }}
-
-
- 区域: {{ contract.areaName }}
-
-
-
+
+
-
-
\ No newline at end of file