shopInfo.wxml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <!--pages/shopInfo/shopInfo.wxml-->
  2. <!-- 店铺信息 & 收藏 -->
  3. <view class="container">
  4. <view class="shopInfo">
  5. <view class="shopLogo">
  6. <image src="{{shopInfo.shopLogo}}"></image>
  7. </view>
  8. <view class="shopTitle">
  9. <view class="shopName">{{shopInfo.shopName}}</view>
  10. <view class="shopTel">联系电话:{{shopInfo.tel}}</view>
  11. </view>
  12. <!-- <view class="collection" bindtap='addOrCannelCollection'>
  13. <image wx-if="{{!isCollection}}" src="../../images/icon/prod-col.png"></image>
  14. <image wx-if="{{isCollection}}" src="../../images/icon/prod-col-red.png"></image>
  15. 收藏
  16. </view> -->
  17. </view>
  18. <!-- 评分栏 -->
  19. <!-- <view class="grade">
  20. <view class="gradeItem">
  21. 评价
  22. <text class="fraction">87.7</text>
  23. </view>
  24. <view class="gradeItem">
  25. 评价
  26. <text class="fraction">87.7</text>
  27. </view>
  28. <view class="gradeItem">
  29. 评价
  30. <text class="fraction">87.7</text>
  31. </view>
  32. </view> -->
  33. <!-- 其他信息 -->
  34. <!-- <view class="other">
  35. <view class="otherItem">
  36. <text class="itemContent">联系客服</text>
  37. <image class="otherIcon" src=""></image>
  38. </view>
  39. <view class="otherItem">
  40. <text class="itemContent">证件信息</text>
  41. <image class="otherIcon" src=""></image>
  42. </view>
  43. </view> -->
  44. <!-- <view class="shopDetails">
  45. <view class="otherItem">
  46. <text class="itemContent">店铺简介</text>
  47. <view>海马购自营超市~~</view>
  48. </view>
  49. <view class="otherItem">
  50. <text class="itemContent">开店时间</text>
  51. <view>2019年09月18日</view>
  52. </view>
  53. </view> -->
  54. <!-- 店铺简介 -->
  55. <view class="shop-intro">
  56. <view class="intro-tit">店铺简介</view>
  57. <view class="intro-content">{{shopInfo.intro}}</view>
  58. </view>
  59. </view>