| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{ $t('cloudenv.clouduser_list_a2') }}</div>
- <div slot="body">
- <dialog-selected-tips :name="$t('dictionary.clouduser')" :count="params.data.length" :action="$t('cloudenv.clouduser_list_a2')" />
- <dialog-table class="mb-2" :data="params.data" :columns="columns" />
- <a-form
- :form="form.fc"
- v-bind="formItemLayout">
- <a-form-item :label="$t('cloudenv.clouduser_list_t4')">
- <template v-if="userLoading">
- <a-spin />
- </template>
- <template v-else>
- <user-select
- v-decorator="decorators.user_id"
- :project.sync="form.fi.project"
- :cloudaccount-id="params.cloudaccount.id"
- :default-domain-id="userInfo.projectDomainId"
- :default-user-id="userInfo.id"
- :default-project-id="userInfo.projectId"
- :cloudprovider-id="params.data[0].cloudprovider_id" />
- </template>
- </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 { mapGetters } from 'vuex'
- import UserSelect from '../components/UserSelect'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'ClouduserChangeOwnerDialog',
- components: {
- UserSelect,
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- userLoading: false,
- form: {
- fc: this.$form.createForm(this),
- fi: {
- project: {},
- },
- },
- decorators: {
- user_id: [
- 'user_id',
- {
- rules: [
- { required: false, message: this.$t('common.select') },
- ],
- },
- ],
- },
- formItemLayout: {
- wrapperCol: {
- span: 20,
- },
- labelCol: {
- span: 4,
- },
- },
- }
- },
- computed: {
- ...mapGetters(['userInfo']),
- columns () {
- const columns = this.params.columns.filter(item => {
- return ['name', 'status', 'owner_name'].indexOf(item.field) !== -1
- })
- return columns
- },
- },
- destroyed () {
- this.um = null
- },
- created () {
- this.um = new this.$Manager('users', 'v1')
- },
- methods: {
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.form.fc.validateFields()
- values.project_id = this.form.fi.project.id
- await this.params.onManager('performAction', {
- id: this.params.data[0].id,
- steadyStatus: 'available',
- managerArgs: {
- action: 'change-owner',
- data: values,
- },
- })
- this.cancelDialog()
- } finally {
- this.loading = false
- }
- },
- },
- }
- </script>
|