index.wxml 1.7 KB

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