mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-13 23:20:12 +08:00
parent
49e82232f9
commit
a4a1cdb182
@ -10,7 +10,7 @@
|
|||||||
:panel-type="panelType"
|
:panel-type="panelType"
|
||||||
/>
|
/>
|
||||||
<el-header
|
<el-header
|
||||||
v-if="ShowInfoContext"
|
v-if="showContextMenu"
|
||||||
>
|
>
|
||||||
<context-menu
|
<context-menu
|
||||||
:menu-parent-uuid="$route.meta.parentUuid"
|
:menu-parent-uuid="$route.meta.parentUuid"
|
||||||
@ -105,8 +105,8 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
ShowInfoContext() {
|
showContextMenu() {
|
||||||
return this.$store.state.settings.ShowInfoContext
|
return this.$store.state.settings.showContextMenu
|
||||||
},
|
},
|
||||||
getterBrowser() {
|
getterBrowser() {
|
||||||
return this.$store.getters.getBrowser(this.browserUuid)
|
return this.$store.getters.getBrowser(this.browserUuid)
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
style="height: 84vh;"
|
style="height: 84vh;"
|
||||||
>
|
>
|
||||||
<el-header
|
<el-header
|
||||||
v-if="ShowInfoContext"
|
v-if="showContextMenu"
|
||||||
style="height: 39px; background: white;"
|
style="height: 39px; background: white;"
|
||||||
>
|
>
|
||||||
<context-menu
|
<context-menu
|
||||||
@ -82,8 +82,8 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
ShowInfoContext() {
|
showContextMenu() {
|
||||||
return this.$store.state.settings.ShowInfoContext
|
return this.$store.state.settings.showContextMenu
|
||||||
},
|
},
|
||||||
formTitle() {
|
formTitle() {
|
||||||
return this.formMetadata.name || this.$route.meta.title
|
return this.formMetadata.name || this.$route.meta.title
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
style="height: 84vh;"
|
style="height: 84vh;"
|
||||||
>
|
>
|
||||||
<el-header
|
<el-header
|
||||||
v-if="ShowInfoContext"
|
v-if="showContextMenu"
|
||||||
style="height: 39px;"
|
style="height: 39px;"
|
||||||
>
|
>
|
||||||
<context-menu
|
<context-menu
|
||||||
@ -89,8 +89,8 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
ShowInfoContext() {
|
showContextMenu() {
|
||||||
return this.$store.state.settings.ShowInfoContext
|
return this.$store.state.settings.showContextMenu
|
||||||
},
|
},
|
||||||
getterProcess() {
|
getterProcess() {
|
||||||
return this.$store.getters.getPanel(this.processUuid)
|
return this.$store.getters.getPanel(this.processUuid)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="isLoading" key="report-viewer-loaded" style="min-height: inherit;">
|
<div v-if="isLoading" key="report-viewer-loaded" style="min-height: inherit;">
|
||||||
<context-menu
|
<context-menu
|
||||||
v-if="ShowInfoContext"
|
v-if="showContextMenu"
|
||||||
:container-uuid="reportResult.processUuid"
|
:container-uuid="reportResult.processUuid"
|
||||||
:panel-type="panelType"
|
:panel-type="panelType"
|
||||||
:is-report="true"
|
:is-report="true"
|
||||||
@ -113,8 +113,8 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
// TODO: Add get metadata from server to open report view from link
|
// TODO: Add get metadata from server to open report view from link
|
||||||
ShowInfoContext() {
|
showContextMenu() {
|
||||||
return this.$store.state.settings.ShowInfoContext
|
return this.$store.state.settings.showContextMenu
|
||||||
},
|
},
|
||||||
getterProcess() {
|
getterProcess() {
|
||||||
return this.$store.getters.getProcessById(this.$route.params.processId)
|
return this.$store.getters.getProcessById(this.$route.params.processId)
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<Split v-shortkey="['f8']" direction="vertical" @onDrag="onDrag" @shortkey.native="handleChangeShowedRecordNavigation(!isShowedRecordNavigation)">
|
<Split v-shortkey="['f8']" direction="vertical" @onDrag="onDrag" @shortkey.native="handleChangeShowedRecordNavigation(!isShowedRecordNavigation)">
|
||||||
<SplitArea :size="sizeAreaStyle" :style="splitAreaStyle">
|
<SplitArea :size="sizeAreaStyle" :style="splitAreaStyle">
|
||||||
<el-header
|
<el-header
|
||||||
v-if="ShowInfoContext"
|
v-if="showContextMenu"
|
||||||
:style="isWorkflowBarStatus ? 'height: 45px; background: #F5F7FA' : 'height: 40px'"
|
:style="isWorkflowBarStatus ? 'height: 45px; background: #F5F7FA' : 'height: 40px'"
|
||||||
>
|
>
|
||||||
<el-container>
|
<el-container>
|
||||||
@ -343,8 +343,8 @@ export default {
|
|||||||
next()
|
next()
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
ShowInfoContext() {
|
showContextMenu() {
|
||||||
return this.$store.state.settings.ShowInfoContext
|
return this.$store.state.settings.showContextMenu
|
||||||
},
|
},
|
||||||
defaultPorcentSplitPane() {
|
defaultPorcentSplitPane() {
|
||||||
if (this.isShowedRecordPanel) {
|
if (this.isShowedRecordPanel) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user