29 lines
490 B
Plaintext
29 lines
490 B
Plaintext
<template>
|
|
<view class="medication-management-page">
|
|
<text class="title">用药管理</text>
|
|
<view class="empty">暂无数据</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
// 用药管理页面骨架
|
|
</script>
|
|
|
|
<style scoped>
|
|
.medication-management-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>
|