| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.text_1179')}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.instancegroup')" :count="params.data.length" :action="$t('compute.text_1179')" />
- <dialog-table :data="params.data" :columns="columns" />
- <a-form :form="form.fc" hideRequiredMark>
- <eip-config
- hidden-none-type
- :decorators="decorators.eipConfig"
- :eip-params="eipParams"
- :hypervisor="hypervisor"
- :cloud-env="params.data[0].cloud_env"
- :form="form"
- :formItemLayout="formItemLayout" />
- </a-form>
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading">{{ $t('dialog.ok') }}</a-button>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import EipConfig from '@Compute/sections/EipConfig'
- import { SERVER_TYPE } from '@Compute/constants'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import { findPlatform } from '@/utils/common/hypervisor'
- export default {
- name: 'InstanceGroupBindEipDialog',
- components: {
- EipConfig,
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- let typeInitialValue = 'new'
- const hypervisor = this.params.data[0].hypervisor
- if (findPlatform(hypervisor) === SERVER_TYPE.private) {
- typeInitialValue = 'bind'
- }
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- eipConfig: {
- type: [
- 'type',
- {
- initialValue: typeInitialValue,
- },
- ],
- charge_type: [
- 'charge_type',
- {
- initialValue: (this.params.data[0].hypervisor == null || this.params.data[0].hypervisor === 'kvm') ? 'bandwidth' : 'traffic',
- },
- ],
- bgp_type: [
- 'bgp_type',
- {
- initialValue: '',
- },
- ],
- bandwidth: [
- 'bandwidth',
- {
- initialValue: 30,
- validateFirst: true,
- },
- ],
- eip: [
- 'eip',
- {
- rules: [
- { required: true, message: this.$t('compute.text_145'), trigger: 'change' },
- ],
- },
- ],
- },
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- }
- },
- computed: {
- hypervisor () {
- return this.params.data[0].hypervisor
- },
- isPublic () {
- return findPlatform(this.hypervisor) === 'public'
- },
- eipParams () {
- return {
- usable_eip_for_associate_type: 'instancegroup',
- usable_eip_for_associate_id: this.params.data[0].id,
- scope: this.$store.getters.scope,
- }
- },
- columns () {
- const fields = ['name', 'metadata', 'ip']
- return this.params.columns.filter(item => {
- const { field } = item
- return fields.indexOf(field) > -1
- })
- },
- },
- methods: {
- doCreateEip (ids, values) {
- return this.params.onManager('batchPerformAction', {
- id: ids,
- managerArgs: {
- action: 'create-eip',
- steadyStatus: ['init'],
- data: {
- charge_type: values.charge_type,
- bandwidth: values.bandwidth,
- bgp_type: values.bgp_type,
- },
- },
- })
- },
- doBindEip (ids, values) {
- return this.params.onManager('batchPerformAction', {
- id: ids,
- managerArgs: {
- action: 'associate-eip',
- steadyStatus: ['init'],
- data: {
- eip: values.eip,
- },
- },
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- const ids = this.params.data.map(item => item.id)
- if (values.type === 'new') {
- await this.doCreateEip(ids, values)
- }
- if (values.type === 'bind') {
- await this.doBindEip(ids, values)
- }
- this.$bus.$emit('InstanceGroupListRefresh', ids)
- this.cancelDialog()
- } finally {
- this.loading = false
- }
- },
- },
- }
- </script>
|