Browse Source

结束消毒

master
maochaoying 2 years ago
parent
commit
b008743423
  1. 33
      src/components/Progress.vue

33
src/components/Progress.vue

@ -199,6 +199,14 @@
v-if="disinfectWarnVisible" v-if="disinfectWarnVisible"
:hideDisinfectModal="hideDisinfectModal" :hideDisinfectModal="hideDisinfectModal"
/> />
<van-overlay :show="operatorStore.showStopReady" z-index="3">
<div class="wrapper" @click.stop>
<div class="block">
<van-loading />
<p class="shutdown_text">结束消毒中</p>
</div>
</div>
</van-overlay>
</div> </div>
</template> </template>
@ -890,4 +898,29 @@ const continueDisinfect = () => {
} }
} }
} }
.wrapper {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.block {
width: 120px;
height: 120px;
display: flex;
flex-direction: column;
padding: 16px;
align-items: center;
justify-content: center;
.shutdown_text {
margin-top: 24px;
font-family: Source Han Sans CN;
font-size: 18px;
font-weight: normal;
line-height: normal;
letter-spacing: 0.06em;
color: #fff;
white-space: nowrap;
}
}
</style> </style>
Loading…
Cancel
Save