greenPro/pages/template/nav-image/nav-image.vue

27 lines
690 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<page-head :title="title"></page-head>
<view class="uni-padding-wrap uni-common-mt">
<view class="uni-title">
<uni-icons size="16" type="info"></uni-icons> : </view>
<view class="uni-helllo-text">
<view>在App端可在pages.json里通过 style -> titleImage 配置支付宝小程序只支持https地址的图片暂不支持动态改变常用于App首页顶部导航显示产品Logo</view>
<view>在支付宝小程序里请使用真机调试查看效果</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'nav-image'
}
}
}
</script>
<style>
</style>