12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <view class="app_page-header-search">
- <view class="app_page-header-search-warp app_width-690 page-header-search">
- <label for="header-search">
- <image src=""></image>
- </label>
- <input placeholder-class="app_header-search-placeholder" value="" placeholder="搜索信息"></input>
- </view>
- </view>
- <scroll-view
- class="app_nav-wrap"
- scroll-x="{{true}}"
- scroll-with-animation="{{true}}">
- <view
- class="nav {{currentCategory === item.id ? 'active' : ''}}"
- wx:for="{{category}}"
- wx:key="id"
- data-item="{{item}}"
- bind:tap="handleNav">
- <view class="photo">
- <image src=""></image>
- </view>
- <view class="name">{{item.name}}</view>
- </view>
- </scroll-view>
- <view class="list" wx:for="{{list}}" wx:key="index" data-item="{{item}}" bindtap="jumpBusinessDetail">
- <view class="item-info">
- <view class="top">
- <view class="logo">
- <image class="" src=""></image>
- </view>
- <view class="info">
- <view class="name">名字名字名字名字名字名字名字名字</view>
- <view class="goods-count">99999商品 9999999999人关注</view>
- </view>
- <button class="contact" type="default">点击联系</button>
- </view>
- <view class="bottom">
- <button type="default">电话:12345678901</button>
- <button type="default">微信:wxid_drq1i2lrkao22wxid_drq1i2lrkao22wxid_drq1i2lrkao22</button>
- </view>
- </view>
- </view>
- <!-- 无数据 -->
- <view class="list-bitmap" wx:if="{{finished && list.length < 1}}">
- <image src="system"></image>
- <text>暂无数据</text>
- </view>
- <!-- 上拉加载 -->
- <view class="pullup-wrapper" wx:if="{{!isRefresh}}">
- <van-loading wx:if="{{!finished}}" size="24px" type="spinner">加载中...
- </van-loading>
- </view>
|