| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('compute.text_983')}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.sku')" :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_1051')" v-bind="formItemLayout">
- <a-input-number :min="1" v-decorator="decorators.cpu_core_count" />{{$t('compute.text_167')}}</a-form-item>
- <a-form-item :label="$t('compute.text_1052')" v-bind="formItemLayout">
- <a-input-number :min="1" v-decorator="decorators.memory_size_mb" /> GB
- </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: 'CloneSkuUpdateDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- cpu_core_count: [
- 'cpu_core_count',
- {
- initialValue: this.params.data[0].cpu_core_count,
- },
- ],
- memory_size_mb: [
- 'memory_size_mb',
- {
- initialValue: this.params.data[0].memory_size_mb / 1024,
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 21,
- },
- labelCol: {
- span: 3,
- },
- },
- }
- },
- methods: {
- validateForm () {
- return new Promise((resolve, reject) => {
- this.form.fc.validateFields((err, values) => {
- if (!err) {
- resolve(values)
- } else {
- reject(err)
- }
- })
- })
- },
- doCreate (data) {
- return this.params.onManager('create', {
- managerArgs: {
- data,
- },
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- let values = await this.validateForm()
- values = {
- ...values,
- memory_size_mb: values.memory_size_mb * 1024,
- brand: this.params.data[0].brand,
- }
- this.loading = true
- await this.doCreate(values)
- this.loading = false
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- }
- },
- },
- }
- </script>
|