123456789101112131415161718192021222324 |
- <wrapper>
- <view class="appointment-time">
- <!-- 医生简介 -->
- <view class="doctor-introduce">
- <view class="avator">
- <image src="{{ doctorInfo && doctorInfo.avator }}" class="img"></image>
- </view>
- <view class="info">
- <view class="title">
- <text class="doctor-name">{{ doctorInfo && doctorInfo.name }}</text>
- {{ doctorInfo && doctorInfo.duty }}
- </view>
- <view class="desc">{{ doctorInfo && doctorInfo.desc }}</view>
- <view class="more" onTap="moreBtn">查看更多</view>
- </view>
- </view>
- <!-- 预约时间列表 -->
- <appointment appointmentList="{{ appointmentList }}"></appointment>
- <!-- 剩余日期 -->
- <view class="appointment-rest">
- {{ doctorInfo && doctorInfo.appointmentRest }}
- </view>
- </view>
- </wrapper>
|