| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <detail
- :on-manager="onManager"
- :data="data"
- :base-info="baseInfo"
- :extra-info="extraInfo"
- resource="vpcs"
- statusModule="vpc"
- auto-hidden-columns-key="vpc_hidden_columns" />
- </template>
- <script>
- import {
- getBrandTableColumn,
- getPublicScopeTableColumn,
- } from '@/utils/common/tableColumn'
- import {
- getUserTagColumn,
- getExtTagColumn,
- } from '@/utils/common/detailColumn'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'VPCDetail',
- mixins: [WindowsMixin],
- props: {
- data: {
- type: Object,
- required: true,
- },
- onManager: {
- type: Function,
- required: true,
- },
- columns: Array,
- },
- data () {
- return {
- baseInfo: [
- getUserTagColumn({
- onManager: this.onManager,
- resource: 'vpc',
- columns: () => this.columns,
- tipName: this.$t('dictionary.vpc'),
- editCheck: (row) => (row.provider || '').toLowerCase() !== 'bingocloud',
- }),
- getExtTagColumn({
- onManager: this.onManager,
- resource: 'vpc',
- columns: () => this.columns,
- tipName: this.$t('dictionary.vpc'),
- editCheck: (row) => (row.provider || '').toLowerCase() !== 'bingocloud',
- }),
- getPublicScopeTableColumn({ vm: this, resource: 'vpcs' }),
- getBrandTableColumn(),
- {
- field: 'cidr_block',
- title: this.$t('network.vpc.cidr_block.ipv4.label'),
- },
- {
- field: 'wire_count',
- title: this.$t('network.text_691'),
- },
- {
- field: 'routetable_count',
- title: this.$t('network.text_692'),
- },
- {
- field: 'network_count',
- title: this.$t('network.text_682'),
- slots: {
- default: ({ row }) => {
- if (!row.network_count) return '-'
- return [<a onClick={ () => this.$emit('tab-change', 'network-list') }>{row.network_count}</a>]
- },
- },
- },
- {
- field: 'natgateway_count',
- title: this.$t('network.text_693'),
- },
- {
- field: 'external_access_mode',
- title: this.$t('network.external_access_mode_label'),
- formatter: ({ row }) => {
- if (row.external_access_mode === 'none') return this.$t('status.enabled.false')
- return this.$t('status.enabled.true')
- },
- },
- ],
- extraInfo: [],
- }
- },
- }
- </script>
|