LAPTOP-16IUEB3P\Lenovo 2 лет назад
Родитель
Сommit
6c9193898f
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/views/produceOrder/detail.vue

+ 3 - 3
src/views/produceOrder/detail.vue

@@ -71,7 +71,7 @@
           statusList[infoData.status]
         }}</el-descriptions-item>
         <el-descriptions-item label="完成时间">{{
-          infoData.completionTime
+          infoData.completeTime
         }}</el-descriptions-item>
         <el-descriptions-item label="生产周期">{{
           infoData.productionCycle
@@ -1206,7 +1206,7 @@
         this.$refs.bomListRef.open(row);
       },
 
-     async refreshData () {
+      async refreshData () {
         const res = await getInfoById(this.workOrderId);
         this.infoData = res;
         if (typeof res.taskTypeProcessDiagrams == 'string') {
@@ -1214,7 +1214,7 @@
         } else {
           this.tabList = res.taskTypeProcessDiagrams;
         }
-		this.setData()
+        this.setData();
       }
     }
   };