|
@@ -247,8 +247,7 @@ function statusClass(status) {
|
|
|
function statusText(status) {
|
|
function statusText(status) {
|
|
|
if (status === 'processing') return '运行中'
|
|
if (status === 'processing') return '运行中'
|
|
|
if (status === 'completed') return '已完成'
|
|
if (status === 'completed') return '已完成'
|
|
|
- if (status === 'failed') return '失败'
|
|
|
|
|
- if (status === 'partial') return '部分失败'
|
|
|
|
|
|
|
+ if (status === 'failed' || status === 'partial') return '失败'
|
|
|
return '等待中'
|
|
return '等待中'
|
|
|
}
|
|
}
|
|
|
|
|
|