123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <div class="commentSectorBox">
- <div class="commentSectorBoxTitle">
- <styleTitle />
- </div>
- <div class="commentSectorBoxContent">
- <div class="tabsCalendarNewsBox">
- <tabsCalendarNews />
- </div>
- <div class="calendarBox">
- <calendar />
- </div>
- </div>
- </div>
- </template>
- <script>
- import styleTitle from './components/styleTitle.vue';
- import tabsCalendarNews from './components/tabsCalendarNews.vue';
- import calendar from './components/calendar.vue';
- export default {
- components: {
- styleTitle,
- tabsCalendarNews,
- calendar
- },
- props: {
- id: {
- type: Number,
- default: 0
- }
- },
- data() {
- return {
-
- };
- },
- methods: {
-
-
- },
- mounted() {
-
- },
- };
- </script>
- <style scoped lang="less">
- .commentSectorBox {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- .commentSectorBoxTitle {
- width: 80%;
- border: 1px dashed #5570F1;
- height: 41px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .commentSectorBoxContent {
- width: 80%;
- display: flex;
- .tabsCalendarNewsBox {
- width: 70%;
- box-sizing: border-box;
- padding-right: 20px;
- border: 1px dashed #5570F1;
- }
- .calendarBox {
- width: 30%;
- border: 1px dashed #5570F1;
- }
- }
- }
- </style>
|