From e26d6529770e4b9b0a0991c313843812580f6912 Mon Sep 17 00:00:00 2001 From: "wu.jian2" <distantmtn@gmail.com> Date: Mon, 9 Oct 2023 17:47:43 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E5=AD=98=E5=82=A8=E8=BF=87=E7=A8=8B?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=9B=86=E4=BF=AE=E5=A4=8D=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E9=A2=84=E8=A7=88=E6=B2=A1=E6=9C=89x=E8=BD=B4=E6=BB=9A?= =?UTF-8?q?=E5=8A=A8=E6=9D=A1=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DataSetManagement/src/StoredProcedureEditForm.vue | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/data-room-ui/packages/DataSetManagement/src/StoredProcedureEditForm.vue b/data-room-ui/packages/DataSetManagement/src/StoredProcedureEditForm.vue index cc1fb352..ced98d00 100644 --- a/data-room-ui/packages/DataSetManagement/src/StoredProcedureEditForm.vue +++ b/data-room-ui/packages/DataSetManagement/src/StoredProcedureEditForm.vue @@ -310,27 +310,28 @@ <div class="result-view"> 数据预览 </div> - <div class="bs-table-box is-Edit bs-scrollbar"> + <div class="bs-table-box is-Edit"> <el-table align="center" :data="dataPreviewList" - max-height="400" - class="bs-el-table bs-scrollbar" + max-height="100%" + class="bs-el-table" > + <!-- 第一个表格列固定 --> <el-table-column v-for="(value, key) in dataPreviewList[0] ? dataPreviewList[0] : noDataTableDisplayFields" :key="key" :label="key" + :fixed="left" align="center" show-overflow-tooltip - :render-header="renderHeader" > <template slot-scope="scope"> <span>{{ scope.row[key] }}</span> </template> </el-table-column> </el-table> - <div style="padding: 12px 0 0;color:var(--bs-el-text)"> + <div style="margin: 8px 0;color:var(--bs-el-text)"> <span v-show="dataPreviewList.length">数据预览中,存储过程仅展示20条数据</span> </div> </div>