| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <base-side-page
- @cancel="cancelSidePage"
- :title="$t('storage.text_18')"
- icon="res-bucket"
- :res-name="detailData.name"
- :tabs="detailTabs"
- :current-tab="params.windowData.currentTab"
- :loaded="loaded"
- @tab-change="handleTabChange">
- <template v-slot:actions v-if="showActions">
- <actions :options="singleActions" :row="detailData" button-type="link" button-size="small" />
- </template>
- <component :columns="columns" :is="params.windowData.currentTab" :data="detailData" :on-manager="onManager" :refresh="refresh" :getParams="getParams" :params="getParams" :res-id="getParams.storage" :id="listId" taskResource="compute-tasks" />
- </base-side-page>
- </template>
- <script>
- import SidePageMixin from '@/mixins/sidePage'
- import WindowsMixin from '@/mixins/windows'
- import Actions from '@/components/PageList/Actions'
- import ColumnsMixin from '../mixins/columns'
- import SingleActionsMixin from '../mixins/singleActions'
- import Detail from './Detail'
- import Objects from './Objects'
- import Monitor from './Monitor'
- import Rules from './CrossDomainRules'
- import Policies from './Policies'
- export default {
- name: 'BucketStorageSidePage',
- components: {
- Actions,
- Detail,
- Objects,
- Monitor,
- Rules,
- Policies,
- },
- mixins: [SidePageMixin, WindowsMixin, ColumnsMixin, SingleActionsMixin],
- data () {
- return {
- detailTabs: [
- { label: this.$t('storage.text_81'), key: 'detail' },
- { label: this.$t('storage.text_169'), key: 'objects' },
- { label: this.$t('storage.text_211'), key: 'rules' },
- { label: this.$t('storage.text_259'), key: 'Policies' },
- { label: this.$t('storage.text_170'), key: 'monitor' },
- { label: this.$t('table.title.task'), key: 'task-drawer' },
- { label: this.$t('storage.text_85'), key: 'event-drawer' },
- ],
- }
- },
- computed: {
- getParams () {
- return {
- storage: this.data.id,
- details: true,
- }
- },
- showActions () {
- return !this.$isScopedPolicyMenuHidden('oss_hidden_columns.perform_action')
- },
- listId () {
- switch (this.params.windowData.currentTab) {
- case 'event-drawer':
- return 'EventListForBucketStorageSidePage'
- default:
- return ''
- }
- },
- },
- }
- </script>
|