| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div>
- <page-header
- :title="$t('storage.text_18')"
- :tabs="cloudEnvOptions"
- :current-tab.sync="cloudEnv"
- isShowResStatusTab
- :status-opts="statusOpts"
- :status-click-handle="statusClickHandle" />
- <page-body>
- <list
- :id="listId"
- :cloud-env="cloudEnv"
- :cloudEnvOptions="cloudEnvOptions"
- :filterParams="filterParams"
- statusResKey="bucket"
- @resStatisticsChange="resStatisticsChange" />
- </page-body>
- </div>
- </template>
- <script>
- import { getCloudEnvOptions } from '@/utils/common/hypervisor'
- import ResStatisticsV2Mixin from '@/mixins/resStatisticsV2Mixin'
- import List from './components/List'
- export default {
- name: 'BucketStorage',
- components: {
- List,
- },
- mixins: [ResStatisticsV2Mixin],
- data () {
- return {
- listId: 'BucketList',
- cloudEnvOptions: getCloudEnvOptions('object_storage_brands'),
- cloudEnv: '',
- statusNormalList: ['ready'],
- }
- },
- }
- </script>
|