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.
36 lines
895 B
36 lines
895 B
<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里配置buttons,暂不支持动态改变buttons的样式,使用onNavigationBarButtonTap可监听buttons的点击事件。</view> |
|
<view>在小程序端,不支持配置buttons,故按钮不见了。</view> |
|
</view> |
|
</view> |
|
</view> |
|
</template> |
|
<script> |
|
import uniIcons from '@/components/uni-icons/uni-icons.vue' |
|
export default { |
|
data() { |
|
return { |
|
title: 'nav-button' |
|
} |
|
}, |
|
onNavigationBarButtonTap(e) { |
|
uni.showToast({ |
|
title: e.index === 0 ? "你点了分享按钮" : "你点了收藏按钮", |
|
icon: "none" |
|
}) |
|
}, |
|
components:{ |
|
uniIcons |
|
} |
|
} |
|
</script> |
|
|
|
<style> |
|
|
|
</style>
|
|
|