| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{params.title}}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.elasticcaches')" :count="params.data.length" :action="params.title" />
- <dialog-table :data="params.data" :columns="params.columns.slice(0, 3)" />
- <a-form :form="form.fc" class="mt-5">
- <a-form-item :label="$t('db.text_284')" v-bind="formItemLayout">
- <a-radio-group v-decorator="decorators.account_privilege">
- <a-radio v-for="k in Object.keys(privileges)" :key="k" :value="k">
- {{privileges[k]}}
- </a-radio>
- </a-radio-group>
- </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 { ACCOUNT_PRIVILEGES } from '../constants'
- import { CreateServerForm } from '@Compute/constants'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'RedisAccountListSetPrivilegeDialog',
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- form: {
- fc: this.$form.createForm(this),
- },
- formItemLayout: {
- wrapperCol: { span: CreateServerForm.wrapperCol },
- labelCol: { span: CreateServerForm.labelCol },
- },
- }
- },
- computed: {
- privileges () {
- const ret = ACCOUNT_PRIVILEGES
- if (this.params.redisItem.brand === 'Qcloud') {
- delete ret.repl
- }
- return ret
- },
- decorators () {
- const { initialValues = {} } = this.params
- const decorators = {
- account_privilege: [
- 'account_privilege',
- {
- initialValue: initialValues.account_privilege,
- },
- ],
- }
- return decorators
- },
- },
- methods: {
- async handleConfirm () {
- this.loading = true
- try {
- const params = {
- account_privilege: this.form.fc.getFieldValue('account_privilege'),
- elasticcache: this.params.redisItem.id,
- }
- await this.params.list.onManager('performAction', {
- id: this.params.data[0].id,
- steadyStatus: this.params.steadyStatus,
- managerArgs: {
- action: 'reset-password',
- data: params,
- },
- })
- this.loading = false
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- }
- },
- },
- }
- </script>
|