Browse Source

fix:修改问题

luoxiao 1 month ago
parent
commit
4fbcb38c27

+ 4 - 4
src/views/base/craftManagement/route/bindProcess.vue

@@ -562,10 +562,10 @@ const deleteFlow = () => {
 };
 
 const saveInfo = async () => {
-  let isValid = await formRef.value.validate();
-  if (!isValid) {
-    return;
-  }
+  // let isValid = await formRef.value.validate();
+  // if (!isValid) {
+  //   return;
+  // }
   // 处理currentProcess的自定义对象名称字段,如果customFieldNameValues在customFieldOptions中存在,则设置isSelected为true,否则设置为false,最后转为json
   const customFieldArr = [];
   customFieldOptions.value.forEach((item) => {

+ 2 - 2
src/views/quality/opRecord/index.vue

@@ -165,7 +165,7 @@
             <el-input v-model="scope.row.useDevice"></el-input>
           </template>
         </el-table-column>
-        <el-table-column prop="craftCondition" label="工艺条件" width="160">
+        <el-table-column prop="craftCondition" label="实时工艺条件" width="160">
           <template v-if="dialog.type === 1" #default="scope">
             <el-input v-model="scope.row.craftCondition"></el-input>
           </template>
@@ -181,7 +181,7 @@
           </template>
         </el-table-column>
 
-        <el-table-column prop="remark" label="实时工艺条件" width="100">
+        <el-table-column prop="remark" label="备注" width="100">
           <template v-if="dialog.type === 1" #default="scope">
             <el-input v-model="scope.row.remark"></el-input>
           </template>