fix(测试跟踪): 测试计划分享功能用例统计无法展示
--bug=1015668 --user=陈建星 【测试跟踪】测试计划-详情中报告统计-分享链接中没有功能用例统计信息 {#_orginal_url#}
This commit is contained in:
parent
db754794f4
commit
76f1edc7b8
|
@ -4,7 +4,7 @@
|
|||
<el-tab-pane v-if="resultEnable" :label="$t('test_track.report.test_result')" name="first">
|
||||
<functional-result :function-result="report.functionResult"/>
|
||||
</el-tab-pane>
|
||||
<el-tab-pane v-if="issueEnable && (isTemplate || hasPermission('PROJECT_TRACK_ISSUE:READ'))" name="second">
|
||||
<el-tab-pane v-if="issueEnable && (isTemplate || isShare || hasPermission('PROJECT_TRACK_ISSUE:READ'))" name="second">
|
||||
<template v-slot:label>
|
||||
<tab-pane-count :title="$t('test_track.report.issue_list')" :count="issueSize"/>
|
||||
</template>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<script>
|
||||
import MsDrawer from "@/business/components/common/components/MsDrawer";
|
||||
import {DEFAULT_LANGUAGE, EN_US} from "@/common/js/constants";
|
||||
import {DEFAULT_LANGUAGE, EN_US, ZH_CN} from "@/common/js/constants";
|
||||
import {getCurrentUser} from "@/common/js/utils";
|
||||
export default {
|
||||
name: "TestPlanReportNavigationBar",
|
||||
|
@ -95,8 +95,11 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
navBtnClass() {
|
||||
let lang = getCurrentUser().language;
|
||||
if (!lang) {
|
||||
let user = getCurrentUser();
|
||||
let lang = ZH_CN;
|
||||
if (user && user.language) {
|
||||
lang = user.language;
|
||||
} else {
|
||||
lang = localStorage.getItem(DEFAULT_LANGUAGE);
|
||||
}
|
||||
if (lang === EN_US) {
|
||||
|
|
Loading…
Reference in New Issue