You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
706 B
15 lines
706 B
<!--pages/process/order-check/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">订单日志</view>
|
|
</cu-custom>
|
|
|
|
<view class="bg-white" style="padding-top:32rpx" wx:if="{{form && form.length}}">
|
|
<van-steps direction="column" dot="{{true}}" step-min-height="128">
|
|
<van-step wx:for="{{form}}" wx:key="index" title="{{item.operatorDesc}}" describe="{{item.operatorUserName + item.createTime}}"></van-step>
|
|
</van-steps>
|
|
</view>
|
|
<view class="list-empty" style="padding-top:96rpx" wx:elif="{{!loading}}">
|
|
<image class="img-empty" src="/assets/image/list_empty.png"></image>
|
|
<view class="text-empty">暂无数据</view>
|
|
</view>
|
|
<notification id="qn-notification"/>
|