tyt-weapp/pages/patient/patientFbDetail/patientFbDetail.vue

69 lines
1.8 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.

<script setup></script>
<template>
<view class="box main">
<wd-card>
<view class="head">
<image src="/static//logo.png"></image>
<view class="info">
<view>
<text class="adorn">陈程城</text>
<text></text>
<text>25</text>
</view>
<view>住院号/ID123456</view>
</view>
</view>
</wd-card>
<wd-card>
<template #title>
<view class="title">病情描述</view>
</template>
<view class="content">
<view>xxxxx</view>
<view>提示1.病人的状态描述是否出现头疼呕吐嗜睡等以上症状.2.病人行为描述是否出现走路不稳大小便失禁等方面概述</view>
</view>
<template #footer>
</template>
</wd-card>
</view>
</template>
<style lang="scss" scoped>
.box{
padding-top: 20rpx;
.head {
display: flex;
padding: 20rpx;
gap: 20rpx;
align-items: center;
color: #000;
image {
width: 100rpx;
height: 100rpx;
border-radius: 50%;
border: 1rpx solid #d4d4d4;
}
.info {
font-size: 24rpx;
>view {
display: flex;
gap: 30rpx;
align-items: flex-end;
}
.adorn {
font-weight: bold;
font-size: 32rpx;
}
}
}
.content {
color: #333;
padding-bottom: 20rpx;
:first-child {
padding: 15rpx 0;
border-top: 1rpx solid #d4d4d4;
}
}
}
</style>