From 8876c234904459d038a2b282b3fdc30e006f9925 Mon Sep 17 00:00:00 2001
From: wujian <14790700720@163.com>
Date: 星期日, 18 八月 2024 14:21:40 +0800
Subject: [PATCH] fix8-气动打码

---
 jcdm-ui/src/views/main/rm/repairData/index.vue |   24 +++++++++++++++---------
 1 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/jcdm-ui/src/views/main/rm/repairData/index.vue b/jcdm-ui/src/views/main/rm/repairData/index.vue
index 615dde7..c3e325f 100644
--- a/jcdm-ui/src/views/main/rm/repairData/index.vue
+++ b/jcdm-ui/src/views/main/rm/repairData/index.vue
@@ -8,9 +8,9 @@
           </div>
           <div style="margin-left: 30%">
             <el-form :inline="true" :model="queryParams" class="myFrom" size="mini">
-              <el-form-item label="杩斾慨鏍囪瘑">
-                <el-input v-model="queryParams.repairIdentification" placeholder="杩斾慨鏍囪瘑"></el-input>
-              </el-form-item>
+<!--              <el-form-item label="杩斾慨鏍囪瘑">-->
+<!--                <el-input v-model="queryParams.repairIdentification" placeholder="杩斾慨鏍囪瘑"></el-input>-->
+<!--              </el-form-item>-->
               <el-form-item label="绠变綋缂栫爜">
                 <el-input v-model="queryParams.boxCode" placeholder="绠变綋缂栫爜">
                 </el-input>
@@ -37,9 +37,9 @@
               type="index"
               width="50"></el-table-column>
             <el-table-column type="selection" width="55" align="center" />
-            <el-table-column label="杩斾慨鏍囪瘑" align="center" prop="repairIdentification" />
+<!--            <el-table-column label="杩斾慨鏍囪瘑" align="center" prop="repairIdentification" />-->
             <el-table-column label="绠变綋缂栫爜" align="center" prop="boxCode" />
-            <el-table-column label="宸ュ簭缂栫爜" align="center" prop="processesCode" />
+            <el-table-column label="宸ヤ綅缂栧彿" align="center" prop="processesCode" />
             <el-table-column label="鍘熺粨鏋�" align="center" prop="originalResult" />
             <el-table-column label="杩斾慨缁撴灉" align="center" prop="repairResults" />
             <el-table-column label="鍒涘缓鐢ㄦ埛" align="center" prop="createUser" />
@@ -148,7 +148,7 @@
     let workOrderNo = this.$route.query.workOrderNo;
     this.queryParams.orderNo = workOrderNo
     this.getMainList();
-    this.getChildList();
+    // this.getChildList();
   },
   methods: {
     toggleSelection(rows) {
@@ -186,7 +186,7 @@
     //瀵煎嚭
     exportReport(){
       if (this.queryParams.engineNoListExcel.length === 0){
-        this.$message.error("璇峰嬀閫夐渶瑕佸鍑虹殑鏁版嵁")
+        this.$message.info("璇峰嬀閫夐渶瑕佸鍑虹殑鏁版嵁")
       }else {
         this.queryParams.engineNoList = []
         this.download('rm/repairRecord/exportRepair', {
@@ -199,7 +199,13 @@
     getMainList() {
       this.loading = true;
       console.log(this.queryParams)
-      listRepairRecord(this.queryParams).then(response => {
+      let query = {
+        pageNum: this.queryParams.pageNum,
+        pageSize: this.queryParams.pageSize,
+        boxCode: this.queryParams.boxCode,
+        engineNoList: [],
+      }
+      listRepairRecord(query).then(response => {
         this.orderSchedulingList = response.rows;
         this.total = response.total;
         this.loading = false;
@@ -218,7 +224,7 @@
     },
     getList(){
       this.getMainList()
-      this.getChildList()
+      // this.getChildList()
     }
     // handleCurrentChange(val) {
     //   this.multipleSelection = val;

--
Gitblit v1.9.3