mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-12-04 21:19:52 +08:00
fix: 测试计划报告导出html目录功能无效
This commit is contained in:
parent
6c38bb4f00
commit
8cbc80bace
@ -4,7 +4,7 @@
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "export NODE_OPTIONS=--max_old_space_size=4096 && vue-cli-service build",
|
||||
"build": "vue-cli-service build",
|
||||
"build-win": "SET NODE_OPTIONS=--max_old_space_size=4096 && vue-cli-service build",
|
||||
"lint": "vue-cli-service lint"
|
||||
},
|
||||
|
@ -11,7 +11,7 @@
|
||||
<test-plan-load-report v-if="loadEnable" :is-db="isDb" :share-id="shareId" :is-share="isShare" :is-template="isTemplate" :report="report" :plan-id="planId"/>
|
||||
</el-card>
|
||||
</el-main>
|
||||
<test-plan-report-navigation-bar/>
|
||||
<test-plan-report-navigation-bar :is-template="isTemplate"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -19,6 +19,9 @@ import MsDrawer from "@/business/components/common/components/MsDrawer";
|
||||
export default {
|
||||
name: "TestPlanReportNavigationBar",
|
||||
components: {MsDrawer},
|
||||
props: {
|
||||
isTemplate: Boolean,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
asideHidden: true,
|
||||
@ -50,7 +53,11 @@ export default {
|
||||
watch: {
|
||||
activeName() {
|
||||
let url = new URL(window.location.href);
|
||||
window.location.href = url.origin + '#' + this.activeName;
|
||||
if (this.isTemplate) {
|
||||
window.location.href = window.location.href.split('#')[0] + '#' + this.activeName;
|
||||
} else {
|
||||
window.location.href = url.origin + '#' + this.activeName;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ export default {
|
||||
/*color: white;*/
|
||||
color: #783887;
|
||||
height: 20px;
|
||||
border: 0px;
|
||||
border: 0px !important;
|
||||
/*border-radius: 42%;*/
|
||||
/*margin-left: 4px;*/
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user