Skip to content
  • This project
    • Loading...
  • Sign in

bdc / bdcdj-web

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bdcdj-web
  • src
  • views
  • zhcx
  • zslqcx
  • components
  • zslr.vue
  • renchao@pashanhoo.com's avatar
    style:证书领取查询 · f9400ecb
    f9400ecb
    renchao@pashanhoo.com committed 2023-04-19 09:33:49 +0800
zslr.vue 326 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-04-19 09:29:54
-->
<template>
  <img :src="formData.previewImage" class="imgClass">
</template>
<script>
export default {
  props: {
    formData: {
      type: Object,
      default: () => { }
    }
  }
}
</script>
<style>
.imgClass {
  width: 100%;
}
</style>