| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <template>
- <base-side-page
- @cancel="cancelSidePage"
- :title="$t('cloudenv.text_318')"
- icon="onecloud"
- :res-name="detailData.name"
- :actions="params.actions"
- :current-tab="params.windowData.currentTab"
- :tabs="detailTabs"
- :loaded="loaded"
- @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" :cloudprovider-id="data.id" resource="cloudproviders" :data="detailData" :onManager="onManager" :getParams="getParams" />
- </base-side-page>
- </template>
- <script>
- import Usage from '@Cloudenv/sections/UsageSidepage'
- import CloudproviderregionList from '@Cloudenv/views/cloudproviderregion/components/List'
- import SidePageMixin from '@/mixins/sidePage'
- import WindowsMixin from '@/mixins/windows'
- import Actions from '@/components/PageList/Actions'
- import { findPlatform } from '@/utils/common/hypervisor'
- import SamlProvider from '@Cloudenv/views/samlprovider/components/List'
- import ColumnsMixin from '../mixins/columns'
- import SingleActionsMixin from '../mixins/singleActions'
- import CloudaccountDetail from './Detail'
- import CloudaccountQuotaList from './QuotaList'
- export default {
- name: 'CloudproviderSidePage',
- components: {
- Actions,
- CloudaccountDetail,
- CloudproviderregionList,
- CloudaccountQuotaList,
- Usage,
- SamlProvider,
- },
- mixins: [SidePageMixin, WindowsMixin, ColumnsMixin, SingleActionsMixin],
- data () {
- return {
- data: {},
- }
- },
- computed: {
- getParams () {
- if (this.params.windowData.currentTab === 'cloudproviderregion-list') {
- return () => {
- return {
- cloudprovider_id: this.data.id,
- details: true,
- }
- }
- }
- if (this.params.windowData.currentTab === 'saml-provider') {
- return () => {
- return {
- manager_id: this.data.id,
- }
- }
- }
- return null
- },
- brand () {
- return this.detailData?.brand || ''
- },
- isPublic () {
- return findPlatform(this.brand.toLowerCase()) === 'public'
- },
- detailTabs () {
- const detailTabs = [
- { label: this.$t('cloudenv.text_237'), key: 'cloudaccount-detail' },
- { label: this.$t('cloudenv.text_10'), key: 'cloudproviderregion-list' },
- { label: this.$t('cloudenv.text_362'), key: 'cloudaccount-quota-list' },
- { label: this.$t('cloudenv.text_319'), key: 'usage' },
- { label: this.$t('cloudenv.text_15'), key: 'event-drawer' },
- ]
- if (this.isPublic) {
- detailTabs.splice(4, 0, { label: this.$t('cloudenv.saml_provider'), key: 'saml-provider' })
- }
- return detailTabs
- },
- },
- }
- </script>
|