C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
432 B

  1. <view class='merchant-detail'>
  2. <!-- 商户列表 -->
  3. <view class='merchant-brand'wx:for="{{shopVoList}}" wx:key="unique">
  4. <view>
  5. <image src='{{data.brandImg}}'></image>
  6. </view>
  7. <view>
  8. <text>{{data.merchantName}}</text>
  9. <text>{{item.shopNumber}}, {{item.buildingName}} {{item.floorName}}</text>
  10. </view>
  11. </view>
  12. </view>