| 12345678910111213141516171819202122232425262728293031323334 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="中义商城"></cu-custom>
- <view class="zyShopContent">
- <view class="className">
- <scroll-view scroll-y enable-back-to-top>
- <block wx:for="{{listClassify}}" wx:for-item="item" wx:for-index="index" wx:key="index">
- <view bindtap="goIfy" data-id="{{item.id}}" class="{{goodId == item.id ?'active':''}}">
- <text>{{item.name}}</text>
- </view>
- </block>
- </scroll-view>
- </view>
- <view class="goods">
- <scroll-view scroll-y enable-back-to-top>
- <block wx:for="{{goodsByClassifyList}}" wx:for-item="item" wx:for-index="index" wx:key="index">
- <view class="goodsInfo" bindtap="goGoodsInfo" data-item="{{item}}">
- <view>
- <image src="{{item.banners}}"></image>
- </view>
- <view class="content">
- <text>{{item.name}}</text>
- <view>
- <text>{{item.tags}}</text>
- </view>
- <text>价格:<text>{{item.price}}</text></text>
- </view>
- </view>
- </block>
- </scroll-view>
- </view>
- </view>
- <view class="but">
- <view bindtap="exchange">订单记录</view>
- </view>
|