timeline.vue 3.4 KB

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