| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <template>
- <page-list
- :list="list"
- :columns="columns"
- :group-actions="groupActions"
- :single-actions="singleActions"
- :export-data-options="exportDataOptions"
- :expand-config="{ lazy: true, loadMethod: loadPolicy }" />
- </template>
- <script>
- import * as R from 'ramda'
- import { getNameFilter, getBrandFilter, getDescriptionFilter, getCreatedAtFilter, getDistinctFieldFilter } from '@/utils/common/tableFilter'
- import WindowsMixin from '@/mixins/windows'
- import ListMixin from '@/mixins/list'
- import expectStatus from '@/constants/expectStatus'
- import ColumnsMixin from '../mixins/columns'
- import SingleActionsMixin from '../mixins/singleActions'
- export default {
- name: 'CloudaccountList',
- mixins: [WindowsMixin, ListMixin, ColumnsMixin, SingleActionsMixin],
- props: {
- id: String,
- getParams: {
- type: Object,
- default: () => ({}),
- },
- cloudaccount: {
- type: Object,
- default: () => ({}),
- },
- },
- data () {
- const filterOptions = {
- name: getNameFilter(),
- description: getDescriptionFilter(),
- provider: getBrandFilter('cloud_id_brands'),
- cloudaccount: getDistinctFieldFilter({
- field: 'account',
- type: 'extra_field',
- label: this.$t('common.text00108'),
- }),
- manager_id: getDistinctFieldFilter({
- field: 'manager',
- type: 'extra_field',
- label: this.$t('common_624', [this.$t('dictionary.cloudprovider')]),
- multiple: false,
- }),
- created_at: getCreatedAtFilter(),
- }
- if (this.inBaseSidePage) {
- delete filterOptions.cloudaccount
- }
- return {
- list: this.$list.createList(this, {
- id: this.id,
- resource: 'cloudgroups',
- apiVersion: 'v1',
- getParams: this.getParam,
- steadyStatus: Object.values(expectStatus.cloudgroup).flat(),
- filterOptions,
- hiddenColumns: ['created_at'],
- }),
- groupActions: [
- {
- label: this.$t('common.create'),
- permission: 'cloudgroup_create',
- action: () => {
- this.createDialog('CloudgroupCreateDialog', {
- onManager: this.onManager,
- provider: this.cloudaccount.provider,
- cloudaccount: this.cloudaccount || {},
- })
- },
- meta: () => {
- return {
- buttonType: 'primary',
- }
- },
- },
- {
- label: this.$t('common.delete'),
- permission: 'cloudgroup_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('cloudenv.cloudgroup_delete_tip'),
- name: this.$t('dictionary.cloudgroup'),
- onManager: this.onManager,
- })
- },
- meta: () => this.$getDeleteResult(this.list.selectedItems),
- },
- ],
- }
- },
- computed: {
- exportDataOptions () {
- return {
- title: this.$t('cloudenv.text_491'),
- downloadType: 'local',
- items: [
- { field: 'id', title: 'ID' },
- ...this.columns,
- { field: 'manager', title: this.$t('common_624', [this.$t('dictionary.cloudprovider')]) },
- ],
- }
- },
- },
- created () {
- this.initSidePageTab('cloudgroup-detail')
- this.list.fetchData()
- this.$bus.$on('CloudgroupListSingleRefresh', (...arg) => {
- this.list.singleRefresh(...arg)
- }, false)
- },
- methods: {
- getParam () {
- const ret = {
- ...(R.is(Function, this.getParams) ? this.getParams() : this.getParams),
- }
- return ret
- },
- },
- }
- </script>
|