|
|
@@ -28,13 +28,8 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <pagination
|
|
|
- v-show="fileTotal > 0"
|
|
|
- :total="fileTotal"
|
|
|
- v-model:page="dialogQueryParams.pageNum"
|
|
|
- v-model:limit="dialogQueryParams.pageSize"
|
|
|
- @pagination="getFileList"
|
|
|
- />
|
|
|
+ <pagination v-show="fileTotal > 0" :total="fileTotal" v-model:page="dialogQueryParams.pageNum"
|
|
|
+ v-model:limit="dialogQueryParams.pageSize" @pagination="getFileList" />
|
|
|
</div>
|
|
|
<!-- 右侧内容 -->
|
|
|
<div class="w-1/3 p-2">
|
|
|
@@ -258,8 +253,10 @@ onMounted(() => {
|
|
|
</script>
|
|
|
<style scoped>
|
|
|
.table-container {
|
|
|
- height: 900px; /* 设置固定高度,根据需要调整 */
|
|
|
- overflow-y: auto; /* 当内容超出时显示滚动条 */
|
|
|
+ height: 900px;
|
|
|
+ /* 设置固定高度,根据需要调整 */
|
|
|
+ overflow-y: auto;
|
|
|
+ /* 当内容超出时显示滚动条 */
|
|
|
}
|
|
|
|
|
|
.button-container {
|
|
|
@@ -270,7 +267,9 @@ onMounted(() => {
|
|
|
left: 0;
|
|
|
right: 0;
|
|
|
padding: 10px 0;
|
|
|
- background-color: white; /* 可选:根据需要设置背景色 */
|
|
|
- box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* 可选:添加阴影效果 */
|
|
|
+ background-color: white;
|
|
|
+ /* 可选:根据需要设置背景色 */
|
|
|
+ box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
|
+ /* 可选:添加阴影效果 */
|
|
|
}
|
|
|
</style>
|