1.vue 789 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div class="mainTitleBox">
  3. <img src="@/assets/template/component/newsIcon.png" />
  4. <div class="mainTitleText">习近平在中华全国供销合作社成立70周年</div>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. props: {
  10. },
  11. data() {
  12. return {
  13. };
  14. },
  15. methods: {
  16. },
  17. mounted() {
  18. },
  19. };
  20. </script>
  21. <style scoped lang="less">
  22. .mainTitleBox {
  23. width: 100%;
  24. height: 60px;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. img {
  29. width: 54px;
  30. height: 54px;
  31. margin-right: 40px;
  32. }
  33. .mainTitleText {
  34. font-size: 30px;
  35. color: #19499F;
  36. font-weight: bold;
  37. white-space: nowrap;
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. }
  41. }
  42. </style>