userCenterSystemMessage.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div style="background: #fff;">
  3. <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);">
  4. {{$t('common.SystemInformation')}}
  5. </div>
  6. <userCenterNotificationNews ></userCenterNotificationNews>
  7. </div>
  8. </template>
  9. <script>
  10. import userCenterNotificationNews from './userCenterNotificationNews' // 消息
  11. export default {
  12. name: 'userCenterSystemMessage',
  13. components:{userCenterNotificationNews},
  14. data () {
  15. return {
  16. informationsClass:'1',
  17. dialogVisible: false,
  18. }
  19. },
  20. methods:{
  21. getInformation(num){
  22. this.informationsClass=num
  23. },
  24. }
  25. }
  26. </script>
  27. <style scoped>
  28. .information1 {
  29. display: inline-block;
  30. width: 123px;
  31. height: 100%;
  32. border:1px solid rgba(228, 228, 228, 1);
  33. text-align: center;
  34. background: #f9f9f9;
  35. color: #999;
  36. }
  37. .information2 {
  38. display: inline-block;
  39. width: 123px;
  40. height: 100%;
  41. border-top:3px solid #2c5589;
  42. text-align: center;
  43. color: #2c5589;
  44. }
  45. .information1:hover {
  46. color: #FF0036;
  47. }
  48. </style>