39 lines
1.4 KiB
Plaintext
39 lines
1.4 KiB
Plaintext
<view class="page ui-page">
|
|
<nav-bar title="预约详情" showBack theme="blur" />
|
|
|
|
<view class="head">
|
|
<view class="title">订单状态</view>
|
|
<view class="status ui-pill {{statusClass}}">{{detail.status}}</view>
|
|
</view>
|
|
|
|
<view class="card ui-card profile">
|
|
<view class="avatar"></view>
|
|
<view class="info">
|
|
<view class="name">{{detail.photographer}}</view>
|
|
<view class="sub">{{detail.subtitle}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="card ui-card">
|
|
<view class="row"><text class="k">预约时间</text><text class="v">{{detail.time}}</text></view>
|
|
<view class="row"><text class="k">拍摄时长</text><text class="v">{{detail.duration}}</text></view>
|
|
<view class="row"><text class="k">设备选择</text><text class="v">{{detail.device}}</text></view>
|
|
<view class="row"><text class="k">联系方式</text><text class="v">{{detail.contact}}</text></view>
|
|
</view>
|
|
|
|
<view class="card ui-card">
|
|
<view class="k">备注信息</view>
|
|
<view class="remark">{{detail.note}}</view>
|
|
</view>
|
|
|
|
<view class="fee-card">
|
|
<text class="k">费用</text>
|
|
<text class="fee">¥ {{detail.total}}</text>
|
|
</view>
|
|
|
|
<view class="bottom">
|
|
<view class="btn ghost ui-btn-ghost" bindtap="onTapCancel">取消预约</view>
|
|
<view class="btn solid ui-btn-primary" bindtap="onTapContact">联系摄影师</view>
|
|
</view>
|
|
</view>
|