guoshilong
2022-09-30 e96b9fa8c6d568c07801e232f3dfb789aa20db83
api/taskinfo/taskinfo.js
File was renamed from api/taskinfo/list.js
@@ -11,11 +11,19 @@
      }
   })
}
export const getDetail = (id) => {
   return http.request({
      url: '/taskInfo/taskinfo/detail',
      method: 'get',
      params: {
         id
      }
   })
}
export const update = (row) =>{
   return http.request({
      url:'/taskInfo/taskinfo/submit',
      method:'POST',
      data:row
   })
}
}