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.

14 line
607 B

  1. <view class="navbar" style="{{'height: ' + navigationBarHeight}};background:{{background}}!important;">
  2. <view style="{{'height: ' + statusBarHeight}}"></view>
  3. <view class='title-container'>
  4. <view class='capsule' wx:if="{{ back || home}}">
  5. <view bindtap='back' wx:if="{{back}}">
  6. <image style="left:36%;" src='img/back.svg'></image>
  7. </view>
  8. <view bindtap='backHome' wx:if="{{home}}">
  9. <image src='img/home.svg' style="width:90%;"></image>
  10. </view>
  11. </view>
  12. <view class='title' style="color:{{color}}!important">{{text}}</view>
  13. </view>
  14. </view>