wpwd.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view class="content">
  3. <view class="main">
  4. <view class="main-item" v-for="(item,index) in 10">
  5. <view class="main-icon-box">
  6. <image class="main-icon" src="../../static/icon/wpwd.png" mode=""></image>
  7. </view>
  8. <view class="main-main">
  9. <view class="main-title flex">
  10. <view class="title">
  11. 外派未到通知
  12. </view>
  13. <view class="time">
  14. 2022/12/09 12:00:00
  15. </view>
  16. </view>
  17. <view class="main-tip flex">
  18. <view class="tip">
  19. [XX订单]的外派未到,请及时联系!
  20. </view>
  21. <view class="dian" v-if="index <= 2">
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {};
  33. },
  34. onLoad() {},
  35. onShow() {},
  36. onReachBottom() {},
  37. onReady() {},
  38. methods: {}
  39. };
  40. </script>
  41. <style lang="scss">
  42. page,
  43. .content {
  44. min-height: 100%;
  45. height: auto;
  46. }
  47. .main {
  48. margin-top: 20rpx;
  49. background: #ffffff;
  50. }
  51. .main-item {
  52. display: flex;
  53. align-items: center;
  54. padding: 32rpx 24rpx 0 34rpx;
  55. .main-icon-box {
  56. padding-bottom: 20rpx;
  57. }
  58. .main-icon {
  59. flex-shrink: 0;
  60. width: 60rpx;
  61. height: 60rpx;
  62. }
  63. .main-main {
  64. padding-bottom: 20rpx;
  65. width: 100%;
  66. margin-left: 24rpx;
  67. border-bottom: 1px solid #f0f0f0;
  68. .main-title {
  69. line-height: 1;
  70. .title {
  71. font-size: 32rpx;
  72. font-family: PingFang SC;
  73. font-weight: bold;
  74. color: #333333;
  75. }
  76. .time {
  77. font-size: 20rpx;
  78. font-family: PingFang SC;
  79. font-weight: 500;
  80. color: #999999;
  81. }
  82. }
  83. .main-tip {
  84. line-height: 1;
  85. margin-top: 18rpx;
  86. .tip {
  87. font-size: 24rpx;
  88. font-family: PingFang SC;
  89. font-weight: 500;
  90. color: #999999;
  91. }
  92. .dian {
  93. width: 13rpx;
  94. height: 13rpx;
  95. background: #FB555C;
  96. border-radius: 50%;
  97. }
  98. }
  99. }
  100. }
  101. </style>