uni-events-helper-wx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.2 KiB

3 years ago
  1. <template>
  2. <view class="content flex_col flex_start">
  3. <!-- item -->
  4. <view class="item flex_col flex_start_y bg-white padding " v-for="i in 3">
  5. <view class="title flex_row flex_start">
  6. <view class="text-m text-left">消息中心</view>
  7. <view class="bandage"></view>
  8. </view>
  9. <view class="time">2020.06.22</view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. address:"",
  18. login:true
  19. };
  20. },
  21. onLoad(parms) {
  22. },
  23. onUnload() {
  24. },
  25. methods: {
  26. jumpPage(){
  27. this.$Router.push({name:"login"})
  28. },
  29. }
  30. }
  31. </script>
  32. <style lang="less" scoped>
  33. .content{
  34. .item{
  35. color: #333333;
  36. position: relative;
  37. margin-top: 24rpx;
  38. border-radius: 10rpx;
  39. width: 702rpx;
  40. height: 124rpx;
  41. .title{
  42. font-size: 32rpx;
  43. color: #1A1A1A;
  44. margin-bottom: 10rpx;
  45. font-weight: 700;
  46. }
  47. .time{
  48. font-size: 24rpx;
  49. color: #B2B2B2;
  50. }
  51. .bandage{
  52. width: 16rpx;
  53. height: 16rpx;
  54. // position: absolute;
  55. // right: 60rpx;
  56. background: #EA5061;
  57. border-radius: 50%;
  58. font-size: 24rpx;
  59. color: white;
  60. text-align: center;
  61. line-height: 34rpx;
  62. margin-top: -16rpx;
  63. margin-left: 10rpx;
  64. }
  65. }
  66. }
  67. </style>