| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <div>
- <a-tabs default-active-key="res-sync" @change="handleTabChange">
- <a-tab-pane v-for="item in tabs" :key="item.key" :tab="item.label" />
- </a-tabs>
- <div class="mt-2">
- <keep-alive>
- <component
- :is="currentTab"
- :id="id"
- :resId="resId"
- :data="data"
- :getParams="getParams"
- :accountData="data" />
- </keep-alive>
- </div>
- </div>
- </template>
- <script>
- import ResSync from './ResSync'
- import BillTask from '@Cloudenv/views/billtasks/components/List'
- import WindowsMixin from '@/mixins/windows'
- import ListMixin from '@/mixins/list'
- import { hasMeterService } from '@/utils/auth'
- export default {
- name: 'ScheduledtasksListForCloudaccountSidepage',
- components: {
- ResSync,
- BillTask,
- },
- mixins: [WindowsMixin, ListMixin],
- props: {
- id: String,
- resId: String,
- data: Object,
- getParams: [Function, Object],
- },
- data () {
- return {
- currentTab: 'res-sync',
- }
- },
- computed: {
- tabs () {
- const tabs = [
- { key: 'res-sync', label: this.$t('cloudenv.res_sync') },
- ]
- if (hasMeterService()) {
- tabs.push({ key: 'bill-task', label: this.$t('cloudenv.bill_tasks') })
- }
- return tabs
- },
- },
- methods: {
- handleTabChange (tab) {
- this.currentTab = tab
- },
- },
- }
- </script>
|