This commit is contained in:
曹辉 2023-04-12 13:33:21 +08:00
parent b612bc62bf
commit 3edbca24b4

View File

@ -34,17 +34,21 @@
</view> </view>
<view class="content" style="margin-top: 20rpx;"> <view class="content" style="margin-top: 20rpx;">
<view class="item"> <view class="item">
姓名{{list.patientName}} 姓名
<span v-if="list.patientName">{{list.patientName}}</span>
</view> </view>
<view class="item"> <view class="item">
年龄{{list.age}} 年龄{{list.age}}
<span v-if="list.age>=0">{{list.age}}</span>
</view> </view>
<view class="item"> <view class="item">
电话{{list.phone}} 电话
<span v-if="list.phone">{{list.phone}}</span>
</view> </view>
<view class="item address" @tap='getlocations'> <view class="item address" @tap='getlocations'>
<view class="text" style="line-height: 60rpx;"> <view class="text" style="line-height: 60rpx;">
住址{{list.address}} 住址
<span v-if="list.address">{{list.address}}</span>
</view> </view>
<view class="daohang"> <view class="daohang">
<image src="../../static/daohang.png" mode=""></image> <image src="../../static/daohang.png" mode=""></image>