|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="big-screen-list-wrap">
|
|
|
|
|
<div class="internal-box">
|
|
|
|
|
<div class="top-search-wrap">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="searchKey"
|
|
|
|
@ -157,6 +158,8 @@
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 新增或编辑弹窗 -->
|
|
|
|
|
<EditForm
|
|
|
|
|
ref="EditForm"
|
|
|
|
@ -327,14 +330,17 @@ export default {
|
|
|
|
|
@import '../assets/style/bsTheme.scss';
|
|
|
|
|
.big-screen-list-wrap {
|
|
|
|
|
position: relative;
|
|
|
|
|
height: 100%;
|
|
|
|
|
height: calc(100%);
|
|
|
|
|
// height: calc(100% - 16px);
|
|
|
|
|
padding: 16px;
|
|
|
|
|
// padding: 16px;
|
|
|
|
|
color: #9ea9b2;
|
|
|
|
|
// margin:0 16px;
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
background-color: var(--bs-background-2) !important;
|
|
|
|
|
|
|
|
|
|
.internal-box{
|
|
|
|
|
height: calc(100% - 32px);
|
|
|
|
|
padding: 16px;
|
|
|
|
|
}
|
|
|
|
|
.top-search-wrap {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
@ -360,14 +366,15 @@ export default {
|
|
|
|
|
.list-wrap {
|
|
|
|
|
/* display: grid; */
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
// 间隙自适应
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
// max-height: calc(100vh - 304px);
|
|
|
|
|
height: calc(100% - 96px);
|
|
|
|
|
max-height: calc(100% - 90px);
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
|
|
|
grid-gap: 15px;
|
|
|
|
|
|
|
|
|
|
padding-bottom: 10px;
|
|
|
|
|
// /deep/ .el-loading-mask {
|
|
|
|
|
// display: flex;
|
|
|
|
|
// align-items: center;
|
|
|
|
|