diff --git a/src/api/productionManagement/frontTooling.js b/src/api/productionManagement/frontTooling.js
index 323e195..e4b3ffd 100644
--- a/src/api/productionManagement/frontTooling.js
+++ b/src/api/productionManagement/frontTooling.js
@@ -2,7 +2,7 @@ import request from '@/axios';
//列表接口
export const getList = (current, size, params) => {
return request({
- url: '/blade-desk/workOrder/page',
+ url: '/blade-desk/sjWorkOrder/queryByReadStatus',
method: 'get',
params: {
...params,
@@ -11,4 +11,11 @@ export const getList = (current, size, params) => {
},
});
};
-// 准备
+// 准备
+export const setReadStatus = (params) => {
+ return request({
+ url: '/blade-desk/sjWorkOrder/setReadStatus',
+ method: 'post',
+ data: params,
+ });
+};
diff --git a/src/views/processManagement/bathRefine/components/addAccumulateClassDialog.vue b/src/views/processManagement/bathRefine/components/addAccumulateClassDialog.vue
index 4bdbdd1..62c968c 100644
--- a/src/views/processManagement/bathRefine/components/addAccumulateClassDialog.vue
+++ b/src/views/processManagement/bathRefine/components/addAccumulateClassDialog.vue
@@ -50,7 +50,12 @@
-
+
-
+
@@ -123,7 +128,12 @@
:prop="`tableData[${scope.$index}].addQuantity`"
:rules="formRules.addQuantity"
> -->
-
+
+ 当前值
+ 自定义
+
+
+
@@ -339,11 +349,11 @@ export default {
);
this.form.tableData[index].deviceName = select[0].deviceName;
},
- changeBatchNo(index){
+ changeBatchNo(index) {
let select = this.form.tableData[index].batchNoOptions.filter(
row => row.id == this.form.tableData[index].batchNo
);
- console.log(select,'select');
+ console.log(select, 'select');
this.form.tableData[index].batchNoName = select[0].name;
},
getWorkCenterList() {
@@ -364,7 +374,7 @@ export default {
batchNo: '', // 槽号/检查项
preserveContent: '', // 维护内容
bbpType: 2,
- periodOfValidity:2
+ periodOfValidity: 2,
});
},
diff --git a/src/views/productionManagement/frontTooling.vue b/src/views/productionManagement/frontTooling.vue
index af24169..dd522a1 100644
--- a/src/views/productionManagement/frontTooling.vue
+++ b/src/views/productionManagement/frontTooling.vue
@@ -26,7 +26,7 @@