| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{params.title}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.cloudaccount')" :count="params.data.length" :action="params.title" />
- <dialog-table :data="params.data" :columns="params.columns.slice(0, 3)" />
- <a-form
- v-bind="formItemLayout"
- :form="form.fc">
- <proxy-setting :fc="form.fc" :account="params.data[0]" />
- </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'
- import ProxySetting from '../components/ProxySetting'
- export default {
- name: 'UpdateProxySettingDialog',
- components: {
- ProxySetting,
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- formItemLayout: {
- wrapperCol: {
- span: 21,
- },
- labelCol: {
- span: 3,
- },
- },
- }
- },
- methods: {
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- values.proxy_setting = values.proxy_setting || 'DIRECT'
- const ids = this.params.data.map(item => item.id)
- if (ids.length > 1) {
- await this.params.onManager('batchUpdate', {
- ids,
- managerArgs: {
- data: values,
- },
- })
- } else {
- await this.params.onManager('update', {
- id: ids[0],
- managerArgs: {
- data: values,
- },
- })
- }
- this.cancelDialog()
- } catch (error) {
- throw error
- } finally {
- this.loading = false
- }
- },
- },
- }
- </script>
|