msgTips.vue 553 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view
  3. class="msg-tips"
  4. @click="$u.route('pages/com/msgNotification/index')"
  5. >
  6. <u-icon color="#fff" size="14" name="bell-fill"></u-icon>
  7. <view class="red-spot"></view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. name: 'msgTips',
  13. };
  14. </script>
  15. <style scoped lang="scss">
  16. .msg-tips {
  17. position: relative;
  18. padding: 10rpx;
  19. border-radius: 50%;
  20. background-color: #436ff6;
  21. .red-spot {
  22. position: absolute;
  23. bottom: 0;
  24. right: 0;
  25. background-color: #f96464;
  26. width: 16rpx;
  27. height: 16rpx;
  28. border-radius: 50%;
  29. }
  30. }
  31. </style>