1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <div class="mainTitleBox">
- <editBtn :id="id" :sort="sort" :type="1" :size="1"/>
- <img src="@/assets/template/component/newsIcon.png" />
- <div class="mainTitleText">习近平在中华全国供销合作社成立70周年</div>
- </div>
- </template>
- <script>
- import editBtn from '../../public/editBtn.vue'
- export default {
- components: {
- editBtn
- },
- props: {
- id:{
- type:Number,
- default:0
- },
- sort:{
- type:Number,
- default:0
- }
- },
- data() {
- return {
-
- };
- },
- methods: {
-
- },
- mounted() {
-
- },
- };
- </script>
- <style scoped lang="less">
- .mainTitleBox {
- width: 100%;
- 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>
|