index.wxml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!--pages/agent/serviceBillList/index.wxml-->
  2. <t-tabs defaultValue="待指派" bind:change="onTabsChange" t-class="custom-tabs">
  3. <t-tab-panel label="待指派" value="待指派" />
  4. <t-tab-panel label="待处理" value="待处理" />
  5. <t-tab-panel label="进行中" value="进行中" />
  6. <t-tab-panel label="已完成" value="已完成" />
  7. </t-tabs>
  8. <t-pull-down-refresh
  9. value="{{baseRefresh.value}}"
  10. loadingProps="{{loadingProps}}"
  11. loadingTexts="{{['下拉刷新', '松手刷新', '正在刷新', '刷新完成']}}"
  12. bind:refresh="onPullDownRefresh"
  13. bind:scrolltolower="onReachBottom"
  14. >
  15. <view style="padding:10px">
  16. <t-card url="{{'/pages/agent/serviceBillDetail/index?id=' + item.sa_serviceorderid}}" wx:for="{{list}}" wx:key="sa_serviceorderid">
  17. <view style="flex:1" slot="content">
  18. <view class="flex-align-center flex-between card__header">
  19. <view>
  20. <t-tag class="mr-5" variant="light" shape="round" theme="primary" size="small">{{item.servicetype}}</t-tag>
  21. <t-tag class="mr-5" variant="light" shape="round" theme="primary" size="small">{{item.class1}}</t-tag>
  22. <t-tag class="mr-5" variant="light" shape="round" theme="primary" size="small">{{item.class2}}</t-tag>
  23. </view>
  24. <text>{{item.status}}</text>
  25. </view>
  26. <view class="card__body">
  27. <view>服务地址:{{item.province}}{{item.city}}{{item.county}}{{item.address}}</view>
  28. <view style="margin-top:3px">
  29. <!-- <view class="colorInfo small">关联订单:{{item.sonum}}</view> -->
  30. <view class="colorInfo small">申请单号:{{item.billno}}</view>
  31. <view class="colorInfo small">
  32. <text class="mr-5">现场联系人:{{item.scenecontact}}</text><text class="mr-5">{{item.scenecontactrole}}</text><text class="mr-5">{{item.scenecontactphonenumber}}</text>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </t-card>
  38. <t-fab icon="add" style="position:fixed;right:16px;bottom:72px" bind:click="handleClick" aria-label="增加"></t-fab>
  39. </view>
  40. </t-pull-down-refresh>