index.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view>
  3. <car-common :login="true" mytitle="消息" :noback="false" ref="common"></car-common>
  4. <view class="new-time">
  5. 03-30 12:33
  6. </view>
  7. <view class="new-item">
  8. <view class="new-head">
  9. <h4>补缴车票通知</h4>
  10. <p>已经过您的预定下车站点,请重新选择下车站点并补缴车票。</p>
  11. </view>
  12. <view class="new-main">
  13. <view class="new-main-row">
  14. <p>站点:</p><span>玉桥</span>
  15. </view>
  16. <view class="new-main-row">
  17. <p>线路:</p><span>玉桥</span>
  18. </view>
  19. <view class="new-main-row">
  20. <p>状态:</p><span>玉桥</span>
  21. </view>
  22. </view>
  23. <view class="new-foot">
  24. <p>查看详情</p>
  25. <u-icon name="arrow-right" color="#999" size="28"></u-icon>
  26. </view>
  27. </view>
  28. <view class="new-time">
  29. 03-30 12:33
  30. </view>
  31. <view class="new-item">
  32. <view class="new-head">
  33. <h4>补缴车票通知</h4>
  34. <p>已经过您的预定下车站点,请重新选择下车站点并补缴车票。</p>
  35. </view>
  36. <view class="new-main">
  37. <view class="new-main-row">
  38. <p>站点:</p><span>玉桥</span>
  39. </view>
  40. <view class="new-main-row">
  41. <p>线路:</p><span>玉桥</span>
  42. </view>
  43. <view class="new-main-row">
  44. <p>状态:</p><span>玉桥</span>
  45. </view>
  46. </view>
  47. <view class="new-foot">
  48. <p>查看详情</p>
  49. <u-icon name="arrow-right" color="#999" size="28"></u-icon>
  50. </view>
  51. </view>
  52. </view>
  53. </template>
  54. <script>
  55. export default {
  56. data() {
  57. return {
  58. }
  59. },
  60. methods: {
  61. }
  62. }
  63. </script>
  64. <style>
  65. page{
  66. background-color: #f7f7f7;
  67. }
  68. </style>
  69. <style scoped lang="scss">
  70. .new-time{
  71. text-align: center;
  72. margin-top:10px;
  73. color:#999;
  74. }
  75. .new-item{
  76. background-color: #fff;
  77. margin: 10px;
  78. border-radius: 10px;
  79. border: 1px solid #eee;
  80. .new-head{
  81. padding: 10px;
  82. h4{
  83. font-size: 16px;
  84. }
  85. p{
  86. color:#999;
  87. margin-top: 3px;
  88. }
  89. }
  90. .new-main{
  91. padding: 10px;
  92. .new-main-row{
  93. display: flex;
  94. align-items: center;
  95. margin-bottom: 10px;
  96. p{
  97. width: 60px;
  98. color:#999;
  99. }
  100. }
  101. }
  102. .new-foot{
  103. padding: 10px;
  104. border-top: 1px solid #eee;
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. }
  109. }
  110. </style>