qinzhipeng_v@didiglobal.com 4 gadi atpakaļ
vecāks
revīzija
98ec084608

+ 1 - 1
src/views/projectManage/publishTask/components/multipleSelect.vue

@@ -90,7 +90,7 @@ export default {
       this.query = query
       if (query !== '') {
         this.loading = true
-        const res = await taskList({ taskId: this.taskId, name: query })
+        const res = await taskList({ taskId: this.taskId, id: query })
         this.options = res.data
         this.loading = false
       } else {

+ 0 - 1
src/views/reportManagement/ReleaseReport/newReleaeTemplate.vue

@@ -425,7 +425,6 @@ export default {
         delete newFrom[key]
       })
       this.from = { ...newFrom, ...params }
-      console.log(customs, params, 'customs')
     },
 
     customDialong() { // 点击自定义字段

+ 2 - 2
src/views/reportManagement/Testing/newTestingTemplate.vue

@@ -292,13 +292,13 @@ export default {
       }
     },
     async remoteMethod_data(query) { // 远程搜索任务
-      const res = await taskList({ name: query })
+      const res = await taskList({ id: query })
       this.tasksDetailList = [...this.tasksDetailList, ...res.data]
       this.taskId = this.tasksDetailList.map(item => item.id)
     },
 
     async remoteMethod(query) { // 远程搜索任务
-      const res = await taskList({ name: query })
+      const res = await taskList({ id: query })
       if (res.code === 200) {
         this.tasksOptions = res.data
       }