hldy_app_mini/pages/NursingNew/component/pleasetake/common/nomessage.vue

53 lines
794 B
Vue
Raw Normal View History

2025-12-03 14:14:37 +08:00
<template>
<view class="que" v-if="show">
<image src="/static/index/procurement/que.png" mode="aspectFill"></image>
<view>{{cont}}</view>
</view>
</template>
<script>
export default {
props: {
cont: {
type: String,
default: ''
},
show: {
type: Boolean,
default: false
}
}
}
</script>
<style scoped lang="less">
.que {
position: fixed;
2026-02-12 16:14:54 +08:00
top: 50%;
left: 50%;
width: 100vw;
height: 100vh;
transform: translate(-50%,-50%);
2025-12-03 14:14:37 +08:00
z-index: 100;
2026-01-14 16:33:39 +08:00
background-color: #f5f6fa;
2025-12-03 14:14:37 +08:00
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
image {
width: 16.3vw;
height: 16.3vw;
}
view {
text-align: center;
2026-02-12 16:14:54 +08:00
margin-top: 1vw;
2025-12-03 14:14:37 +08:00
font-weight: 300;
2026-02-12 16:14:54 +08:00
font-size: 1.5vw;
2025-12-03 14:14:37 +08:00
color: #555555;
}
}
</style>