|
|
@@ -230,7 +230,7 @@
|
|
|
<el-dialog :title="useDialog.title" v-model="useDialog.visible" width="1000px" append-to-body
|
|
|
:style="{ height: '700px' }">
|
|
|
<el-card shadow="never">
|
|
|
- <div class="table-content">
|
|
|
+ <div class="table-content" style="min-height: 525px">
|
|
|
<el-table v-loading="loading" :data="itemRecordList">
|
|
|
<el-table-column label="名称" align="left" prop="itemName" />
|
|
|
<el-table-column label="类型" align="center" prop="itemType" width="100">
|
|
|
@@ -536,3 +536,9 @@ onMounted(() => {
|
|
|
getFileStatistics();
|
|
|
});
|
|
|
</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+:deep(.el-card__body) {
|
|
|
+ padding: 10px !important;
|
|
|
+}
|
|
|
+</style>
|