nav-image.vue 690 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view>
  3. <page-head :title="title"></page-head>
  4. <view class="uni-padding-wrap uni-common-mt">
  5. <view class="uni-title">
  6. <uni-icons size="16" type="info"></uni-icons>说明 : </view>
  7. <view class="uni-helllo-text">
  8. <view>在App端可在pages.json里通过 style -> titleImage 配置,支付宝小程序只支持https地址的图片,暂不支持动态改变;常用于App首页顶部导航显示产品Logo。</view>
  9. <view>在支付宝小程序里请使用真机调试查看效果。</view>
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. title: 'nav-image'
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>