| | |
| | | <template> |
| | | <div class="home-right"> |
| | | <CommonTitle title="协同" /> |
| | | <CommonTitle title="降本增效" /> |
| | | <div class="synergy"></div> |
| | | |
| | | <CommonTitle title="协同" /> |
| | | <CommonTitle title="任务成果" @details="detailsFun"/> |
| | | <div class="taskAchievements"></div> |
| | | |
| | | <CommonTitle title="协同" /> |
| | | <CommonTitle title="事件概况" /> |
| | | <div class="eventOverview"></div> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import { defineComponent } from 'vue'; |
| | | <script setup> |
| | | import CommonTitle from '@/components/CommonTitle.vue'; |
| | | |
| | | export default defineComponent({ |
| | | components: { CommonTitle }, |
| | | }); |
| | | const detailsFun = () => { |
| | | console.log('details'); |
| | | }; |
| | | </script> |
| | | |
| | | <style scoped lang="scss"> |
| | |
| | | top: hToV(122); |
| | | right: 31px; |
| | | width: 404px; |
| | | height: 43px; |
| | | |
| | | .titleBox { |
| | | width: 404px; |
| | |
| | | |
| | | .synergy { |
| | | width: 390px; |
| | | height: 108px; |
| | | height: hToV(108); |
| | | background: linear-gradient( |
| | | 90deg, |
| | | #1f3e7a 0%, |
| | |
| | | ); |
| | | border-radius: 0px 0px 0px 0px; |
| | | opacity: 0.85; |
| | | margin: hToV(2) 0 hToV(13) 0; |
| | | } |
| | | |
| | | .taskAchievements { |
| | |
| | | ); |
| | | border-radius: 0px 0px 0px 0px; |
| | | opacity: 0.85; |
| | | margin: hToV(2) 0 hToV(21) 0; |
| | | } |
| | | |
| | | .eventOverview { |
| | |
| | | ); |
| | | border-radius: 0px 0px 0px 0px; |
| | | opacity: 0.85; |
| | | margin: hToV(3) 0 0 0; |
| | | } |
| | | } |
| | | </style> |