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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+