exhibitionFile.vue 717 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="exhibition-file">
  3. <p class="title">
  4. <span class=" iconfont icon-fujian"></span>
  5. {{exhibitionFile.title}}</p>
  6. <div>
  7. <lookFile :exhibitionFile="exhibitionFile"/>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. import lookFile from "./lookFile";
  13. export default {
  14. name: "exhibition-file",
  15. props: ['exhibitionFile'],
  16. data() {return{}},
  17. components:{lookFile}
  18. }
  19. </script>
  20. <style scoped lang="less">
  21. .exhibition-file {
  22. border: 1px solid #eeeeee;
  23. background: #FFFFFF;
  24. margin-bottom: 10px;
  25. .title {
  26. border-bottom: 1px solid #eee;
  27. padding: 10px 0;
  28. font-weight: 600;
  29. text-indent: 10px;
  30. }
  31. }
  32. </style>