底部导航
底部导航配置点击事件可以实现页面间跳转。

属性
数据
项目列表
支持新增、编辑、删除等。

可以通过fx动态绑定接口返回格式如下:
{
    status: 0,
    data: [
        {
            text: '导航1',
            iconPath: 'http://**',
            selectedIconPath: 'http://**',
            active: true
        },
        {
            text: '导航2',
            iconPath: 'http://**',
            selectedIconPath: 'http://**'
        }
    ]
}
列表项字段说明
| 属性名 | 属性标识 | 类型 | 
|---|---|---|
| 标题 | text | string | 
| 默认图标 | iconPath | string | 
| 选中图标 | selectedIconPath | string | 
| 是否激活 | active | boolean | 
| 点击事件 | action | object |