12345678910111213141516171819202122232425262728293031323334 |
- <wrapper>
- <view class="select-hospital-area">
- <scroll-fetch
- height="{{ height }}"
- onService="onService"
- >
- <view
- class="item"
- slot-scope="props"
- onTap="onItemTap"
- item="{{ props.item }}"
- data-item="{{ props.item }}"
- >
- <view class="area-item">
- <view class="area-item-header">
- <text class="hospital-name">
- {{ props.item.name }}
- </text>
- </view>
- <view class="area-address">
- <text number-of-lines="1">
- {{ props.item.address }}
- </text>
- </view>
- <view class="hospital-desc">
- <text number-of-lines="2">
- {{ props.item.description }}
- </text>
- </view>
- </view>
- </view>
- </scroll-fetch>
- </view>
- </wrapper>
|