| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <detail
- :showDesc="false"
- :showName="false"
- :hiddenKeys="['project_domain', 'tenant', 'created_at', 'updated_at']"
- :onManager="onManager"
- :data="data"
- :base-info="baseInfo"
- :extra-info="extraInfo" />
- </template>
- <script>
- import DataView from '@K8S/sections/DataView'
- import { k8sStatusColumn } from '@K8S/utils/tableColumns'
- export default {
- name: 'K8sConfigmapDetail',
- props: {
- data: {
- type: Object,
- required: true,
- },
- onManager: {
- type: Function,
- required: true,
- },
- },
- data () {
- return {
- baseInfo: [
- {
- field: 'name',
- title: this.$t('k8s.text_41'),
- slots: {
- default: ({ row }) => {
- return [
- <div class='text-truncate'>
- <list-body-cell-wrap copy row={ this.data } onManager={ this.onManager } field='name' title={ row.name } />
- </div>,
- ]
- },
- },
- },
- k8sStatusColumn(),
- {
- field: 'cluster',
- title: this.$t('k8s.text_19'),
- },
- {
- field: 'namespace',
- title: this.$t('k8s.text_23'),
- },
- {
- field: 'creationTimestamp',
- title: this.$t('k8s.text_74'),
- formatter: ({ row }) => {
- return (row.creationTimestamp && this.$moment(row.creationTimestamp).format()) || '-'
- },
- },
- ],
- extraInfo: [
- {
- title: this.$t('k8s.text_216'),
- field: 'data',
- slots: {
- default: ({ row }, h) => {
- return h(DataView, {
- props: {
- onManager: this.onManager,
- data: row,
- },
- })
- },
- },
- },
- ],
- }
- },
- }
- </script>
|