| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{$t('network.text_606')}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.wire')" :count="params.data.length" :action="$t('network.text_606')" />
- <dialog-table :data="params.data" :columns="params.columns.slice(0, 3)" />
- <a-form
- :form="form.fc">
- <a-form-item :label="$t('network.text_195')" v-bind="formItemLayout">
- <a-select
- v-decorator="decorators.bandwidth"
- :placeholder="$t('network.text_697')">
- <a-select-option v-for="item in bandwidthOptions" :value="item.value" :key="item.value">
- {{item.label}}
- </a-select-option>
- </a-select>
- </a-form-item>
- <a-form-item label="MTU" v-bind="formItemLayout">
- <a-input-number :min="68" :max="9216" :step="50" v-decorator="decorators.mtu" />
- <div class="add-desc">{{$t('network.text_700')}}</div>
- </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 { BAND_WIDTH_OPTION } from '../../../constants'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'WireUpdateDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- decorators: {
- bandwidth: [
- 'bandwidth',
- {
- initialValue: this.params.data[0].bandwidth.toString(),
- rules: [
- { required: true, message: this.$t('network.text_699') },
- ],
- },
- ],
- mtu: [
- 'mtu',
- {
- initialValue: this.params.data[0].mtu || 1500,
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 21,
- },
- labelCol: {
- span: 3,
- },
- },
- bandwidthOptions: BAND_WIDTH_OPTION,
- }
- },
- methods: {
- doUpdate (data) {
- return new this.$Manager('wires').update({
- id: this.params.data[0].id,
- data,
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- await this.doUpdate(values)
- this.loading = false
- this.cancelDialog()
- this.params.refresh()
- } catch (error) {
- this.loading = false
- }
- },
- },
- }
- </script>
- <style scoped lang="less">
- .add-desc{
- font-size: 12px;
- b{
- color: #333333;
- }
- }
- </style>
|