business.wxml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <view class="app_page-header-search">
  2. <view class="app_page-header-search-warp app_width-690 page-header-search">
  3. <label for="header-search">
  4. <image src=""></image>
  5. </label>
  6. <input placeholder-class="app_header-search-placeholder" value="" placeholder="搜索信息"></input>
  7. </view>
  8. </view>
  9. <scroll-view
  10. class="app_nav-wrap"
  11. scroll-x="{{true}}">
  12. <view
  13. class="nav {{currentCategory === item.id ? 'active' : ''}}"
  14. wx:for="{{category}}"
  15. wx:key="id"
  16. data-item="{{item}}"
  17. bind:tap="handleNav">
  18. <view class="photo">
  19. <image src=""></image>
  20. </view>
  21. <view class="name">{{item.name}}</view>
  22. </view>
  23. </scroll-view>
  24. <view class="list" wx:for="{{list}}" wx:key="index" data-item="{{item}}" bindtap="jumpBusinessDetail">
  25. <view class="item-info">
  26. <view class="top">
  27. <view class="logo">
  28. <image class="" src=""></image>
  29. </view>
  30. <view class="info">
  31. <view class="name">名字名字名字名字名字名字名字名字</view>
  32. <view class="goods-count">99999商品 9999999999人关注</view>
  33. </view>
  34. <button class="contact" type="default">点击联系</button>
  35. </view>
  36. <view class="bottom">
  37. <button type="default">电话:12345678901</button>
  38. <button type="default">微信:wxid_drq1i2lrkao22wxid_drq1i2lrkao22wxid_drq1i2lrkao22</button>
  39. </view>
  40. </view>
  41. </view>
  42. <!-- 无数据 -->
  43. <view class="list-bitmap" wx:if="{{finished && list.length < 1}}">
  44. <image src="system"></image>
  45. <text>暂无数据</text>
  46. </view>
  47. <!-- 上拉加载 -->
  48. <view class="pullup-wrapper" wx:if="{{!isRefresh}}">
  49. <van-loading wx:if="{{!finished}}" size="24px" type="spinner">加载中...
  50. </van-loading>
  51. </view>