top.vue 843 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <div id="top">
  3. <el-row>
  4. <el-col :span="24">
  5. <el-col :span="24">
  6. <el-image style="width:100%;height:500px;" :src="info.banner"></el-image>
  7. </el-col>
  8. <div class="w_1270">
  9. <el-col :span="24" class="info">
  10. <span>{{ info.title }}-{{ title }}</span>
  11. </el-col>
  12. </div>
  13. </el-col>
  14. </el-row>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. name: 'top',
  20. props: {
  21. info: null,
  22. },
  23. components: {},
  24. data: () => ({
  25. title: '党员之家',
  26. }),
  27. created() {},
  28. computed: {},
  29. methods: {},
  30. };
  31. </script>
  32. <style lang="less" scoped>
  33. .w_1270 {
  34. width: 1270px;
  35. margin: 0 auto;
  36. }
  37. .info {
  38. position: absolute;
  39. top: 30%;
  40. left: 25%;
  41. width: 50%;
  42. }
  43. .info span {
  44. font-size: 45px;
  45. color: #df0001;
  46. font-family: '黑体';
  47. }
  48. </style>