C端小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
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>