Skip to content

Commit

Permalink
fix(frontend): 单据前端交互问题 #8656
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 27233
  • Loading branch information
hLinx committed Dec 19, 2024
1 parent 784c639 commit d15c20d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@
data: ParameterConfigItem;
index: number;
};

defineOptions({
name: 'ParameterTable',
});
</script>

<script setup lang="tsx">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@
.info-value {
color: @title-color;
flex: 0 1 100%;
}
}
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
</InfoItem>
<InfoItem
:label="t('集群部署方案')"
style="width: 100%">
style="flex: 1 0 100%">
<BkTable :data="[ticketDetails.details.resource_spec.backend_group.spec_info]">
<BkTableColumn
field="spec_name"
Expand All @@ -122,18 +122,6 @@
<BkTableColumn
field="cluster_capacity"
:label="t('集群容量G')" />
<BkTableColumn
field="cluster_capacity"
:label="t('集群容量G')">
<template
#default="{
data,
}: {
data: Props['ticketDetails']['details']['resource_spec']['backend_group']['spec_info'];
}">
{{ data.qps.min * data.machine_pair || '--' }}
</template>
</BkTableColumn>
</BkTable>
</InfoItem>
</template>
Expand Down

0 comments on commit d15c20d

Please sign in to comment.