UNIAPP 自帶的原生導航儘管流暢度很是好,可是在具體項目中有的時候須要動態設置以及特殊樣式的 底部菜單 這個時候就須要本身去寫一個自定義的底部tabbarvue
項目地址 fr_uni_appgit
一、好比須要特殊的圖標 多出來一部分的 github
二、根據登錄賬號的身份加載不一樣的tabbar ajax
只要控制 store中的 底部菜單數據 便可。頁面中動態渲染vuex
export default {
state:{
footer_nav:[
{
name:'首頁',
name_code:'home',
icon:'/static/footer_icon/a2.png',
select_icon:'/static/footer_icon/a1.png'
},
{
name:'發佈',
name_code:'publish',
icon:'/static/footer_icon/f2.png',
select_icon:'/static/footer_icon/f1.png'
},
{
name:'個人',
name_code:'my',
icon:'/static/footer_icon/d1.png',
select_icon:'/static/footer_icon/d2.png'
},
],
now_page_index:0,
},
mutations:{
change_page(state,index){
state.now_page_index = index;
}
}
}
複製代碼
添加了本身經常使用的 request請求模塊小程序
//請求示例
this.$ajax
.get({
url: '/admin/get_product_list',
data: {
a: 1
}
})
.then(res => {
this.$alert('狀態碼:' + res.code);
console.log(res);
});
複製代碼
添加了本身封裝的 上傳圖片的 模塊bash
//上傳示例
async choose_img_upload(n) {
this.data_null()
let uploader = new this.$Uploader();
let path_arr = await uploader.choose_and_upload(n);
console.log(path_arr);
this.img_urls = path_arr;
console.log(this.img_urls)
},
複製代碼