fix 爬虫列表按钮无法点击的问题

This commit is contained in:
陈景阳
2019-10-10 17:59:15 +08:00
parent f5af83dcce
commit 7fe2c9a425

View File

@@ -424,13 +424,18 @@ export default {
this.dialogVisible = true
},
isShowRun (row) {
if (this.isCustomized(row)) {
// customized spider
return !!row.cmd
if (row.cmd) {
return true
} else {
// configurable spider
return !!row.fields
return false
}
// if (this.isCustomized(row)) {
// // customized spider
// return !!row.cmd
// } else {
// // configurable spider
// return !!row.fields
// }
},
isCustomized (row) {
return row.type === 'customized'