| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{params.title}}</div>
- <div slot="body">
- <a-form
- :form="form.fc">
- <a-form-item :label="$t('network.text_199')" class="mb-0" v-bind="formItemLayout">
- <cloudregion-zone
- :zone-params="resParams.zone"
- :cloudregion-params="resParams.region"
- :decorator="decorators.regionZone"
- filterBrandResource="loadbalancer_engine" />
- </a-form-item>
- <a-form-item :label="$t('network.text_21')" v-bind="formItemLayout">
- <a-input v-decorator="decorators.name" :placeholder="$t('network.text_44')" />
- </a-form-item>
- <a-form-item :label="$t('common.description')" v-bind="formItemLayout">
- <a-textarea :auto-size="{ minRows: 1, maxRows: 3 }" v-decorator="decorators.description" :placeholder="$t('common_367')" />
- </a-form-item>
- <a-form-item :label="$t('common.text00012')" class="mb-0" v-bind="formItemLayout">
- <tag
- v-decorator="decorators.__meta__" />
- </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 CloudregionZone from '@/sections/CloudregionZone'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- import Tag from '@/sections/Tag'
- import validateForm from '@/utils/validate'
- export default {
- name: 'LoadbalancerclusterCreateDialog',
- components: {
- CloudregionZone,
- Tag,
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- name: [
- 'name',
- {
- validateFirst: true,
- validateTrigger: ['blur'],
- rules: [
- { required: true, message: this.$t('network.text_116') },
- { validator: this.$validate('resourceName') },
- ],
- },
- ],
- description: ['description'],
- __meta__: [
- '__meta__',
- {
- rules: [
- { validator: validateForm('tagName') },
- ],
- },
- ],
- regionZone: {
- cloudregion: [
- 'cloudregion',
- {
- initialValue: { key: '', label: '' },
- rules: [
- { required: true, message: this.$t('network.text_286') },
- ],
- },
- ],
- zone: [
- 'zone',
- {
- initialValue: { key: '', label: '' },
- rules: [
- { required: true, message: this.$t('network.text_287') },
- ],
- },
- ],
- },
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- resParams: {
- zone: {},
- region: {
- usable: true,
- is_on_premise: true,
- scope: this.$store.getters.scope,
- },
- },
- }
- },
- provide () {
- return {
- form: this.form,
- }
- },
- methods: {
- doCreate (data) {
- const params = {
- name: data.name,
- description: data.description,
- cloudregion_id: data.cloudregion.key,
- zone: data.zone.key,
- zoneData: {
- id: data.zone.key,
- name: data.zone.label,
- regionId: data.cloudregion.key,
- },
- __meta__: data.__meta__,
- }
- return new this.$Manager('loadbalancerclusters').create({
- data: params,
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- await this.doCreate(values)
- this.loading = false
- this.cancelDialog()
- this.params.refresh()
- } catch (error) {
- this.loading = false
- }
- },
- },
- }
- </script>
|