choose-org.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!-- 前台导入wxmlUtil.wxs -->
  2. <wxs src='/utils/wxmlUtil.wxs' module="wxmlUtil"></wxs>
  3. <!-- 加载图层 -->
  4. <loading wx:if="{{loading}}"></loading>
  5. <!-- 粘性布局的查询条件 -->
  6. <van-sticky scroll-top="0">
  7. <van-search model:value="{{ searchText }}" bind:change="onSearchText" bind:search="doSearch" use-action-slot placeholder="搜索 客户名称/地址/标签/电话/备注">
  8. </van-search>
  9. <view style="display: flex; padding: 4vw; background: white;">
  10. <view class="image-frame">
  11. <van-image round width="20rpx" height="24rpx" src="/static/image/Vector.png" />
  12. </view>
  13. <view>沈阳蒙娜丽莎红星美凯龙专营店</view>
  14. </view>
  15. </van-sticky>
  16. <!-- 暂无数据 -->
  17. <van-empty wx:if="{{tableData.length<=0}}" description="{{$t['nodata']}}" />
  18. <!-- 列表 -->
  19. <view wx:for="{{tableData}}" style="margin:10px;background:white;border-radius:15rpx;padding: 10px;">
  20. <view wx:for="{{item}}" wx:for-item="item_" wx:for-index="index_" >
  21. <view style="width: 100vw; display:flex;align-items:center; font-size:36rpx;margin-top: 5px;"data-item="{{item_}}" bindtap="clickName">
  22. <view style="margin-left: 5vw;font-size: 14px;" >
  23. {{item_.orgName}}
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <van-divider wx:if="{{noMore}}" contentPosition="center" borderColor="#DCDCDC">{{$t['noMore']}}</van-divider>
  29. <view style="height: 135rpx;"></view>