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.

20 lines
883 B

  1. <view class="navbar" style="background:{{background}}!important;">
  2. <view style="{{'height: ' + statusBarHeight}}"></view>
  3. <view class='title-container'>
  4. <view class='capsule' wx:if="{{ back || home}}">
  5. <view class="view" bindtap='back' wx:if="{{back}}">
  6. <image class="img" style="left:36%;" src='img/back.svg'></image>
  7. </view>
  8. <view class="view" bindtap='backHome' wx:if="{{home}}">
  9. <image class="img" src='img/home.svg' style="width:90%;"></image>
  10. </view>
  11. </view>
  12. <view class='title' style="color:{{color}}!important">{{text}}</view>
  13. <picker bindchange="bindPickerChange" wx:if="{{showLocationIf}}" class="pick-box" value="{{index}}" range="{{array}}">
  14. <icon class='iconfont icon-daohangdizhiweizhi'></icon>
  15. <view class="picker locations">
  16. {{array[index]}}
  17. </view>
  18. </picker>
  19. </view>
  20. </view>