index.wxml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <view class="example-search">
  2. <t-search model:value="{{value}}" bind:submit="onSubmit" bind:clear="onSubmit" placeholder="{{language['关键字']||'搜索'}}" />
  3. </view>
  4. <t-pull-down-refresh
  5. value="{{baseRefresh.value}}"
  6. loadingProps="{{loadingProps}}"
  7. loadingTexts="{{loadingTexts}}"
  8. bind:refresh="onPullDownRefresh"
  9. bind:scrolltolower="onReachBottom"
  10. >
  11. <view style="padding:10px;">
  12. <t-card wx:for="{{list}}" wx:key="sa_orderid" data-item="{{item}}" bindtap="onClick">
  13. <view style="flex:1" slot="content">
  14. <view class="flex-align-center flex-between card__header">
  15. <view>
  16. <t-tag class="mr-5" wx:if="{{item.enterprisename}}" variant="light" shape="round" theme="primary" size="small">{{item.enterprisename}}</t-tag>
  17. <t-tag class="mr-5" wx:if="{{item.type}}" variant="light" shape="round" theme="primary" size="small">{{language[item.type]||item.type}}</t-tag>
  18. </view>
  19. </view>
  20. <view class="card__body">
  21. <view class="small colorInfo">
  22. {{language['联系人']||'联系人'}}:{{item.contact}}
  23. </view>
  24. <view class="small colorInfo">
  25. {{language['联系电话']||'联系电话'}}:{{item.phonenumber}}
  26. </view>
  27. <view class="small colorInfo">
  28. {{language['地址']||'地址'}}:{{item.province}}{{item.city}}{{item.county}}{{item.address}}
  29. </view>
  30. </view>
  31. </view>
  32. </t-card>
  33. </view>
  34. </t-pull-down-refresh>