This commit is contained in:
lik
2026-05-31 19:43:16 +08:00
parent 13a61896db
commit 87c852b6a9
11 changed files with 824 additions and 44 deletions

View File

@@ -1,6 +1,6 @@
<view class="container">
<view class="header">
<text class="title">北京主要医院联系电话</text>
<text class="title">主要医院联系电话</text>
<text class="subtitle">持续更新中, 仅供参考</text>
</view>
@@ -8,14 +8,14 @@
<text>加载中...</text>
</view>
<view wx:elif="{{hospitalContact.length === 0}}" class="empty">
<text>暂无医院联系信息</text>
<view wx:elif="{{hospitalInfo.length === 0}}" class="empty">
<text>暂无医院信息</text>
</view>
<view wx:else class="list">
<view
class="item"
wx:for="{{hospitalContact}}"
wx:for="{{hospitalInfo}}"
wx:key="id"
>
<view class="info">
@@ -26,10 +26,10 @@
wx:for="{{item.phone}}"
wx:for-item="phone"
wx:key="*this"
data-phone="{{phone}}"
data-phone="{{phone.number}}"
bindtap="onCallPhone"
>
<text class="phone">{{phone}}</text>
<text class="phone">{{phone.number}} </text>
</view>
</view>
</view>