mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
UI: Add offer ha column to system offerings table (#10297)
* add offer ha column to system offerings table * fix identation
This commit is contained in:
parent
50a54dde5c
commit
5aa79a6e05
@ -250,6 +250,9 @@
|
|||||||
<template v-if="column.key === 'quotastate'">
|
<template v-if="column.key === 'quotastate'">
|
||||||
<status :text="text ? text : ''" displayText />
|
<status :text="text ? text : ''" displayText />
|
||||||
</template>
|
</template>
|
||||||
|
<template v-if="column.key === 'offerha'">
|
||||||
|
{{ text ? $t('state.enabled') : $t('state.disabled')}}
|
||||||
|
</template>
|
||||||
<template v-if="column.key === 'vlan'">
|
<template v-if="column.key === 'vlan'">
|
||||||
<a href="javascript:;">
|
<a href="javascript:;">
|
||||||
<router-link v-if="$route.path === '/guestvlans'" :to="{ path: '/guestvlans/' + record.id }">{{ text }}</router-link>
|
<router-link v-if="$route.path === '/guestvlans'" :to="{ path: '/guestvlans/' + record.id }">{{ text }}</router-link>
|
||||||
|
|||||||
@ -142,7 +142,7 @@ export default {
|
|||||||
permission: ['listServiceOfferings', 'listInfrastructure'],
|
permission: ['listServiceOfferings', 'listInfrastructure'],
|
||||||
searchFilters: ['name', 'zoneid', 'domainid', 'cpunumber', 'cpuspeed', 'memory'],
|
searchFilters: ['name', 'zoneid', 'domainid', 'cpunumber', 'cpuspeed', 'memory'],
|
||||||
params: { issystem: 'true', isrecursive: 'true' },
|
params: { issystem: 'true', isrecursive: 'true' },
|
||||||
columns: ['name', 'state', 'systemvmtype', 'cpunumber', 'cpuspeed', 'memory', 'storagetype', 'order'],
|
columns: ['name', 'state', 'systemvmtype', 'cpunumber', 'cpuspeed', 'memory', 'storagetype', 'offerha', 'order'],
|
||||||
filters: ['active', 'inactive'],
|
filters: ['active', 'inactive'],
|
||||||
details: ['name', 'id', 'displaytext', 'systemvmtype', 'provisioningtype', 'storagetype', 'iscustomized', 'limitcpuuse', 'cpunumber', 'cpuspeed', 'memory', 'storagetags', 'hosttags', 'tags', 'domain', 'zone', 'created', 'dynamicscalingenabled', 'diskofferingstrictness'],
|
details: ['name', 'id', 'displaytext', 'systemvmtype', 'provisioningtype', 'storagetype', 'iscustomized', 'limitcpuuse', 'cpunumber', 'cpuspeed', 'memory', 'storagetags', 'hosttags', 'tags', 'domain', 'zone', 'created', 'dynamicscalingenabled', 'diskofferingstrictness'],
|
||||||
resourceType: 'ServiceOffering',
|
resourceType: 'ServiceOffering',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user