|
@@ -59,7 +59,6 @@ export default {
|
|
|
this.loading = true
|
|
|
let id = this.$route.params.algoID
|
|
|
getAlgorithm(id).then(response => {
|
|
|
- console.log('response', response)
|
|
|
this.info = response.data
|
|
|
if(this.info.status==='2'){
|
|
|
this.isOK=false
|
|
@@ -82,7 +81,6 @@ export default {
|
|
|
getLogInfo(taskId) {
|
|
|
getLog(taskId).then(response => {
|
|
|
let logData = response.data
|
|
|
- console.log('response.data', logData);
|
|
|
if (logData && logData.includes('任务执行完成')) {
|
|
|
console.log("定时器销毁");
|
|
|
clearInterval(this.timer)
|