(uuid: string)
| 79 | } |
| 80 | |
| 81 | removeRetryList(uuid: string) { |
| 82 | for (let i = 0; i < this.retryList.length; i += 1) { |
| 83 | if (this.retryList[i].script.uuid === uuid) { |
| 84 | this.retryList.splice(i, 1); |
| 85 | i -= 1; |
| 86 | } |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | async enableScript(script: ScriptRunResource) { |
| 91 | // 开启脚本 |