| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.text_983')}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.secgroup')" :count="params.data.length" :action="$t('compute.text_983')" />
- <dialog-table :data="params.data" :columns="params.columns.slice(0, 3)" />
- <a-form
- :form="form.fc">
- <a-form-item :label="$t('compute.text_228')" v-bind="formItemLayout">
- <a-input v-decorator="decorators.name" :placeholder="$t('compute.text_210')" />
- </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: 'CloneSecgroupDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- name: [
- 'name',
- {
- validateFirst: true,
- rules: [
- { required: true, message: this.$t('compute.text_333') },
- // { validator: this.$validate('templateName') },
- ],
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 22,
- },
- labelCol: {
- span: 2,
- },
- },
- templateOps: {
- 1: this.$t('compute.text_1010'),
- 2: this.$t('compute.text_1011'),
- 3: this.$t('compute.text_144'),
- },
- }
- },
- methods: {
- doCreate (data) {
- return new this.$Manager('secgroups').performAction({
- id: this.params.data[0].id,
- action: 'clone',
- data,
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- this.loading = true
- await this.doCreate(values)
- this.loading = false
- this.cancelDialog()
- this.params.refresh()
- } catch (error) {
- this.loading = false
- }
- },
- },
- }
- </script>
|