赞
踩
UNIAPP 自带的原生导航尽管流畅度非常好,但是在具体项目中有的时候需要动态设置以及特殊样式的 底部菜单 这个时候就需要自己去写一个自定义的底部tabbar
项目地址 fr_uni_app
1、比如需要特殊的图标 多出来一部分的
多出一部分的图标
2、根据登陆帐号的身份加载不同的tabbar
根据登陆帐号的身份加载不同的tabbar
动图预览
预览
解决方案
引入组件(页面)
引入组件(页面)
渲染首页数据
底部tabbar的切换及数据来源
只要控制 store中的 底部菜单数据 即可。页面中动态渲染
- 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);
- });
添加了自己封装的 上传图片的 模块
- //上传示例
- 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)
- },
作者:马码虎呼
链接:https://www.jianshu.com/p/8fda7e91ee2b
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。