business.wxml 1.7 KB

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