2022年5月29日从svn移到git

This commit is contained in:
daihh
2022-05-29 18:56:34 +08:00
commit b050613020
488 changed files with 68444 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<template>
<div class="pre-view">
<div class="courseware-title">{{fileUrl.name}}</div>
<div class="courseware-icon">
<img v-if="fileUrl.fileType === '.jpg' || fileUrl.fileType === '.png'" :src="baseUrl + fileUrl.filePath" height="421" width="700" />
<video v-if="fileUrl.fileType === '.vae'" :src="baseUrl + fileUrl.filePath"></video>
</div>
</div>
</template>
<script >
export default {
props:{
data:{
type: Object,
}
},
data() {
return {
};
},
created(){
}
};
</script>
<style scoped lang="scss">
</style>