hldy_app_mini/pages/NursingNew/component/doctorask/medical/medical.vue

50 lines
725 B
Vue
Raw Normal View History

2026-01-19 15:37:36 +08:00
<template>
2026-03-05 16:07:32 +08:00
<view class="big-bgc">
<image class="big-imge" src="/static/creating.jpg" mode="aspectFill" />
<view class="big-font">
正在开发中敬请期待...
2026-01-19 15:37:36 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
2026-03-05 16:07:32 +08:00
<style lang="less" scoped>
.big-bgc {
display: flex;
text-align: center;
justify-content: center;
align-items: center;
min-width: 100vw;
height: 96vh;
margin-top: 1vw;
flex-direction: column;
background-color: #fff;
margin-left: 1vw;
border-radius: 30rpx;
2026-01-19 15:37:36 +08:00
2026-03-05 16:07:32 +08:00
.big-imge {
width: 15vw;
height: 15vw;
}
.big-font {
width: 100%;
font-size: 30rpx;
font-weight: 600;
}
}
2026-01-19 15:37:36 +08:00
</style>