index.wxml 565 B

123456789101112131415161718
  1. <view style="padding-top: 12vh;">
  2. <t-result theme="success" t-class="bigicon">
  3. <view slot="title"> 下单成功 </view>
  4. <view slot="description">
  5. <view class="d-flex" style="padding-top: 30rpx;">
  6. <view>编号:</view>
  7. <view>{{orderCode}}</view>
  8. </view>
  9. <view class="d-flex">
  10. <view>状态:</view>
  11. <view>正在分配业务员跟进</view>
  12. </view>
  13. <view style="padding-top: 30rpx;">
  14. <t-button bindtap="gotoDetail">查看订单</t-button>
  15. </view>
  16. </view>
  17. </t-result>
  18. </view>