Authored by 沈志敏

更新头部信息

... ... @@ -294,6 +294,23 @@ const yoho = {
},
/**
* 更新头部信息
* @param args {""}
* @param success
* @param fail
*/
updateNavigationBar(args, success, fail) {
if (this.isApp) {
window.yohoInterface.triggerEvent(success || function() {}, fail || function() {}, {
method: 'update.navigationBarStyle',
arguments: args
});
} else {
tip(tipInfo);
}
},
/**
* 显示 loading
* @param args Boolen
* @param success
... ...
... ... @@ -210,7 +210,7 @@
header.defaultSelectedIndex = '1';
header.right.des = this.editmodel ? '完成' : '编辑';
return yoho.goPageView({
return yoho.updateNavigationBar({
header: header
});
});
... ...
... ... @@ -228,7 +228,7 @@
header.defaultSelectedIndex = '0';
header.right.des = this.editmodel ? '完成' : '编辑';
return yoho.goPageView({
return yoho.updateNavigationBar({
header: header
});
});
... ...