| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <base-side-page
- @cancel="cancelSidePage"
- :title="$t('dictionary.clouduser')"
- icon="res-cloudaccount"
- :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"
- :data="detailData"
- :cloudaccount="cloudaccount"
- :on-manager="onManager"
- :res-id="data.id"
- resource="cloudaccounts"
- :getParams="getParams" />
- </base-side-page>
- </template>
- <script>
- import ColumnsMixin from '../mixins/columns'
- import SingleActionsMixin from '../mixins/singleActions'
- import ClouduserDetail from './Detail'
- import CloudgroupList from './CloudgroupList'
- import AkSkList from './AkSkList'
- import SidePageMixin from '@/mixins/sidePage'
- import WindowsMixin from '@/mixins/windows'
- import Actions from '@/components/PageList/Actions'
- import { HYPERVISORS_MAP } from '@/constants'
- export default {
- name: 'ClouduserSidePage',
- components: {
- ClouduserDetail,
- AkSkList,
- CloudgroupList,
- Actions,
- },
- mixins: [SidePageMixin, WindowsMixin, ColumnsMixin, SingleActionsMixin],
- data () {
- return {
- cloudaccount: {},
- }
- },
- computed: {
- isHuawei () {
- return this.detailData?.provider === HYPERVISORS_MAP.huawei.provider
- },
- detailTabs () {
- const detailTabs = [
- { label: this.$t('sidepage.tab.label.detail'), key: 'clouduser-detail' },
- { label: this.$t('dictionary.cloudgroup'), key: 'cloudgroup-list' },
- { label: this.$t('dictionary.actions'), key: 'event-drawer' },
- ]
- if (this.isHuawei) {
- detailTabs.splice(1, 0, { label: this.$t('cloudenv.aksk'), key: 'ak-sk-list' })
- }
- return detailTabs
- },
- getParams () {
- if (
- this.params.windowData.currentTab === 'cloudgroup-list'
- ) {
- return {
- clouduser_id: this.data.id,
- }
- }
- return null
- },
- },
- destroyed () {
- this.cm = null
- },
- created () {
- this.cm = new this.$Manager('cloudaccounts')
- },
- methods: {
- async fetchDataCallback () {
- try {
- const response = await this.cm.get({ id: this.detailData.cloudaccount_id })
- this.cloudaccount = response.data
- return response
- } catch (error) {
- throw error
- }
- },
- },
- }
- </script>
|