style: 修改计划任务报告页面样式 (#3772)

This commit is contained in:
ssongliu 2024-02-01 14:29:40 +08:00 committed by GitHub
parent a4cfb587d6
commit 948653213e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,7 +86,7 @@
<template #main> <template #main>
<div class="mainClass"> <div class="mainClass">
<el-row :gutter="20" v-show="hasRecords" class="mainRowClass"> <el-row :gutter="20" v-show="hasRecords" class="mainRowClass">
<el-col :span="6"> <el-col :span="7">
<div class="infinite-list" style="overflow: auto"> <div class="infinite-list" style="overflow: auto">
<el-table <el-table
style="cursor: pointer" style="cursor: pointer"
@ -120,7 +120,7 @@
:current-page="searchInfo.page" :current-page="searchInfo.page"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
@size-change="handleSizeChange" @size-change="handleSizeChange"
:pager-count="5" :pager-count="3"
:page-sizes="[6, 8, 10, 12, 14]" :page-sizes="[6, 8, 10, 12, 14]"
small small
layout="total, sizes, prev, pager, next" layout="total, sizes, prev, pager, next"
@ -128,7 +128,7 @@
/> />
</div> </div>
</el-col> </el-col>
<el-col :span="18"> <el-col :span="17">
<el-form label-position="top" :v-key="refresh"> <el-form label-position="top" :v-key="refresh">
<el-row type="flex" justify="center"> <el-row type="flex" justify="center">
<el-form-item class="descriptionWide"> <el-form-item class="descriptionWide">
@ -495,12 +495,12 @@ defineExpose({
float: right; float: right;
} }
@media only screen and (max-width: 1000px) { @media only screen and (max-width: 1400px) {
.mainClass { .mainClass {
overflow: auto; overflow: auto;
} }
.mainRowClass { .mainRowClass {
min-width: 900px; min-width: 1200px;
} }
} }
</style> </style>