exhibitionVideo.vue 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <div class="exhibition-video">
  3. <p class="title">
  4. <span class=" icon-shipin-tianchong iconfont"></span>
  5. {{exhibitionVideo.title}}</p>
  6. <div class="image">
  7. <lookVideo :exhibitionVideo="exhibitionVideo"/>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. import lookVideo from "./lookVideo";
  13. export default {
  14. name: "exhibition-video",
  15. props: ['exhibitionVideo'],
  16. components:{lookVideo},
  17. data() {
  18. return {
  19. }
  20. },
  21. methods:{
  22. deepcopy(obj) {
  23. return JSON.parse(JSON.stringify(obj));
  24. },
  25. }
  26. }
  27. </script>
  28. <style lang="less" scoped>
  29. .exhibition-video {
  30. border: 1px solid #eeeeee;
  31. background: #fff;
  32. margin-bottom: 10px;
  33. .title {
  34. border-bottom: 1px solid #eee;
  35. padding: 10px 0;
  36. font-weight: 600;
  37. text-indent: 10px;
  38. }
  39. .image {
  40. margin: 10px;
  41. /*text-align: center;*/
  42. }
  43. }
  44. </style>