| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <template>
- <div class="create-server-result-wrap">
- <page-footer>
- <template class="content" v-slot:left>
- <div
- v-for="(tip, idx) of tips"
- :key="idx"
- class="d-flex flex-column justify-content-center flex-grow-1">
- <div
- v-for="obj of tip"
- :key="obj.label"
- class="d-flex align-items-center">
- <span class="label" :class="obj.labelClass">{{ obj.label }}:</span>
- <template v-if="obj.value">
- <span class="value text-truncate" :class="obj.valueClass">{{ obj.value }}</span>
- </template>
- <template v-else>
- <span class="value placeholder text-truncate" :class="obj.valueClass">------</span>
- </template>
- </div>
- </div>
- </template>
- <template v-slot:right>
- <div class="d-flex align-items-center">
- <a-button
- type="primary"
- native-type="submit"
- html-type="submit"
- :loading="loading"
- :disabled="!!errors.length">{{ isOpenWorkflow && !isInstallOperationSystem ? (isInitForm ? $t('common.modify_workflow') : $t('compute.text_288')) : $t('compute.text_289') }}</a-button>
- <a-button class="ml-3" @click="handleCancel">{{$t('common.cancel')}}</a-button>
- </div>
- <side-errors :error-title="$t('compute.text_290')" :errors="errors" @update:errors="changeErrors" />
- </template>
- </page-footer>
- </div>
- </template>
- <script>
- import * as R from 'ramda'
- import { RESOURCE_TYPES_MAP, SERVER_TYPE, BILL_TYPES_MAP } from '@Compute/constants'
- import { sizestrWithUnit } from '@/utils/utils'
- // import { HYPERVISORS_MAP, PROVIDER_MAP } from '@/constants'
- import SideErrors from '@/sections/SideErrors'
- import { currencyUnitMap } from '@/constants/currency'
- export default {
- name: 'BottomBar',
- components: {
- SideErrors,
- },
- props: {
- loading: {
- type: Boolean,
- default: false,
- },
- form: {
- type: Object,
- required: true,
- },
- selectedSpecItem: {
- type: Object,
- required: true,
- },
- errors: {
- type: Object,
- required: true,
- },
- type: {
- type: String,
- required: true,
- },
- resourceType: { // 资源池类型
- type: String,
- },
- dataDiskSizes: { // 数据盘磁盘大小之和
- type: Array,
- default: () => [],
- },
- isOpenWorkflow: {
- type: Boolean,
- default: false,
- },
- isServertemplate: {
- type: Boolean,
- default: false,
- },
- hasMeterService: {
- type: Boolean,
- default: true,
- },
- isInitForm: {
- type: Boolean,
- default: false,
- },
- },
- data () {
- return {
- pricesList: [],
- fd: this.form.fc.getFieldsValue(),
- }
- },
- computed: {
- fi () {
- return this.form.fi
- },
- isPublic () {
- return this.type === SERVER_TYPE.public
- },
- // 是否为预付费资源池
- isPrepaid () {
- return this.resourceType === RESOURCE_TYPES_MAP.prepaid.key
- },
- // 是否为包年包月
- isPackage () {
- return this.fd.billType === BILL_TYPES_MAP.package.key
- },
- name () {
- return this.fd.name
- },
- zone () {
- let ret = this.fd.zone ? this.fd.zone.label : ''
- if (this.isPublic && !this.isPrepaid) {
- ret = this.fd.sku ? this.fd.sku.zone : ''
- }
- return ret
- },
- vmType () {
- let ret = this.$t('compute.text_291', [this.$t('dictionary.server')])
- if (this.fd.gpuEnable) {
- ret = `GPU${this.$t('dictionary.server')}`
- }
- return ret
- },
- disk () {
- const diskValueArr = [this.fd.systemDiskSize]
- R.forEachObjIndexed(value => {
- diskValueArr.push(value)
- }, this.fd.dataDiskSizes)
- return diskValueArr.reduce((prevDisk, diskValue) => prevDisk + diskValue, 0)
- },
- config () {
- const ret = []
- const { cpu = 0, mem = '0M' } = this.selectedSpecItem
- ret.push(this.$t('compute.text_292', [cpu]))
- ret.push(this.$t('compute.text_293', [sizestrWithUnit(mem.substr(0, mem.length - 1), 'M', 1024)]))
- return ret.join('、')
- },
- image () {
- return this.fd.image.label
- },
- tips () {
- const ret = [
- [
- { label: this.$t('compute.text_228'), labelClass: 'label-w-50', value: this.name, valueClass: 'name-value' },
- { label: this.$t('compute.text_294'), labelClass: 'label-w-50', value: this.fd.count },
- ],
- [
- { label: this.$t('compute.text_177'), labelClass: 'label-w-50', value: this.zone },
- { label: this.$t('compute.text_175'), labelClass: 'label-w-50', value: this.vmType },
- ],
- [
- { label: this.$t('compute.text_295'), labelClass: 'label-w-80', value: this.config },
- { label: this.$t('compute.text_267'), labelClass: 'label-w-80', value: this.image },
- ],
- ]
- return ret
- },
- isInstallOperationSystem () { // 是否是安装操作系统
- if (this.$route.query.host_id) {
- return true
- }
- return false
- },
- },
- created () {
- this.$bus.$on('updateForm', (values) => {
- this.fd = {
- ...this.fd,
- ...values,
- }
- }, this)
- },
- methods: {
- changeErrors (errors) {
- this.$emit('update:errors', [])
- },
- formatToPrice (val) {
- let ret = `${currencyUnitMap.CNY.sign} ${val.toFixed(2)}`
- if (this.isPackage) {
- return ret
- }
- ret += this.$t('compute.text_296')
- return ret
- },
- handleCancel () {
- this.$emit('cancel')
- },
- },
- }
- </script>
- <style lang="less" scoped>
- @import '../../../../../src/styles/less/theme';
- .create-server-result-wrap {
- position: relative;
- font-size: 12px;
- .content {
- width: 80%;
- .label {
- color: #999;
- &.label-w-50 {
- width: 50px;
- }
- &.label-w-80 {
- width: 80px;
- }
- }
- .value {
- max-width: 300px;
- &.name-value {
- width: 100px;
- }
- &.placeholder {
- color: #888;
- font-style: italic;
- }
- }
- }
- .prices {
- .hour {
- color: @error-color;
- font-size: 24px;
- }
- .tips {
- color: #999;
- font-size: 12px;
- }
- }
- .btns-wrapper {
- position: absolute;
- right: 20px;
- }
- }
- </style>
|