| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.kickstart_complete_action')}}</div>
- <div slot="body">
- <a-alert class="mb-2" type="warning">
- <div slot="message">{{$t('compute.kickstart_complete_tip_2')}}</div>
- </a-alert>
- <dialog-selected-tips :name="$t('dictionary.server')" :count="params.data.length" :action="$t('compute.kickstart_complete_action')" />
- <dialog-table :data="params.data" :columns="columns" />
- </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: 'VmKickstartComplateDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- }
- },
- computed: {
- columns () {
- const fields = ['name', 'instance_type', 'brand']
- return this.params.columns.filter(item => {
- const { field } = item
- return fields.indexOf(field) > -1
- })
- },
- },
- methods: {
- async handleConfirm () {
- this.loading = true
- try {
- await this.params.onManager('performAction', {
- id: this.params.data[0].id,
- steadyStatus: ['running', 'ready'],
- managerArgs: {
- action: 'kickstart-complete',
- },
- })
- this.cancelDialog()
- } finally {
- this.loading = false
- }
- },
- },
- }
- </script>
|