cancelAppointment.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <t-navbar title="取消预约" left-arrow />
  2. <scroll-view class="page-container" scroll-y>
  3. <!-- 预约成功卡片 -->
  4. <view class="appointment-success-card">
  5. <!-- 标题 -->
  6. <view class="appointment-success-title">取消预约成功</view>
  7. <!-- 预约详情 -->
  8. <view class="appointment-info">
  9. <view class="info-item">
  10. <text class="info-label">预约项目:</text>
  11. <text class="info-value">{{appointmentInfo.arrangeTime}}</text>
  12. </view>
  13. <view class="info-item" wx:if="{{appointmentInfo.arrangeTime}}">
  14. <text class="info-label">开始服务时间:</text>
  15. <text class="info-value">{{appointmentInfo.arrangeTime}}</text>
  16. </view>
  17. <view class="info-item" wx:if="{{appointmentInfo.arrangeDuration}}">
  18. <text class="info-label">服务所需时间:</text>
  19. <text class="info-value">{{appointmentInfo.arrangeDuration}}分钟</text>
  20. </view>
  21. <view class="info-item" wx:if="{{appointmentInfo.conditioningProgramSupplierName}}">
  22. <text class="info-label">服务机构:</text>
  23. <text class="info-value" wx:if="{{appointmentInfo.pieTime}}">{{appointmentInfo.conditioningProgramSupplierName}}</text>
  24. <text class="info-value" wx:else>待分配</text>
  25. </view>
  26. <view class="info-item" wx:if="{{appointmentInfo.cpSupplierDetailAddress}}">
  27. <text class="info-label">服务地址:</text>
  28. <text class="info-value">{{appointmentInfo.cpSupplierDetailAddress}}</text>
  29. </view>
  30. <view class="info-item" wx:if="{{appointmentInfo.cpSupplierPhone}}">
  31. <text class="info-label">联系电话:</text>
  32. <text class="info-value">{{appointmentInfo.cpSupplierPhone}}</text>
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 返回按钮 -->
  37. <view class="bottom-actions">
  38. <view class="bottom-btn" catchtap="onBack">返回</view>
  39. </view>
  40. </scroll-view>