BUG 28507

This commit is contained in:
aixianling
2022-03-23 15:20:33 +08:00
parent d87172a6c7
commit 1853839c81

View File

@@ -1,6 +1,5 @@
<template> <template>
<section class="home"> <section class="home">
<div class="page">
<div class="item" v-for="(item, index) in classList" :key="index" @click.stop="toDetail(item.id)"> <div class="item" v-for="(item, index) in classList" :key="index" @click.stop="toDetail(item.id)">
<img :src="item.thumbUrl[0].url" alt="" class="banner-img"> <img :src="item.thumbUrl[0].url" alt="" class="banner-img">
<img src="https://cdn.cunwuyun.cn/dvcp/pay-btn.png" alt="" class="play-img"> <img src="https://cdn.cunwuyun.cn/dvcp/pay-btn.png" alt="" class="play-img">
@@ -8,7 +7,6 @@
<div>{{ item.organizationName }} {{ item.createDate }}</div> <div>{{ item.organizationName }} {{ item.createDate }}</div>
</div> </div>
<AiEmpty v-if="classList.length == 0"/> <AiEmpty v-if="classList.length == 0"/>
</div>
</section> </section>
</template> </template>
<script> <script>
@@ -62,12 +60,8 @@ export default {
@import "~dvcp-wui/common"; @import "~dvcp-wui/common";
.home { .home {
width: 100%; width: 100vw;
height: 100%; min-height: 100vh;
}
.page {
width: 100%;
overflow-x: hidden; overflow-x: hidden;
background-color: #fff; background-color: #fff;