| | |
| | | </div> |
| | | |
| | | <weather-notice></weather-notice> |
| | | |
| | | <copyright></copyright> |
| | | </div> |
| | | <div class="notification-center-body" v-if="notificationCenterType === 1"> |
| | | <message-notice |
| | |
| | | import Calender from './Calendar'; |
| | | import WeatherNotice from './WeatherNotice'; |
| | | import MessageNotice from './MessageNotice'; |
| | | import Copyright from './Copyright'; |
| | | |
| | | export default { |
| | | name: "NotificationCenter", |
| | | components: { |
| | | WeatherNotice, MessageNotice, Copyright |
| | | WeatherNotice, MessageNotice |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | height: calc(100% - 30px); |
| | | width: 300px; |
| | | background-color: rgba(200, 200, 200, 0.7); |
| | | box-shadow: -1px 1px 2px rgba(0,0,0,.3); |
| | | box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3); |
| | | z-index: 140; |
| | | } |
| | | |