| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <page-list
- :list="list"
- :columns="columns"
- :group-actions="groupActions"
- :single-actions="singleActions" />
- </template>
- <script>
- import WindowsMixin from '@/mixins/windows'
- import ListMixin from '@/mixins/list'
- import ColumnsMixin from '../mixins/vipcolumns'
- import SingleActionsMixin from '../mixins/vipsingleActions'
- export default {
- name: 'GroupNetworkList',
- mixins: [WindowsMixin, ListMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- id: String,
- resId: String,
- data: {
- type: Object,
- required: true,
- },
- serverColumns: {
- type: Array,
- default: () => ([]),
- },
- getParams: {
- type: Object,
- default: () => ({}),
- },
- },
- data () {
- return {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'networks',
- ctx: [['instancegroups', this.resId]],
- idKey: 'ip_addr',
- getParams: {
- order_by: 'ip_addr',
- order: 'asc',
- ...this.getParams,
- },
- }),
- groupActions: [
- {
- label: this.$t('compute.create_vip'),
- permission: 'instancegroups_perform_attach_network',
- action: () => {
- this.createDialog('InstanceGroupAddVipNetworkDialog', {
- title: this.$t('compute.create_vip'),
- data: [this.data],
- columns: this.serverColumns,
- resId: this.resId,
- refresh: this.refresh,
- total: this.list.total,
- })
- },
- meta: () => {
- let tooltip = null
- if (!this.data.network_id) {
- tooltip = this.$t('compute.instance_group_no_network_id')
- }
- if (this.list.total >= 1) {
- tooltip = this.$t('compute.too_many_instance_group_vip')
- }
- return {
- buttonType: 'primary',
- validate: (!!this.data.network_id && this.list.total < 1),
- tooltip,
- }
- },
- hidden: this.$isScopedPolicyMenuHidden('vminstance_hidden_menus.server_add_network_card'),
- },
- ],
- }
- },
- created () {
- this.initSidePageTab('event-drawer')
- this.list.fetchData()
- },
- methods: {
- handleOpenNetworkDetail (id) {
- this.initSidePageTab('network-detail')
- this.sidePageTriggerHandle(this, 'NetworkSidePage', {
- id,
- resource: 'networks',
- })
- },
- refresh () {
- this.$bus.$emit('InstanceGroupListRefresh', this.resId)
- this.list.refresh()
- },
- },
- }
- </script>
|