25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
<!--packageE/appointment/client/verification/verification.wxml-->
|
|
<view class="main" wx:if="{{isReady && !info.worker_name}}">
|
|
<view>{{appointmentLang.project}}名称: {{info.project_title}}</view>
|
|
<view>已预约次数: {{info.used_count}}次</view>
|
|
<view>{{appointmentLang.project}}总次数: {{info.total_count}}次</view>
|
|
<view>顾客姓名: {{info.realname}}</view>
|
|
<view>顾客电话: {{info.mobile}}</view>
|
|
</view>
|
|
|
|
<view class="main" wx:if="{{isReady && info.worker_name}}">
|
|
<view>{{appointmentLang.project}}名称: {{info.project_title}}</view>
|
|
<view>门店名称: {{info.store_name}}</view>
|
|
<view>{{appointmentLang.worker}}姓名: {{info.worker_name}}</view>
|
|
<view>已预约次数: {{info.used_count}}次</view>
|
|
<view>{{appointmentLang.project}}总次数: {{info.total_count}}次</view>
|
|
<view>顾客姓名: {{info.customer_name}}</view>
|
|
<view>顾客电话: {{info.customer_tel}}</view>
|
|
<view>开始时间: {{info.begin_time}}</view>
|
|
<view>结束时间: {{info.end_time}}</view>
|
|
</view>
|
|
|
|
<view style="padding: 1.5rem 0">
|
|
<view class="btn" bindtap="Sure">确认核销</view>
|
|
</view>
|