| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <template>
- <base-side-page
- @cancel="cancelSidePage"
- :title="$t('cloudenv.text_11')"
- icon="res-zone"
- :res-name="detailData.name"
- :actions="params.actions"
- :current-tab="params.windowData.currentTab"
- :loaded="loaded"
- :tabs="detailTabs"
- @tab-change="handleTabChange">
- <template v-slot:actions>
- <actions :options="singleActions" :row="detailData" button-type="link" button-size="small" />
- </template>
- <component
- :is="params.windowData.currentTab"
- :res-id="data.id"
- :id="listId"
- :data="detailData"
- :on-manager="onManager"
- :getParams="getParams"
- @side-page-trigger-handle="sidePageTriggerHandle"
- @init-side-page-tab="initSidePageTab"
- @single-refresh="singleRefresh" />
- </base-side-page>
- </template>
- <script>
- import SingleActionsMixin from '../mixins/singleActions'
- import ColumnsMixin from '../mixins/columns'
- import ZoneDetail from './Detail'
- import Dashboard from './Dashboard'
- import HostList from './Host'
- import SidePageMixin from '@/mixins/sidePage'
- import WindowsMixin from '@/mixins/windows'
- import Actions from '@/components/PageList/Actions'
- export default {
- name: 'ZoneSidePage',
- components: {
- Actions,
- ZoneDetail,
- HostList,
- Dashboard,
- },
- mixins: [SidePageMixin, WindowsMixin, ColumnsMixin, SingleActionsMixin],
- data () {
- return {}
- },
- computed: {
- getParams () {
- if (this.params.windowData.currentTab === 'host-list') {
- return () => {
- return {
- zone: this.data.id,
- details: true,
- }
- }
- }
- return null
- },
- listId () {
- switch (this.params.windowData.currentTab) {
- case 'event-drawer':
- return 'EventListForZoneSidePage'
- case 'host-list':
- return 'HostListForZoneSidePage'
- default:
- return ''
- }
- },
- hiddenActions () {
- return this.params.hiddenActions || []
- },
- detailTabs () {
- const detailTabs = [
- { label: this.$t('cloudenv.text_237'), key: 'zone-detail' },
- { label: this.$t('cloudenv.text_15'), key: 'event-drawer' },
- ]
- if (!['public'].includes(this.detailData.cloud_env)) {
- detailTabs.splice(1, 0, { label: this.$t('cloudenv.text_319'), key: 'dashboard' })
- detailTabs.splice(1, 0, { label: this.$t('cloudenv.text_101'), key: 'host-list' })
- }
- return detailTabs
- },
- },
- }
- </script>
|