timeline.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <view>
  3. <cu-custom bgColor="bg-luohu" :isBack="true">
  4. <block slot="backText">返回</block>
  5. <block slot="content">时间轴</block>
  6. </cu-custom>
  7. <view class="cu-timeline">
  8. <view class="cu-time">昨天</view>
  9. <view class="cu-item cur cuIcon-noticefill">
  10. <view class="content bg-green shadow-blur">
  11. <text>22:22</text> 【广州市】快件已到达地球
  12. </view>
  13. </view>
  14. <view class="cu-item text-red cuIcon-attentionforbidfill">
  15. <view class="content bg-red shadow-blur">
  16. 这是第一次,我家的铲屎官走了这么久。久到足足有三天!!
  17. </view>
  18. </view>
  19. <view class="cu-item text-grey cuIcon-evaluate_fill">
  20. <view class="content bg-grey shadow-blur">
  21. 这是第一次,我家的铲屎官走了这么久。
  22. </view>
  23. </view>
  24. <view class="cu-item text-blue">
  25. <view class="bg-blue content">
  26. <text>20:00</text> 【月球】快件已到达月球,准备发往地球
  27. </view>
  28. <view class="bg-cyan content">
  29. <text>10:00</text> 【银河系】快件已到达银河系,准备发往月球
  30. </view>
  31. </view>
  32. </view>
  33. <view class="cu-timeline">
  34. <view class="cu-time">06-17</view>
  35. <view class="cu-item">
  36. <view class="content">
  37. <text>01:30</text> 【喵星】 MX-12138 已揽收,准备发往银河系
  38. </view>
  39. </view>
  40. </view>
  41. <view class="cu-timeline">
  42. <view class="cu-time">06-17</view>
  43. <view class="cu-item">
  44. <view class="content">
  45. <view class="cu-capsule radius">
  46. <view class="cu-tag bg-cyan">上午</view>
  47. <view class="cu-tag line-cyan">10:00</view>
  48. </view>
  49. <view class="margin-top">这是第一次,我家的铲屎官走了这么久。久到足足有三天!!
  50. 在听到他的脚步声响在楼梯间的那一刻,我简直想要破门而出,对着他狠狠地吼上10分钟,然后再看心情要不要他进门。</view>
  51. </view>
  52. </view>
  53. <view class="cu-item text-blue">
  54. <view class="bg-blue shadow-blur content">
  55. <view class="cu-list menu-avatar radius">
  56. <view class="cu-item">
  57. <view class="cu-avatar round lg"
  58. style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg);">
  59. </view>
  60. <view class="content">
  61. <view class="text-grey">文晓港</view>
  62. <view class="text-gray text-sm">
  63. <text class="cuIcon-infofill text-red"></text> 消息未送达
  64. </view>
  65. </view>
  66. <view class="action">
  67. <view class="text-grey text-xs">22:20</view>
  68. <view class="cu-tag round bg-grey sm">5</view>
  69. </view>
  70. </view>
  71. <view class="cu-item">
  72. <view class="cu-avatar round lg"
  73. style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg);">
  74. <view class="cu-tag badge">99+</view>
  75. </view>
  76. <view class="content">
  77. <view class="text-grey">文晓港
  78. <view class="cu-tag round orange sm">SVIP</view>
  79. </view>
  80. <view class="text-gray text-sm">
  81. <text class="cuIcon-redpacket_fill text-red"></text> 收到红包
  82. </view>
  83. </view>
  84. <view class="action">
  85. <view class="text-grey text-xs">22:20</view>
  86. <text class="cuIcon-notice_forbid_fill text-gray"></text>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. </view>
  94. </template>
  95. <script>
  96. export default {
  97. data() {
  98. return {
  99. };
  100. }
  101. }
  102. </script>
  103. <style>
  104. </style>