使用了vuex做自定义动态tabbar,第一次进去小程序切换不会再闪烁完全是意料之外的收获,嘿嘿。
第一步,在组件里新建自定义tabbar所需的三个页面、还有自定义tabbar和header
tabbar.vue
{{item.text}}
第二步,在,page/index/index里,把第一步的组件引入进来,权限切换操作我都写在该组件里,代码如下:
第四步:创建store文件并挂载到main.js里
import Vue from 'vue'
import App from './App'
//引入vuex
import store from './store/index.js'
//把vuex定义成全局组件
Vue.prototype.$store = store
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App,
store // 挂载
})
app.$mount()
第五步,store中的代码
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
const store = new Vuex.Store({
state: {
userinfo: {
id: 13,
roleType: 1, // 1.游客2.普通用户3.分管4.企业
token: "a3fb27d3d26e43518894fa538c37c075-13",
updateTime: 1617162453105,
},
tabList: [{
iconPath: "/static/data.png",
selectedIconPath: "/static/data-active.png",
text: "数据",
name_code: "datacenter"
}, {
iconPath: "/static/person.png",
selectedIconPath: "/static/person-active.png",
text: "人员",
name_code: "person"
},
{
iconPath: "/static/notice.png",
selectedIconPath: "/static/notice-active.png",
text: "公告",
name_code: "notice"
}],
tab_cur: 1,
test: '测试的呀'
},
// 使用mutations直接更改state的值
mutations: {
tabChange(state, index) {
console.log(state, index, 'store中的tab切换事件')
state.tab_cur = index
},
// tabbar
tabItemChange(state, list) {
console.log(list, 'tab都有什么')
state.tabList = list
},
curChange(state, index) {
console.log(state, index - 1, 'tab-index')
state.tab_cur = index - 1
},
// 测试可删
ontest(state, txt) {
console.log(state, txt, '测试vuex可删')
state.test = txt
},
},
// 使用actions,通过mutations更改state的值
actions: {}
})
export default store
第六步,在App.vue里根据是否存在token判断跳转路由
onLaunch: function() {
// // 本来是隐藏原生的tabbar的
// uni.hideTabBar({
// animation: false
// })
console.log('App Launch')
const token = this.$store.state.userinfo.token
console.log(token, 'App里的token')
// 如果token不存在就跳转登录页,存在就跳首页
if(!token) {
uni.reLaunch({
url: "pages/login/login"
})
} else {
uni.switchTab({
url: "./pages/index/index"
})
}
},
完结撒花。源码在https://download.csdn.net/download/jingruoannan/16581373