fix taskInstance submitTime is empty. (#4274)

This commit is contained in:
zhuangchong 2020-12-21 15:01:15 +08:00 committed by GitHub
parent cdc30f6ee5
commit 0bdef01db0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@
</el-table-column>
<el-table-column :label="$t('Submit Time')" width="135">
<template slot-scope="scope">
<span v-if="scope.row.scheduleTime">{{scope.row.scheduleTime | formatDate}}</span>
<span v-if="scope.row.submitTime">{{scope.row.submitTime | formatDate}}</span>
<span v-else>-</span>
</template>
</el-table-column>