fix(工作台): 我的待办-测试计划-测试进度显示错误

--bug=1025720 --user=宋昌昌 【工作台】我的待办-测试计划-测试进度显示错误 https://www.tapd.cn/55049933/s/1366696
This commit is contained in:
song-cc-rock 2023-04-25 18:59:04 +08:00 committed by fit2-zhao
parent c92461d399
commit fff1bae1e6
2 changed files with 3 additions and 3 deletions

View File

@ -1507,7 +1507,7 @@ public class TestCaseService {
} }
} catch (Exception e) { } catch (Exception e) {
LogUtil.error(e); LogUtil.error(e);
MSException.throwException("export case zip error"); MSException.throwException(e);
} finally { } finally {
try { try {
if (bis != null) { if (bis != null) {

View File

@ -94,7 +94,8 @@
show-overflow-tooltip show-overflow-tooltip
:key="index"> :key="index">
<template v-slot:default="scope"> <template v-slot:default="scope">
<el-progress :percentage="scope.row.testRate"></el-progress> <i class="el-icon-loading" style="font-size: 16px" v-if="!scope.row.testRate && scope.row.testRate !== 0"/>
<el-progress :percentage="scope.row.testRate" v-else></el-progress>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="item.id === 'tags'&& isShowAllColumn" prop="tags" <el-table-column v-if="item.id === 'tags'&& isShowAllColumn" prop="tags"
@ -362,7 +363,6 @@ export default {
this.$set(item, "principals", principalIds); this.$set(item, "principals", principalIds);
}) })
}); });
console.log(testPlanIds)
this.getTestPlanDetailData(testPlanIds); this.getTestPlanDetailData(testPlanIds);
}, },
getTestPlanDetailData(testPlanIds) { getTestPlanDetailData(testPlanIds) {