Files
kelfy-mini/pages/departmentMsg/departmentMsg.wxml
2025-11-13 13:39:24 +08:00

17 lines
891 B
Plaintext

<!--pages/departmentMsg/departmentMsg.wxml-->
<view class="main">
<view class="content">
<!-- <view class="item"> -->
<van-calendar tyep="single" poppable="{{ false }}" show-confirm="{{ false }}" default-date="{{defaultDate}}" color="#07c160" class="calendar" min-date="{{minDate}}" max-date="{{maxDate}}" bind:select="onConfirm" />
<scroll-view style='height:100%' scroll-y="true">
<van-cell-group inset wx:for="{{doctorList}}">
<van-cell label-class="textHidden" value="{{item.doctorzc}}" label="{{item.introduction}}" is-link center data-item="{{item}}" bindtap="navigateToBooking" >
<view slot="title" class="name_title">
<van-image width='50' height='60' round src="{{item.imageUrl}}"></van-image>
<view>{{item.ysmc}}</view>
</view>
</van-cell>
</van-cell-group>
</scroll-view>
</view>
</view>