C端小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

56 строки
1.7 KiB

  1. <!--pages/index/detail/index.wxml-->
  2. <view>
  3. <swiper class="index-slide" autoplay="true" circular="false">
  4. <block wx:for="{{imglist}}" wx:key="unique">
  5. <swiper-item>
  6. <image src="{{item}}" class="index-slide-image" mode='widthFix'/>
  7. </swiper-item>
  8. </block>
  9. </swiper>
  10. <view class='merchant-detail'>
  11. <!-- 品牌信息 -->
  12. <view class='merchant-brand'>
  13. <view>
  14. <image src='{{data.merchantImgUrl}}' mode='aspectFill'></image>
  15. </view>
  16. <view>
  17. <text>{{data.merchantName}}</text>
  18. <text>{{data.title}}</text>
  19. </view>
  20. </view>
  21. <!-- 一个商铺 -->
  22. <!-- 多个商铺 -->
  23. <view class='merchant-shop'>
  24. <view>
  25. <view>
  26. <text>商户位置</text>
  27. </view>
  28. <view class='merchants'>
  29. <text wx:for="{{shopVoList}}" wx:key="{{index}}">{{item.buildingName}}{{item.floorName}}--{{item.shopNumber}}</text>
  30. </view>
  31. </view>
  32. </view>
  33. <!-- 联系方式 -->
  34. <view class='merchant-phone'>
  35. <view>
  36. <text>联系商户</text>
  37. </view>
  38. <view>
  39. <view style='display:block;text-align:left;margin-right:20rpx;'>
  40. <text>{{data.merchantLinkPhone}}</text>
  41. </view>
  42. <image bindtap='phone' data-merchantLinkPhone='{{data.merchantLinkPhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  43. </view>
  44. </view>
  45. <!-- 商户简介 -->
  46. <view class='merchant-phones'>
  47. <view>
  48. <text>商户简介</text>
  49. </view>
  50. <view class='merchant-info'>
  51. <text wx:if="{{data.summary}}">{{data.summary}}</text>
  52. <text wx:else>{{"信息完善中,敬请期待。"}}</text>
  53. </view>
  54. </view>
  55. </view>
  56. </view>