business.wxml 1.8 KB

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