123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div style="background: #fff;">
- <div style="height: 60px;line-height: 60px;padding-top: 30px;margin-left: 30px;margin-right: 30px; border-bottom: 1px solid rgba(228, 228, 228, 1);">
- {{$t('common.notification')}}
- </div>
- <userCenterNotificationNotice ></userCenterNotificationNotice>
- </div>
- </template>
- <script>
- import userCenterNotificationNotice from './userCenterNotificationNotice' // 通知
- export default {
- name: 'userCenterNotification',
- components:{userCenterNotificationNotice},
- data () {
- return {
- informationsClass:'1',
- dialogVisible: false,
- }
- },
- methods:{
- getInformation(num){
- this.informationsClass=num
- },
- }
- }
- </script>
- <style scoped>
- .information1 {
- display: inline-block;
- width: 123px;
- height: 100%;
- border:1px solid rgba(228, 228, 228, 1);
- text-align: center;
- background: #f9f9f9;
- color: #999;
- }
- .information2 {
- display: inline-block;
- width: 123px;
- height: 100%;
- border-top:3px solid #2c5589;
- text-align: center;
- color: #2c5589;
- }
- .information1:hover {
- color: #FF0036;
- }
- </style>
|