#5412 fix issue

Merged
aiforge_admin merged 1 commits from fix-5348 into V20240423 1 month ago
  1. +6
    -0
      web_src/vuepages/pages/supercompute/list/index.vue

+ 6
- 0
web_src/vuepages/pages/supercompute/list/index.vue View File

@@ -27,6 +27,12 @@
<div class="status-wrap">
<i :class="scope.row.task.status"></i>
<span>{{ scope.row.task.status }}</span>
<i v-if="scope.row.task.detailed_status === 'dataMigrating' && scope.row.task.status === 'WAITING'"
:class="scope.row.task.detailed_status" :title="$t('cloudbrainObj.migratingData')"></i>
<i v-if="scope.row.task.detailed_status === 'centerPending' && scope.row.task.status === 'WAITING'"
:class="scope.row.task.detailed_status" :title="$t('cloudbrainObj.centerPending')"></i>
<i v-if="scope.row.task.detailed_status === 'ImagePulling' && scope.row.task.status === 'WAITING'"
:class="scope.row.task.detailed_status" :title="$t('cloudbrainObj.imagePulling')"></i>
</div>
</template>
</el-table-column>


Loading…
Cancel
Save