Bladeren bron

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

李帅 6 maanden geleden
bovenliggende
commit
f88af157df

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

@@ -355,7 +355,7 @@
355 355
         >添加问题</el-button
356 356
       >
357 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 359
         <el-button @click="cancelEstablish">取消</el-button>
360 360
       </div>
361 361
     </el-dialog>

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

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

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

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

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

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