Files
kelfy-mini/pages/bookingDetails/bookingDetails.wxml

27 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2025-11-13 13:38:59 +08:00
<view class="main">
<view class="container">
<van-cell-group inset class="booking_confirm">
<van-cell value="{{showData.doctorzc}}" center>
<view slot="title" class="name_title">
<van-image width='50' height='60' round src="{{showData.imageUrl}}"></van-image>
<view>{{showData.ysmc}}</view>
</view>
</van-cell>
<van-cell title-class="details_class">
<view slot="title">
<view>{{showData.introduction}}</view>
</view>
</van-cell>
<van-cell title="科室" value="{{showData.ksmc}}" />
<!-- <van-cell title="职位" value="{{showData.zcMc}}" /> -->
</van-cell-group>
<van-cell-group inset class="booking_confirm" wx:for="{{showDatas}}">
<van-divider borderColor="#1989fa" />
<van-cell title="可预约时间" value="{{item.kssj}}-{{item.jssj}}" />
<van-cell title="已预约" value="{{item.yyzs-item.kyys}}" />
<van-cell title="剩余号源" value="{{item.kyys}}" />
<van-cell title="预约费用" value="{{item.ghf}}" />
<van-button type="info" data-item="{{item}}" bindtap="naviToyy">预约</van-button>
</van-cell-group>
</view>
</view>