Procházet zdrojové kódy

“过程监测”改“过程控制”

lucw před 7 měsíci
rodič
revize
5db12b32e0

+ 1 - 1
src/api/recordrules/index.js

@@ -9,7 +9,7 @@ export async function recordrulesPage(body) {
   return Promise.reject(new Error(res.data.message));
 }
 
-// 规则记录分页查询 过程监测 /main/recordrules/processInspectionRecordRulesPage
+// 规则记录分页查询 过程控制 /main/recordrules/processInspectionRecordRulesPage
 export async function recordrulesNotProduceTaskConfigRecordRulesPage(body) {
   const res = await request.post(
     `/main/recordrules/processInspectionRecordRulesPage`,

+ 1 - 1
src/components/selectReleaseRules/select-release-rules.vue

@@ -50,7 +50,7 @@
     components: { search },
     mixins: [tabMixins, dictMixins],
     props: {
-      // NotProduceTaskConfig bool 是否排除已配置的记录规则 过程监测传true
+      // NotProduceTaskConfig bool 是否排除已配置的记录规则 过程控制传true
       notProduceTaskConfig: {
         type: Boolean,
         default: false

+ 4 - 4
src/views/material/BOMmanage/components/workingProcedure.vue

@@ -788,7 +788,7 @@
             </template>
           </ele-pro-table>
         </el-tab-pane>
-        <el-tab-pane label="过程监测" name="过程监测">
+        <el-tab-pane label="过程控制" name="过程控制">
           <userSettingMatterProcess
             :produce-task-id="rowData.sourceTaskId"
             :produce-task-name="rowData.name"
@@ -1653,8 +1653,8 @@
           this.$refs.deviceTabRef.setData(
             this.tableData.taskParam[this.currentIndex].standardDevice || []
           );
-        } else if (this.activeName === '过程监测') {
-          // 过程监测数据查询
+        } else if (this.activeName === '过程控制') {
+          // 过程控制数据查询
         }
       },
       openParam(type) {
@@ -1894,7 +1894,7 @@
               });
               console.log('111112223344', this.tableData.taskParam);
 
-              // 保存过程监测事项
+              // 保存过程控制事项
               this.$refs.userSettingMatterProcessRef?.saveMatterList();
 
               workingProcedureUpdate({

+ 3 - 3
src/views/rulesManagement/releaseRules/components/permitAdd.vue

@@ -872,7 +872,7 @@
           this.getDetils(row.id);
         }
 
-        // 过程监测临时修改
+        // 过程控制临时修改
         if (type == 'processEdit') {
           this.processEditSetValue(row);
         }
@@ -890,7 +890,7 @@
 
         console.log('this.formData', this.formData);
       },
-      // 过程监测 修改规则详情
+      // 过程控制 修改规则详情
       async processEditSetValue(row) {
         const data = await recordrulesGetById(row.rulesId);
 
@@ -1498,7 +1498,7 @@
           this.formData.isExecuteMethod = 1;
         }
       },
-      // 过程监测修改 保存
+      // 过程控制修改 保存
       processEditSave() {
         // 只验证详情内容
         if (this.formData.details.length == 0) {

+ 2 - 2
src/views/technology/production/components/user-edit.vue

@@ -512,7 +512,7 @@
           </el-form-item>
         </el-col>
         <el-col :span="12">
-          <el-form-item label="是否投料后再过程监测:" label-width="200px">
+          <el-form-item label="是否投料后再过程控制:" label-width="200px">
             <el-radio-group v-model="form.isFeedCheckProduction">
               <el-radio
                 :label="item.value"
@@ -524,7 +524,7 @@
           </el-form-item>
         </el-col>
         <el-col :span="12">
-          <el-form-item label="是否过程监测后再产后检查:" label-width="200px">
+          <el-form-item label="是否过程控制后再产后检查:" label-width="200px">
             <el-radio-group v-model="form.isPostCheckProduction">
               <el-radio
                 :label="item.value"

+ 2 - 2
src/views/technology/production/components/user-setting-matter-add.vue

@@ -147,7 +147,7 @@
     mixins: [dictMixins, tableColumnsMixin],
     emits: ['addMatter', 'editMatter'],
     props: {
-      // 记录规则 NotProduceTaskConfig bool 是否排除已配置的记录规则 过程监测传true
+      // 记录规则 NotProduceTaskConfig bool 是否排除已配置的记录规则 过程控制传true
       notProduceTaskConfig: {
         type: Boolean,
         default: false
@@ -273,7 +273,7 @@
         );
         console.log('this.formData.produceTaskId', this.formData.produceTaskId);
         if (reportWorkType === '2') {
-          // 过程监测
+          // 过程控制
           this.formData.itemType = '2';
           this.formData.executeMethod = '2';
         }

+ 1 - 1
src/views/technology/production/components/user-setting-matter-process.vue

@@ -212,7 +212,7 @@
       },
       tabPaneList() {
         const list = this.dict['record_rules_report_work_type'] || [];
-        // 只显示过程监测
+        // 只显示过程控制
         return list.filter((item) => item.dictCode + '' == '2');
       }
     },

+ 1 - 1
src/views/technology/production/components/user-setting-matter.vue

@@ -167,7 +167,7 @@
       },
       tabPaneList() {
         const list = this.dict['record_rules_report_work_type'] || [];
-        // 排除过程监测
+        // 排除过程控制
         return list.filter(
           (item) => item.dictCode != '2' && item.dictCode != '4'
         );

+ 1 - 1
src/views/technology/production/index.vue

@@ -168,7 +168,7 @@
 
     <WorkCenter ref="centerRefs" @changeCenter="determineChoose" />
 
-    <!-- 配置事项 过程监测 -->
+    <!-- 配置事项 过程控制 -->
     <userSettingMatterProcessDrawer
       ref="userSettingMatterProcessDrawerRef"
     ></userSettingMatterProcessDrawer>