situationPreview.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <template>
  2. <view class="situation-preview">
  3. <view class="title">情境预览</view>
  4. <view class="box1">
  5. <view class="row1">
  6. <view class="top">
  7. <text>主题:个案追踪</text>
  8. <view>
  9. <text>查看查核地图</text>
  10. <image src="../../../static/icon-blueMore.png"></image>
  11. </view>
  12. </view>
  13. <view class="list">
  14. <text>门诊</text>
  15. <text>住院</text>
  16. <text>ICU</text>
  17. </view>
  18. </view>
  19. <view class="row2">
  20. <view class="item">
  21. <text>查核组</text>
  22. <text>内科查核二组</text>
  23. </view>
  24. <view class="item">
  25. <text>组长</text>
  26. <text>王晓雪</text>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="box2">
  31. <view>情景名称</view>
  32. <view class="input-wrap">
  33. <input placeholder="限2~16个中文、英文或数字" />
  34. </view>
  35. </view>
  36. <view class="box2">
  37. <view>
  38. <text>计划开始前</text>
  39. <input placeholder="请输入" type="number" />
  40. <text>天的</text>
  41. <input placeholder="请输入" type="number" />
  42. <text>时提醒</text>
  43. </view>
  44. <view>
  45. <text>启动</text>
  46. <input placeholder="请输入" type="number" />
  47. <text>天前提醒</text>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="less">
  61. .situation-preview {
  62. overflow: hidden;
  63. font-size: 22.5rpx;
  64. line-height: 33.75rpx;
  65. color: #292C33;
  66. .box1,
  67. .box2 {
  68. margin-bottom: 15rpx;
  69. padding: 25rpx;
  70. width: 100%;
  71. background-color: #fff;
  72. }
  73. .box1 {
  74. display: flex;
  75. flex-direction: column;
  76. .row1 {
  77. display: flex;
  78. flex-direction: column;
  79. margin-bottom: 35rpx;
  80. .top {
  81. display: flex;
  82. flex-direction: row;
  83. justify-content: space-between;
  84. margin-bottom: 6.25rpx;
  85. >text {
  86. font-size: 30rpx;
  87. line-height: 45rpx;
  88. }
  89. >view {
  90. display: flex;
  91. flex-direction: row;
  92. align-items: center;
  93. font-size: 20rpx;
  94. line-height: 30rpx;
  95. color: #3377FF;
  96. image {
  97. margin-left: 10rpx;
  98. width: 11.87rpx;
  99. height: 20rpx;
  100. }
  101. }
  102. }
  103. .list {
  104. overflow: hidden;
  105. display: flex;
  106. flex-direction: row;
  107. flex-wrap: wrap;
  108. align-items: center;
  109. >text {
  110. margin-top: 6.25rpx;
  111. margin-right: 15rpx;
  112. border-radius: 5rpx;
  113. padding: 2.5rpx 20.62rpx;
  114. font-size: 17.5rpx;
  115. line-height: 26.25rpx;
  116. color: #7A8499;
  117. background-color: #EBEFF7;
  118. }
  119. }
  120. }
  121. .row2 {
  122. display: flex;
  123. flex-direction: row;
  124. justify-content: center;
  125. align-items: center;
  126. .item {
  127. display: flex;
  128. flex-direction: column;
  129. width: 47.5%;
  130. text {
  131. overflow: hidden;
  132. white-space: nowrap;
  133. text-overflow: ellipsis;
  134. font-size: 25rpx;
  135. line-height: 37.5rpx;
  136. }
  137. text:first-child {
  138. margin-bottom: 4.37rpx;
  139. font-size: 17.5rpx;
  140. line-height: 26.25rpx;
  141. color: #666F80;
  142. }
  143. &:first-child {
  144. margin-right: 5%;
  145. border-right: 1px solid #DADEE6;
  146. }
  147. }
  148. }
  149. }
  150. .box2 {
  151. padding: 0;
  152. padding-left: 25rpx;
  153. >view {
  154. display: flex;
  155. flex-direction: row;
  156. align-items: center;
  157. border-bottom: 1px solid #DADEE6;
  158. height: 87.5rpx;
  159. color: #525866;
  160. >text {
  161. white-space: nowrap;
  162. color: #292C33;
  163. }
  164. >input {
  165. padding: 0 9.37rpx;
  166. width: 80rpx;
  167. height: 33.75rpx;
  168. font-size: 22.5rpx;
  169. line-height: 33.75rpx;
  170. text-align: center;
  171. }
  172. &:last-child {
  173. border-bottom: 0;
  174. }
  175. &.input-wrap {
  176. >input {
  177. padding: 0;
  178. padding-right: 25rpx;
  179. width: 100%;
  180. text-align: left;
  181. }
  182. }
  183. }
  184. }
  185. }
  186. </style>