From 5bd6b1f66c29b099c3dca5855607a16e9e18f0ea Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期三, 01 四月 2026 16:40:19 +0800
Subject: [PATCH] el-empty文字修改
---
src/api/costAccounting/productionSettlementBatches.js | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 53 insertions(+), 0 deletions(-)
diff --git a/src/api/costAccounting/productionSettlementBatches.js b/src/api/costAccounting/productionSettlementBatches.js
new file mode 100644
index 0000000..95a5fba
--- /dev/null
+++ b/src/api/costAccounting/productionSettlementBatches.js
@@ -0,0 +1,53 @@
+import request from "@/utils/request";
+
+// 鑾峰彇浜у搧绫诲埆锛堟寜鏈堜唤锛�
+export function getProductTypes(params) {
+ return request({
+ url: "/productionSettlementBatches/getProductTypes",
+ method: "get",
+ params,
+ });
+}
+
+// 鑾峰彇绉戠洰绫诲埆锛堟寜鏈堜唤锛�
+export function getSubjectNames(params) {
+ return request({
+ url: "/productionSettlementBatches/getSubjectNames",
+ method: "get",
+ params,
+ });
+}
+
+// 鏍囧噯鎴愭湰瀵煎叆锛坋l-upload 闇�瑕佸畬鏁� URL锛�
+export function getImportActionUrl() {
+ return `${import.meta.env.VITE_APP_BASE_API}/productionSettlementBatches/import`;
+}
+
+// 涓嬭浇瀵煎叆妯℃澘锛圙ET锛岃繑鍥� blob锛�
+export function downloadTemplate(params) {
+ return request({
+ url: "/productionSettlementBatches/downloadTemplate",
+ method: "get",
+ params,
+ responseType: "blob",
+ });
+}
+
+// 鏍哥畻鏌ヨ锛堟寜鏈堜唤/浜у搧绫诲瀷/绉戠洰/鎴愭湰绫诲瀷锛�
+export function getSettlement(params) {
+ return request({
+ url: "/productionSettlementBatches/getSettlement",
+ method: "get",
+ params,
+ });
+}
+
+// 姹囨�绘垚鏈紙绗簩妯″潡 KPI锛�
+export function getTotalCosts(params) {
+ return request({
+ url: "/productionSettlementBatches/getTotalCosts",
+ method: "get",
+ params,
+ });
+}
+
--
Gitblit v1.9.3