list-item.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="mission-list-item">
  3. <view v-if="true" class="time">
  4. <text class="com-text">2020-11-26 15:33:08</text>
  5. </view>
  6. <view class="card">
  7. <view class="top-box">
  8. <view class="bg-box">
  9. <text>改善中</text>
  10. </view>
  11. <text class="title">柜子上方50cm不能遮住喷水器</text>
  12. <view class="row">
  13. <view class="col">
  14. <image class="com-icon" src="/static/creatingSituations/icon上移.png"></image>
  15. <text class="com-text">第3/9次查核计划</text>
  16. </view>
  17. <view class="col">
  18. <image class="com-icon" src="/static/creatingSituations/icon上移.png"></image>
  19. <text class="com-text">分诊处(门诊)</text>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="bottom-box">
  24. <text class="com-text">情境名称:环境设施安全</text>
  25. <text class="com-text">改善人:张晴晴</text>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. </script>
  32. <style lang="less">
  33. .mission-list-item {
  34. margin-top:15rpx;
  35. overflow: hidden;
  36. .time {
  37. height: 47.5rpx;
  38. line-height: 45rpx;
  39. padding-left: 25rpx;
  40. }
  41. .card {
  42. position: relative;
  43. display: flex;
  44. flex-direction: column;
  45. height: 203.75rpx;
  46. background-color: #fff;
  47. padding: 0 25rpx;
  48. .top-box {
  49. display: flex;
  50. flex-direction: column;
  51. justify-content: space-between;
  52. flex: 1;
  53. margin-top: 35rpx;
  54. margin-bottom: 28.12rpx;
  55. }
  56. .title {
  57. line-height: 45rpx;
  58. font-size: 25rpx;
  59. font-weight: bold;
  60. color: #292C33;
  61. }
  62. .row {
  63. display: flex;
  64. align-items: center;
  65. .col {
  66. display: flex;
  67. align-items: center;
  68. height: 20rpx;
  69. &:first-child {
  70. margin-right: 50rpx;
  71. }
  72. .com-icon {
  73. margin-right: 9.37rpx;
  74. width: 20rpx;
  75. height: 20rpx;
  76. }
  77. }
  78. }
  79. .bottom-box {
  80. display: flex;
  81. justify-content: space-between;
  82. align-items: center;
  83. height: 70rpx;
  84. border-top: 0.62rpx solid #DADEE6;
  85. }
  86. .bg-box {
  87. position: absolute;
  88. top: 0;
  89. right: 0;
  90. width: 112.5rpx;
  91. height: 35rpx;
  92. background-image: url('~@/static/mission/active-bg.png');
  93. background-size: 100% 100%;
  94. text-align: center;
  95. >text {
  96. line-height: 35rpx;
  97. font-size: 17.5rpx;
  98. color: #fff;
  99. }
  100. }
  101. }
  102. .com-text {
  103. font-size: 22.5rpx;
  104. color: #666F80;
  105. }
  106. }
  107. </style>