dd.vue 2.0 KB

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