index.wxml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!--index.wxml-->
  2. <view class="order-details">
  3. <token-show title="{{'订单详情'}}" wx:if="{{ token==='' }}" />
  4. <van-row wx:if="{{loading}}">
  5. <van-col span="24" custom-class="asd">
  6. <van-skeleton title row="3" />
  7. </van-col>
  8. <van-col span="24" custom-class="asd">
  9. <van-skeleton title row="3" />
  10. </van-col>
  11. <van-col span="24" custom-class="asd">
  12. <van-skeleton title row="3" />
  13. </van-col>
  14. <van-col span="24" custom-class="asd">
  15. <van-skeleton title row="3" />
  16. </van-col>
  17. <van-col span="24">
  18. <van-skeleton row="3" />
  19. </van-col>
  20. </van-row>
  21. <view class="order-details-header" wx:if="{{!loading&&token!==''}}">
  22. {{items.flow_stage}}:{{items.status_name}}
  23. </view>
  24. <view class="order-details-main" wx:if="{{!loading&&token!==''}}">
  25. <van-cell title="订单号:" title-width="70px" value="{{items.reqCode}}" />
  26. <van-cell title="公司名称:" title-width="70px" value="{{items.companyName}}" custom-class="item-nth" />
  27. <van-cell title="活动类型:" title-width="70px" value="{{items.require_item_name}}" />
  28. <van-cell title="活动时间:" title-width="70px" value="{{items.act_time_day}}~{{items.act_time_end_day}},共{{items.act_day_count}}天" custom-class="item-nth" />
  29. <van-cell title="意向位置:" title-width="70px" value="{{items.shortname}}" />
  30. <van-cell title="活动人数:" title-width="70px" value="{{items.participant_min}}{{items.participant_max===0?'+人':'~'+items.participant_max+'人'}}" custom-class="item-nth" />
  31. <van-cell title="活动预算:" title-width="70px" value="{{items.budget_name}}" />
  32. <van-cell title="会议项目:" title-width="70px" value="{{items.req_demand_name_label}}" custom-class="item-nth" />
  33. <van-cell title="联系电话:" title-width="70px" value="{{items.req_tel}}" />
  34. <van-cell title="创建时间:" title-width="70px" value="{{items.create_time}}" custom-class="item-nth" />
  35. </view>
  36. <view class="order-details-footer" wx:if="{{!loading&&token!==''}}">
  37. <van-icon name="manager" color="#FFFFFF" custom-style="float: left;background:#DCDFE6;padding:6px;border-radius:50%" size="28px" />
  38. <view class="footer-title">会议顾问</view>
  39. <van-button round type="primary" icon="phone" custom-style="float: right;height:40px;padding:0 20px " bind:click="phoneOpen">联系顾问</van-button>
  40. </view>
  41. </view>