perf: Review所有演示页,修复开发环境下可避免的警告以及保持所有演示页风格大致统一

This commit is contained in:
xiaoxian521
2024-01-14 12:22:05 +08:00
parent 3873699370
commit c48291130c
14 changed files with 74 additions and 60 deletions

View File

@@ -92,7 +92,7 @@ onMounted(() => {
</script>
<template>
<el-scrollbar height="87vh" class="content">
<el-scrollbar max-height="calc(100vh - 90px)" class="content">
<Waterfall :list="list" v-bind="options">
<template #item="{ item, url, index }">
<div
@@ -149,3 +149,13 @@ onMounted(() => {
<InfiniteLoading :firstload="false" @infinite="handleLoadMore" />
</el-scrollbar>
</template>
<style lang="scss" scoped>
.main-content {
margin: 0 !important;
}
:deep(.el-loading-spinner .el-loading-text) {
font-size: 24px;
}
</style>