fix(系统参数): 数据集详情-更新信息,查看同步失败的原因

This commit is contained in:
taojinlong
2022-11-01 16:26:45 +08:00
parent 6110b0402b
commit c2c1fdf7ca
2 changed files with 15 additions and 3 deletions

View File

@@ -66,8 +66,15 @@
v-if="scope.row.lastExecStatus"
:class="[`de-${scope.row.lastExecStatus}-pre`, 'de-status']"
>{{
$t(`dataset.${scope.row.lastExecStatus.toLocaleLowerCase()}`)
}}
$t(`dataset.${scope.row.lastExecStatus.toLocaleLowerCase()}`)
}}
<svg-icon
v-if="scope.row.lastExecStatus === 'Error'"
style="cursor: pointer;"
icon-class="icon-maybe"
class="field-icon-location"
@click="showErrorMassage(scope.row.msg)"
/>
</span>
<span v-else>-</span>
</template>