Browse Source

Merge branch 'master' of http://101.42.248.108:3000/wangyu/post-check-web

李帅 6 months ago
parent
commit
f88af157df

+ 1 - 1
src/views/postImplementation/problemEntry.vue

@@ -355,7 +355,7 @@
355
         >添加问题</el-button
355
         >添加问题</el-button
356
       >
356
       >
357
       <div slot="footer" class="dialog-footer" v-if="this.title !== '查看'">
357
       <div slot="footer" class="dialog-footer" v-if="this.title !== '查看'">
358
-        <el-button type="primary" @click="submitForm">保存</el-button>
358
+        <el-button type="primary" @click="submitForm">提交</el-button>
359
         <el-button @click="cancelEstablish">取消</el-button>
359
         <el-button @click="cancelEstablish">取消</el-button>
360
       </div>
360
       </div>
361
     </el-dialog>
361
     </el-dialog>

+ 3 - 3
src/views/postInspectionPlanning/planManagement/jobPlan.vue

@@ -490,16 +490,16 @@ export default {
490
         "operation",
490
         "operation",
491
       ];
491
       ];
492
       if (fields.includes(column.property)) {
492
       if (fields.includes(column.property)) {
493
-        const cellValue = row["checkTeamId"];
493
+        const cellValue = row["id"];
494
         if (cellValue && fields.includes(column.property)) {
494
         if (cellValue && fields.includes(column.property)) {
495
           const prevRow = this.postList[rowIndex - 1];
495
           const prevRow = this.postList[rowIndex - 1];
496
           let nextRow = this.postList[rowIndex + 1];
496
           let nextRow = this.postList[rowIndex + 1];
497
-          if (prevRow && prevRow["checkTeamId"] === cellValue) {
497
+          if (prevRow && prevRow["id"] === cellValue) {
498
             return { rowspan: 0, colspan: 0 };
498
             return { rowspan: 0, colspan: 0 };
499
           } else {
499
           } else {
500
             // return { rowspan: row.rowspan, colspan: 1 }
500
             // return { rowspan: row.rowspan, colspan: 1 }
501
             let countRowspan = 1;
501
             let countRowspan = 1;
502
-            while (nextRow && nextRow["checkTeamId"] === cellValue) {
502
+            while (nextRow && nextRow["id"] === cellValue) {
503
               nextRow = this.postList[++countRowspan + rowIndex];
503
               nextRow = this.postList[++countRowspan + rowIndex];
504
             }
504
             }
505
             if (countRowspan > 1) {
505
             if (countRowspan > 1) {

+ 3 - 3
src/views/postInspectionPlanning/planManagement/jobPlanAudit.vue

@@ -533,16 +533,16 @@ export default {
533
         "operation",
533
         "operation",
534
       ];
534
       ];
535
       if (fields.includes(column.property)) {
535
       if (fields.includes(column.property)) {
536
-        const cellValue = row["checkTeamId"];
536
+        const cellValue = row["id"];
537
         if (cellValue && fields.includes(column.property)) {
537
         if (cellValue && fields.includes(column.property)) {
538
           const prevRow = this.postList[rowIndex - 1];
538
           const prevRow = this.postList[rowIndex - 1];
539
           let nextRow = this.postList[rowIndex + 1];
539
           let nextRow = this.postList[rowIndex + 1];
540
-          if (prevRow && prevRow["checkTeamId"] === cellValue) {
540
+          if (prevRow && prevRow["id"] === cellValue) {
541
             return { rowspan: 0, colspan: 0 };
541
             return { rowspan: 0, colspan: 0 };
542
           } else {
542
           } else {
543
             // return { rowspan: row.rowspan, colspan: 1 }
543
             // return { rowspan: row.rowspan, colspan: 1 }
544
             let countRowspan = 1;
544
             let countRowspan = 1;
545
-            while (nextRow && nextRow["checkTeamId"] === cellValue) {
545
+            while (nextRow && nextRow["id"] === cellValue) {
546
               nextRow = this.postList[++countRowspan + rowIndex];
546
               nextRow = this.postList[++countRowspan + rowIndex];
547
             }
547
             }
548
             if (countRowspan > 1) {
548
             if (countRowspan > 1) {

+ 3 - 3
src/views/postInspectionPlanning/planManagement/jobPlanLook.vue

@@ -505,16 +505,16 @@ export default {
505
         "operation",
505
         "operation",
506
       ];
506
       ];
507
       if (fields.includes(column.property)) {
507
       if (fields.includes(column.property)) {
508
-        const cellValue = row["checkTeamId"];
508
+        const cellValue = row["id"];
509
         if (cellValue && fields.includes(column.property)) {
509
         if (cellValue && fields.includes(column.property)) {
510
           const prevRow = this.postList[rowIndex - 1];
510
           const prevRow = this.postList[rowIndex - 1];
511
           let nextRow = this.postList[rowIndex + 1];
511
           let nextRow = this.postList[rowIndex + 1];
512
-          if (prevRow && prevRow["checkTeamId"] === cellValue) {
512
+          if (prevRow && prevRow["id"] === cellValue) {
513
             return { rowspan: 0, colspan: 0 };
513
             return { rowspan: 0, colspan: 0 };
514
           } else {
514
           } else {
515
             // return { rowspan: row.rowspan, colspan: 1 }
515
             // return { rowspan: row.rowspan, colspan: 1 }
516
             let countRowspan = 1;
516
             let countRowspan = 1;
517
-            while (nextRow && nextRow["checkTeamId"] === cellValue) {
517
+            while (nextRow && nextRow["id"] === cellValue) {
518
               nextRow = this.postList[++countRowspan + rowIndex];
518
               nextRow = this.postList[++countRowspan + rowIndex];
519
             }
519
             }
520
             if (countRowspan > 1) {
520
             if (countRowspan > 1) {