| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <div>
- <page-header :title="title" :current-tab.sync="createCloudEnv" :tabs="cloudEnvOptions" />
- <component :is="createCloudEnv" :cloudEnv="createCloudEnv" :initFormData="initFormData" :isInitForm="isInitForm" />
- </div>
- </template>
- <script>
- import workflowMixin from '@/mixins/workflow'
- import WindowsMixin from '@/mixins/windows'
- import { getCloudEnvOptions } from '@/utils/common/hypervisor'
- import Onpremise from './IDC'
- import Private from './Private'
- export default {
- name: 'BaremetalCreateIndex',
- components: {
- Onpremise,
- Private,
- },
- mixins: [WindowsMixin, workflowMixin],
- props: {
- cloudEnv: {
- type: String,
- default: 'onpremise',
- },
- },
- data () {
- const paramsData = this.$route.params?.data || {}
- return {
- createCloudEnv: this.$route.query.cloud_env || this.$route.query.type || 'onpremise',
- initFormData: paramsData,
- }
- },
- computed: {
- cloudEnvOptions: () => {
- return getCloudEnvOptions('compute_engine_brands').filter(val => ['onpremise', 'private'].includes(val.key))
- },
- isInitForm () {
- return !!this.initFormData?.extraData?.formType && this.$route.query.workflow
- },
- title () {
- return this.isInstallOperationSystem ? this.$t('compute.text_298') : (this.isInitForm ? this.$t('compute.text_299') + `(${this.$t('common.modify_workflow')})` : this.$t('compute.text_299'))
- },
- },
- watch: {
- cloudEnv (val) {
- if (!val) {
- this.createCloudEnv = 'onpremise'
- } else {
- this.createCloudEnv = val
- }
- },
- },
- created () {
- },
- methods: {
- },
- }
- </script>
|