{ "path" : "pages/search/search", "style" : { "navigationBarTitleText": "", "enablePullDownRefresh": false, "app-plus": { // 配置导航栏 "titleNView": { // 导航栏搜索框 "searchInput": { "align":"center", "backgroundColor":"#F5F4F2", "borderRadius":"4px", //"disabled": true, disabled设置为true后搜索栏将不能输入信息 "placeholder":"搜索帖子", "placeholderColor":"#6D6C67" }, "buttons":[{ "color":"#333333", "colorPressed":"#FD597C", "float":"right", "fontSize":"20px", "text":"搜索" }] } } }}
取消左侧默认返回按钮,从左侧进入的动画效果
{ "path" : "pages/user-list/user-list", "style" : { // app端配置 "app-plus": { // 动画效果,从左侧进入 "animationType":"slide-in-left", // 导航栏配置 "titleNView": { // 取消返回按钮 "autoBackButton":false, // 导航栏搜索框 "searchInput": { "align":"center", "backgroundColor":"#F5F4F2", "borderRadius":"4px", "placeholder":"搜索", "placeholderColor":"#6D6C67" }, "buttons":[{ "color":"#333333", "colorPressed":"#FD597C", "float":"right", "fontSize":"20px", "text":"取消" }] } } } }