31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
<view class="page ui-page">
|
|
<nav-bar title="确认预约" showBack theme="blur" />
|
|
|
|
<view class="hero ui-card">
|
|
<view class="hero-title">{{confirm.title}}</view>
|
|
<view class="hero-sub">{{confirm.tip}}</view>
|
|
</view>
|
|
|
|
<view class="field ui-card">
|
|
<view class="k">预约日期</view>
|
|
<view class="v">{{confirm.dateText}}</view>
|
|
</view>
|
|
<view class="field ui-card">
|
|
<view class="k">预约时间</view>
|
|
<view class="v">{{confirm.timeText}}</view>
|
|
</view>
|
|
<view class="field ui-card">
|
|
<view class="k">联系人</view>
|
|
<view class="v">{{confirm.contactText}}</view>
|
|
</view>
|
|
|
|
<view class="notice">{{confirm.notice}}</view>
|
|
|
|
<view class="tip-card">提交后会同步到「我的预约」,可在那边查看和管理。</view>
|
|
|
|
<view class="bottom-wrap">
|
|
<view class="cta ui-btn-primary {{submitState === 'loading' ? 'ui-btn-primary--disabled' : ''}}" bindtap="onTapSubmit">{{submitState === 'loading' ? '提交中...' : '马上确认预约'}}</view>
|
|
<view wx:if="{{showSuccessTip}}" class="success-tip">预约提交成功,即将跳转</view>
|
|
</view>
|
|
</view>
|