调整组件

This commit is contained in:
aixianling
2022-03-02 09:48:51 +08:00
parent 7392b320e6
commit b9152917ce

View File

@@ -16,20 +16,17 @@
<!-- </div>-->
<div class="files" v-if="detail.contentType==1 && detail.files && detail.files.length">
<video class="file-img" :src="file.url" v-for="(file,index) in detail.files" :key="index"></video>
<video class="file-img" :src="file.url" v-for="(file,index) in detail.files" :key="index"/>
</div>
<div v-if="comment" class="comments">
</div>
<div v-if="comment" class="comments"/>
</section>
</template>
<script>
import AiImage from "../../components/AiImage/AiImage";
import AiTopFixed from "../../components/AiTopFixed/AiTopFixed";
export default {
name: "AiDetail",
components: {AiImage, AiTopFixed},
props: {
title: {default: ""},
detail: {default: () => ({})},