| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{action}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.server')" :count="params.data.length" :action="action" />
- <dialog-table :data="params.data" :columns="columns" />
- <a-form
- :form="form.fc"
- v-bind="formItemLayout">
- <a-form-item :label="$t('compute.text_1257')" :help="$t('compute.text_1258')">
- <a-switch :checkedChildren="$t('compute.text_115')" :unCheckedChildren="$t('compute.text_116')" v-decorator="decorators.open" />
- </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: 'VmSourceTargetCheckDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- const isAllClose = this.params.data.every((item) => { return !(item.src_ip_check && item.src_mac_check) })
- return {
- loading: false,
- action: this.$t('compute.text_1124'),
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- open: [
- 'open',
- {
- initialValue: !isAllClose,
- valuePropName: 'checked',
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 19,
- },
- labelCol: {
- span: 5,
- },
- },
- }
- },
- computed: {
- columns () {
- const showFields = ['name', 'ip', 'brand']
- return this.params.columns.filter((item) => { return showFields.includes(item.field) })
- },
- },
- methods: {
- async doSubmit () {
- const ids = this.params.data.map(item => item.id)
- const values = await this.form.fc.validateFields()
- const open = values.open ? 'on' : 'off'
- const params = { src_ip_check: open, src_mac_check: open }
- return this.params.onManager('batchPerformAction', {
- id: ids,
- steadyStatus: 'running',
- managerArgs: {
- action: 'modify-src-check',
- data: params,
- },
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- await this.doSubmit()
- this.loading = false
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- }
- },
- },
- }
- </script>
|