brandDetail.wxml
867 Bytes
<view class="container">
<view class="content">
<view class="brand-detail">
<view class="brand-name-tips">店铺名:
<text class="brand-name">{{brandInfo.name}}</text>
</view>
<view class="brand-location-tips">展位号:
<text class="brand-location">{{brandInfo.booth_id}}</text>
</view>
<image class="brand-logo" src="{{brandInfo.logo}}" mode="aspectFill"></image>
<view class="brand-description">{{brandInfo.description}}</view>
</view>
<view class="product-list">
<block wx:for="{{productList.list}}" wx:key="{{index}}">
<productListCell item="{{item}}"></productListCell>
</block>
</view>
</view>
<view class="enter-shop" bindtap="enterShop" data-shop-id="{{shopId}}">进入店铺</view>
</view>