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