Initial commit of akmon project
This commit is contained in:
28
pages/ec/doctor/medication-management.uvue
Normal file
28
pages/ec/doctor/medication-management.uvue
Normal file
@@ -0,0 +1,28 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user