C端小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

31 rader
1.2 KiB

  1. <!--pages/mallInfo.wxml-->
  2. <!-- <button class='goback' bindtap='goback'><image src='{{wmhome}}' mode="widthFix"></image></button> -->
  3. <navbar back home text="关于我们" background='#FD832D' color="#fff"></navbar>
  4. <view style="margin-top:{{navigationBarHeight}}!important;" class='codeBox'>
  5. <view class='code' >
  6. <image class='icons' src="{{img}}" mode='widthFix'></image>
  7. </view>
  8. <view class='info'>
  9. <view class='title'>{{name}}</view>
  10. <text class='introduction'>{{introduction}}</text>
  11. <view class='time'>
  12. <text>营业时间 :</text>
  13. <view class='timesBox'>
  14. <view class='times' wx:for="{{businessHoursH}}" wx:key="index" >
  15. <text>{{item.time}}</text><text style='margin-left:10rpx;'>({{item.weekName}})</text>
  16. </view>
  17. </view>
  18. </view>
  19. <view class='park' wx:if="{{parkPlaceNumber>0}}">
  20. <text>停车位 :</text>
  21. <text>{{parkPlaceNumber}}</text>
  22. </view>
  23. <view class='phone'>
  24. <text>热线电话 :</text>
  25. <image bindtap='phone' data-merchantLinkPhone='{{servicePhone}}' class="tel" src="{{teljpgUrl}}" mode="widthFix" />
  26. <text class='phoneNum' bindtap='phone' data-merchantLinkPhone='{{servicePhone}}'>{{servicePhone}}</text>
  27. </view>
  28. </view>
  29. </view>