...
|
...
|
@@ -33,7 +33,9 @@ const xianyu = { |
|
|
closeNavRightItem() {
|
|
|
|
|
|
if (this.isAliApp && window.WindVane) {
|
|
|
window.WindVane.call('WVIdleFishApi', 'setHideNavigatorRightItem', {},()=>{},()=>{})
|
|
|
window.WindVane.call('WVIdleFishApi', 'setHideNavigatorRightItem', {},()=>{
|
|
|
},()=>{
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
|
...
|
...
|
@@ -47,12 +49,16 @@ const xianyu = { |
|
|
window._xianyuShare = () => {
|
|
|
this.setXianyuShare(shareParam, handler);
|
|
|
}
|
|
|
// xianyu android bug: title必传切不能为空字符串,icon才能展示
|
|
|
// xianyu ios bug: 图片按钮无法隐藏 TOTO ali修复
|
|
|
const param = {
|
|
|
title: '∙∙∙', // 按钮名称
|
|
|
icon: this.isAndroid ? ' http://cdn.yoho.cn/xianyu/share-btn.png': '',
|
|
|
func: '_xianyuShare' // func: 'test' //点击调用函数 注意调用的函数必须挂载在window上
|
|
|
}
|
|
|
// console.log('this.isAliApp && window.WindVane', this.isAliApp , window.WindVane);
|
|
|
if (this.isAliApp && window.WindVane) {
|
|
|
window.WindVane.call('WVIdleFishApi', 'setNavigatorRightItem', {
|
|
|
title: '∙∙∙', // 按钮名称
|
|
|
func: '_xianyuShare' // func: 'test' //点击调用函数 注意调用的函数必须挂载在window上
|
|
|
}, function(data) {
|
|
|
window.WindVane.call('WVIdleFishApi', 'setNavigatorRightItem',param, function(data) {
|
|
|
console.log('setNavigatorRightItem success:',data);
|
|
|
}, function(e) {
|
|
|
console.log('setNavigatorRightItem error:',e);
|
...
|
...
|
|