12345678910111213141516171819202122232425262728293031323334 |
- <view class="example-search">
- <t-search model:value="{{value}}" bind:submit="onSubmit" bind:clear="onSubmit" placeholder="{{language['关键字']||'搜索'}}" />
- </view>
- <t-pull-down-refresh
- value="{{baseRefresh.value}}"
- loadingProps="{{loadingProps}}"
- loadingTexts="{{loadingTexts}}"
- bind:refresh="onPullDownRefresh"
- bind:scrolltolower="onReachBottom"
- >
- <view style="padding:10px;">
- <t-card wx:for="{{list}}" wx:key="sa_orderid" data-item="{{item}}" bindtap="onClick">
- <view style="flex:1" slot="content">
- <view class="flex-align-center flex-between card__header">
- <view>
- <t-tag class="mr-5" wx:if="{{item.enterprisename}}" variant="light" shape="round" theme="primary" size="small">{{item.enterprisename}}</t-tag>
- <t-tag class="mr-5" wx:if="{{item.type}}" variant="light" shape="round" theme="primary" size="small">{{language[item.type]||item.type}}</t-tag>
- </view>
- </view>
- <view class="card__body">
- <view class="small colorInfo">
- {{language['联系人']||'联系人'}}:{{item.contact}}
- </view>
- <view class="small colorInfo">
- {{language['联系电话']||'联系电话'}}:{{item.phonenumber}}
- </view>
- <view class="small colorInfo">
- {{language['地址']||'地址'}}:{{item.province}}{{item.city}}{{item.county}}{{item.address}}
- </view>
- </view>
- </view>
- </t-card>
- </view>
- </t-pull-down-refresh>
|