29 lines
470 B
Plaintext
29 lines
470 B
Plaintext
<template>
|
|
<view class="vital-signs-page">
|
|
<text class="title">生命体征</text>
|
|
<view class="empty">暂无数据</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
// 生命体征页面骨架
|
|
</script>
|
|
|
|
<style scoped>
|
|
.vital-signs-page {
|
|
padding: 30px;
|
|
background: #f5f5f5;
|
|
min-height: 100vh;
|
|
}
|
|
.title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
}
|
|
.empty {
|
|
color: #aaa;
|
|
text-align: center;
|
|
margin-top: 60px;
|
|
}
|
|
</style>
|