| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{params.title}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.network')" :count="params.data.length" :action="params.title" />
- <dialog-table class="mb-2" :data="params.data" :columns="columns" />
- <a-form :form="form.fc" v-bind="formItemLayout">
- <a-form-item :label="$t('network.text_571')">
- <base-select
- resource="wires"
- v-decorator="decorators.wire"
- :selectProps="{ 'placeholder': $t('network.text_572') }"
- :isDefaultSelect="true"
- :params="wireParams" />
- </a-form-item>
- </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 DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'NetworkSwitchWireDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- wire: [
- 'wire',
- {
- initialValue: this.params.data[0].wire_id,
- rules: [
- { required: true, message: this.$t('network.text_572') },
- ],
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 19,
- },
- labelCol: {
- span: 5,
- },
- },
- }
- },
- computed: {
- columns () {
- return this.params.columns.filter(item => ['name', 'status', 'wire'].includes(item.field))
- },
- wireParams () {
- const params = {
- scope: this.$store.getters.scope,
- // brand: this.params.data[0].brand,
- vpcId: this.params.data[0].vpc_id,
- // zone: this.params.data[0].zone_id,
- }
- return params
- },
- },
- methods: {
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- const ids = this.params.data.map(item => item.id)
- if (ids.length > 1) {
- await this.params.onManager('batchPerformAction', {
- ids,
- managerArgs: {
- action: 'switch-wire',
- data: {
- wire_id: values.wire,
- },
- },
- })
- } else {
- await this.params.onManager('performAction', {
- id: ids[0],
- managerArgs: {
- action: 'switch-wire',
- data: {
- wire_id: values.wire,
- },
- },
- })
- }
- this.cancelDialog()
- } finally {
- this.loading = false
- }
- },
- },
- }
- </script>
|