|
@@ -22,7 +22,7 @@
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="down">
|
|
|
- <footinfo :topInfo="topInfo"></footinfo>
|
|
|
+ <footinfo :topInfo="topInfo"></footinfo>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
@@ -37,9 +37,9 @@ import footinfo from '../../layout/index/foot.vue';
|
|
|
export default {
|
|
|
name: 'list',
|
|
|
props: {
|
|
|
- topInfos:null,
|
|
|
- topInfo:null,
|
|
|
- mainRightList:null,
|
|
|
+ topInfos: null,
|
|
|
+ topInfo: null,
|
|
|
+ mainRightList: null,
|
|
|
total: null,
|
|
|
},
|
|
|
components: {
|
|
@@ -65,27 +65,29 @@ export default {
|
|
|
height: 150px;
|
|
|
}
|
|
|
.menu {
|
|
|
- margin-bottom: 20px;
|
|
|
- height: 40px;
|
|
|
+ height: 60px;
|
|
|
}
|
|
|
.main {
|
|
|
min-height: 500px;
|
|
|
- margin-bottom: 20px;
|
|
|
+ margin: 20px 0;
|
|
|
}
|
|
|
.main .mainLeft {
|
|
|
min-height: 500px;
|
|
|
- border: 1px solid #ccc;
|
|
|
+ background-color: rgba(255, 255, 255, 0.8);
|
|
|
+ box-shadow: 0 0 5px #ccc;
|
|
|
+ border-radius: 5px;
|
|
|
}
|
|
|
.main .mainRight {
|
|
|
padding: 20px;
|
|
|
float: right;
|
|
|
width: 880px;
|
|
|
min-height: 500px;
|
|
|
- border: 1px solid #ccc;
|
|
|
+ background-color: rgba(255, 255, 255, 0.8);
|
|
|
+ box-shadow: 0 0 5px #ccc;
|
|
|
+ border-radius: 5px;
|
|
|
}
|
|
|
.down {
|
|
|
min-height: 100px;
|
|
|
- border: 1px solid #ccc;
|
|
|
}
|
|
|
</style>
|
|
|
|