From 201352d12e5c188e20b68c843d8fcde2bc744536 Mon Sep 17 00:00:00 2001
From: zhangdi <15053473693@163.com>
Date: Sat, 27 Dec 2025 16:36:46 +0800
Subject: [PATCH] =?UTF-8?q?=E7=83=A7=E7=BB=93=E6=B8=A9=E5=BA=A6=E6=9B=B2?=
=?UTF-8?q?=E7=BA=BF=E5=9F=BA=E7=A1=80=E6=95=B0=E6=8D=AE=E7=BB=B4=E6=8A=A4?=
=?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/productionSchedulingPlan/basic.js | 47 +++
.../basic/sintTempCurve.vue | 303 ++++++++++++++++++
2 files changed, 350 insertions(+)
create mode 100644 src/views/productionSchedulingPlan/basic/sintTempCurve.vue
diff --git a/src/api/productionSchedulingPlan/basic.js b/src/api/productionSchedulingPlan/basic.js
index b4a336d..ca7b525 100644
--- a/src/api/productionSchedulingPlan/basic.js
+++ b/src/api/productionSchedulingPlan/basic.js
@@ -332,4 +332,51 @@ export const getDetailOutsourceProcess = params => {
method: 'get',
params: params,
});
+};
+
+// 烧结温度曲线 增删改查
+export const getListSintTempCurve = (current, size, params) => {
+ return request({
+ url: '/blade-scheduling/sintTempCurve/page',
+ method: 'get',
+ params: {
+ ...params,
+ current,
+ size,
+ },
+ });
+};
+export const removeSintTempCurve = ids => {
+ return request({
+ url: '/blade-scheduling/sintTempCurve/remove',
+ method: 'post',
+ params: {
+ ids,
+ },
+ });
+};
+
+export const addSintTempCurve = row => {
+ return request({
+ url: '/blade-scheduling/sintTempCurve/save',
+ method: 'post',
+ data: row,
+ });
+};
+
+export const updateSintTempCurve = row => {
+ return request({
+ url: '/blade-scheduling/sintTempCurve/update',
+ method: 'post',
+ data: row,
+ });
+};
+
+
+export const getDetailSintTempCurve = params => {
+ return request({
+ url: '/blade-scheduling/outsourceProcess/detail',
+ method: 'get',
+ params: params,
+ });
};
\ No newline at end of file
diff --git a/src/views/productionSchedulingPlan/basic/sintTempCurve.vue b/src/views/productionSchedulingPlan/basic/sintTempCurve.vue
new file mode 100644
index 0000000..490142f
--- /dev/null
+++ b/src/views/productionSchedulingPlan/basic/sintTempCurve.vue
@@ -0,0 +1,303 @@
+
+
+
+
+
+
+
+
+
+
+
+
+