|
@@ -5,9 +5,10 @@
|
|
v-model="dialogVisible"
|
|
v-model="dialogVisible"
|
|
title="参数信息"
|
|
title="参数信息"
|
|
widths="60%"
|
|
widths="60%"
|
|
|
|
+ :footer="false"
|
|
@close="closeParamDialog"
|
|
@close="closeParamDialog"
|
|
>
|
|
>
|
|
- <div>
|
|
|
|
|
|
+ <div class="param-detail-container">
|
|
<div class="sub-title">{{ props.params.paramName }}</div>
|
|
<div class="sub-title">{{ props.params.paramName }}</div>
|
|
<!-- 搜索栏 -->
|
|
<!-- 搜索栏 -->
|
|
<div class="search-container">
|
|
<div class="search-container">
|
|
@@ -537,4 +538,22 @@ defineExpose({
|
|
.mg-l-10 {
|
|
.mg-l-10 {
|
|
margin-left: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
|
|
+.param-detail-container {
|
|
|
|
+ height: calc(100vh - 200px);
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+
|
|
|
|
+ .sub-title {
|
|
|
|
+ margin-bottom: 15px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .search-container {
|
|
|
|
+ margin-bottom: 15px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .hc-table {
|
|
|
|
+ flex: 1;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|