123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <template>
- <view class="uni-padding-wrap">
- <page-head :title="title"></page-head>
- <button @click="setTabBarBadge">
- {{ !hasSetTabBarBadge ? '设置tab徽标' : '移除tab徽标' }}
- </button>
- <button @click="showTabBarRedDot">
- {{ !hasShownTabBarRedDot ? '显示红点' : '移除红点'}}
- </button>
- <button @click="customStyle">
- {{ !hasCustomedStyle ? '自定义Tab样式' : '移除自定义样式'}}
- </button>
- <button @click="customItem">
- {{ !hasCustomedItem ? '自定义Tab信息' : '移除自定义信息' }}
- </button>
- <button @click="hideTabBar">
- {{ !hasHiddenTabBar ? '隐藏TabBar' : '显示TabBar' }}
- </button>
- <view class="btn-area">
- <button type="primary" @click="navigateBack">返回上一级</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'tababr',
- hasSetTabBarBadge: false,
- hasShownTabBarRedDot: false,
- hasCustomedStyle: false,
- hasCustomedItem: false,
- hasHiddenTabBar: false
- }
- },
- destroyed() {
- if (this.hasSetTabBarBadge) {
- uni.removeTabBarBadge({
- index: 1
- })
- }
- if (this.hasShownTabBarRedDot) {
- uni.hideTabBarRedDot({
- index: 1
- })
- }
- if (this.hasHiddenTabBar) {
- uni.showTabBar()
- }
- if (this.hasCustomedStyle) {
- uni.setTabBarStyle({
- color: '#7A7E83',
- selectedColor: '#007AFF',
- backgroundColor: '#F8F8F8',
- borderStyle: 'black'
- })
- }
- if (this.hasCustomedItem) {
- let tabBarOptions = {
- index: 1,
- text: '接口',
- iconPath: '/static/api.png',
- selectedIconPath: '/static/apiHL.png'
- }
- uni.setTabBarItem(tabBarOptions)
- }
- },
- methods: {
- navigateBack() {
- this.$emit('unmount')
- },
- setTabBarBadge() {
- if (!this.hasSetTabBarBadge) {
- uni.setTabBarBadge({
- index: 1,
- text: '1'
- })
- } else {
- uni.removeTabBarBadge({
- index: 1
- })
- }
- this.hasSetTabBarBadge = !this.hasSetTabBarBadge
- },
- showTabBarRedDot() {
- if (!this.hasShownTabBarRedDot) {
- uni.showTabBarRedDot({
- index: 1
- })
- } else {
- uni.hideTabBarRedDot({
- index: 1
- })
- }
- this.hasShownTabBarRedDot = !this.hasShownTabBarRedDot
- },
- hideTabBar() {
- if (!this.hasHiddenTabBar) {
- uni.hideTabBar()
- } else {
- uni.showTabBar()
- }
- this.hasHiddenTabBar = !this.hasHiddenTabBar
- },
- customStyle() {
- if (this.hasCustomedStyle) {
- uni.setTabBarStyle({
- color: '#7A7E83',
- selectedColor: '#007AFF',
- backgroundColor: '#F8F8F8',
- borderStyle: 'black'
- })
- } else {
- uni.setTabBarStyle({
- color: '#FFF',
- selectedColor: '#007AFF',
- backgroundColor: '#000000',
- borderStyle: 'black'
- })
- }
- this.hasCustomedStyle = !this.hasCustomedStyle
- },
- customItem() {
- let tabBarOptions = {
- index: 1,
- text: '接口',
- iconPath: '/static/api.png',
- selectedIconPath: '/static/apiHL.png'
- }
- if (this.hasCustomedItem) {
- uni.setTabBarItem(tabBarOptions)
- } else {
- tabBarOptions.text = 'API'
- uni.setTabBarItem(tabBarOptions)
- }
- this.hasCustomedItem = !this.hasCustomedItem
- }
- }
- }
- </script>
- <style>
- button {
- margin-top: 30upx;
- }
- .btn-area {
- padding-top: 30upx;
- }
- </style>
|