fix(工作台): 我的待办-测试计划-测试进度显示错误
--bug=1025720 --user=宋昌昌 【工作台】我的待办-测试计划-测试进度显示错误 https://www.tapd.cn/55049933/s/1366696
This commit is contained in:
parent
c92461d399
commit
fff1bae1e6
|
@ -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) {
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue