Files
his/openhis-ui-vue3/src/template/template1.vue
2025-09-25 10:36:59 +08:00

45 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="template-content">
<div class="template-header">
<h3>股骨头坏死(模板1)</h3>
</div>
<div class="template-body">
<p>主诉左侧髋部疼痛X个月加重1周</p>
<p>现病史患者X个月前无明显诱因出现左侧髋部疼痛活动后加重休息后减轻未予重视1周前疼痛加重行走困难遂来我院就诊</p>
<p>既往史否认高血压糖尿病冠心病等慢性病史否认手术外伤史否认药物过敏史</p>
<p>体格检查左侧髋关节压痛(+)活动受限左下肢肌力下降</p>
<p>辅助检查DR示左侧股骨头坏死</p>
<p>诊断左侧股骨头坏死</p>
<p>治疗方案1. 避免负重2. 药物治疗3. 必要时手术治疗</p>
</div>
</div>
</template>
<script setup>
defineOptions({
name: 'Template1'
})
// 可以在这里添加组件逻辑
</script>
<style scoped>
.template-content {
background-color: white;
border: 1px solid #ddd;
border-radius: 4px;
padding: 15px;
min-height: 300px;
}
.template-header {
border-bottom: 1px solid #eee;
padding-bottom: 10px;
margin-bottom: 15px;
}
.template-body p {
margin-bottom: 10px;
line-height: 1.5;
}
</style>