123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <template>
- <view class="situation-preview">
- <view class="title">情境预览</view>
- <view class="box1">
- <view class="row1">
- <view class="top">
- <text>主题:个案追踪</text>
- <view>
- <text>查看查核地图</text>
- <image src="../../../static/icon-blueMore.png"></image>
- </view>
- </view>
- <view class="list">
- <text>门诊</text>
- <text>住院</text>
- <text>ICU</text>
- </view>
- </view>
- <view class="row2">
- <view class="item">
- <text>查核组</text>
- <text>内科查核二组</text>
- </view>
- <view class="item">
- <text>组长</text>
- <text>王晓雪</text>
- </view>
- </view>
- </view>
- <view class="box2">
- <view>情景名称</view>
- <view class="input-wrap">
- <input placeholder="限2~16个中文、英文或数字" />
- </view>
- </view>
- <view class="box2">
- <view>
- <text>计划开始前</text>
- <input placeholder="请输入" type="number" />
- <text>天的</text>
- <input placeholder="请输入" type="number" />
- <text>时提醒</text>
- </view>
- <view>
- <text>启动</text>
- <input placeholder="请输入" type="number" />
- <text>天前提醒</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- }
- }
- </script>
- <style lang="less">
- .situation-preview {
- overflow: hidden;
- font-size: 22.5rpx;
- line-height: 33.75rpx;
- color: #292C33;
- .box1,
- .box2 {
- margin-bottom: 15rpx;
- padding: 25rpx;
- width: 100%;
- background-color: #fff;
- }
- .box1 {
- display: flex;
- flex-direction: column;
- .row1 {
- display: flex;
- flex-direction: column;
- margin-bottom: 35rpx;
- .top {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-bottom: 6.25rpx;
- >text {
- font-size: 30rpx;
- line-height: 45rpx;
- }
- >view {
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 20rpx;
- line-height: 30rpx;
- color: #3377FF;
- image {
- margin-left: 10rpx;
- width: 11.87rpx;
- height: 20rpx;
- }
- }
- }
- .list {
- overflow: hidden;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: center;
- >text {
- margin-top: 6.25rpx;
- margin-right: 15rpx;
- border-radius: 5rpx;
- padding: 2.5rpx 20.62rpx;
- font-size: 17.5rpx;
- line-height: 26.25rpx;
- color: #7A8499;
- background-color: #EBEFF7;
- }
- }
- }
- .row2 {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- .item {
- display: flex;
- flex-direction: column;
- width: 47.5%;
- text {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-size: 25rpx;
- line-height: 37.5rpx;
- }
- text:first-child {
- margin-bottom: 4.37rpx;
- font-size: 17.5rpx;
- line-height: 26.25rpx;
- color: #666F80;
- }
- &:first-child {
- margin-right: 5%;
- border-right: 1px solid #DADEE6;
- }
- }
- }
- }
- .box2 {
- padding: 0;
- padding-left: 25rpx;
- >view {
- display: flex;
- flex-direction: row;
- align-items: center;
- border-bottom: 1px solid #DADEE6;
- height: 87.5rpx;
- color: #525866;
- >text {
- white-space: nowrap;
- color: #292C33;
- }
- >input {
- padding: 0 9.37rpx;
- width: 80rpx;
- height: 33.75rpx;
- font-size: 22.5rpx;
- line-height: 33.75rpx;
- text-align: center;
- }
- &:last-child {
- border-bottom: 0;
- }
- &.input-wrap {
- >input {
- padding: 0;
- padding-right: 25rpx;
- width: 100%;
- text-align: left;
- }
- }
- }
- }
- }
- </style>
|