index.wxml 2.1 KB

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