Browse Source

优化点检

guarantee-lsq 2 years ago
parent
commit
bd6f45f226
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/check/checkjob/modules/DetailStandardCheckJob.vue

+ 2 - 2
src/views/check/checkjob/modules/DetailStandardCheckJob.vue

@@ -238,12 +238,12 @@ export default {
       this.visible = true
       this.model = record
       this.modalTitle = '保养记录'
-      queryCheckJob({ standardId: record.id, type: this.checkType, statusList: [this.DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE, this.DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING].join(',') }).then(res => {
+      queryCheckJob({ standardId: record.id, type: record.checkType, statusList: [this.DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE, this.DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING].join(',') }).then(res => {
         this.data = res.data
       })
     },
     handleOk () {
-      queryCheckJob({ standardId: this.model.id, type: this.checkType, statusList: [this.DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE, this.DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING].join(',') }).then(res => {
+      queryCheckJob({ standardId: this.model.id, type: this.model.checkType, statusList: [this.DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE, this.DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING].join(',') }).then(res => {
         this.data = res.data
       })
     },