hldy_app_mini/pages/NursingNew/component/nurse/component/default.vue

43 lines
591 B
Vue

<template>
<view>
<view class="que">
<image src="/static/index/procurement/que.png" mode="aspectFill"></image>
<view>{{cont}}</view>
</view>
</view>
</template>
<script>
export default {
props:{
cont:'',
}
}
</script>
<style scoped lang="less">
.que{
width: 16vw;
height: 16vw;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
image{
width: 100%;
height: 100%;
}
view{
width: 100%;
text-align: center;
position: absolute;
bottom: 0.5vw;
left: 0;
font-weight: 300;
font-size: 1.4vw;
color: #555555;
}
}
</style>