123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div class="mainTitleBox">
- <img src="@/assets/template/component/newsIcon.png" />
- <div class="mainTitleText">习近平在中华全国供销合作社成立70周年</div>
- </div>
- </template>
- <script>
- export default {
- props: {
-
- },
- data() {
- return {
-
- };
- },
- methods: {
-
- },
- mounted() {
-
- },
- };
- </script>
- <style scoped lang="less">
- .mainTitleBox {
- width: 100%;
- height: 60px;
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- width: 54px;
- height: 54px;
- margin-right: 40px;
- }
- .mainTitleText {
- font-size: 30px;
- color: #19499F;
- font-weight: bold;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- </style>
|