ihone6s, ios12版本测试的
// 调用原生view绘制右上角图片
drawImg(){
let _this = this;
_this.nview = new plus.nativeObj.View('test',{position:'absolute',top:_this.topval,right:'30px',height:'30px',width:'100%'});
let richtext = `<img src="${_this.ggImgLink}" width="30px" height="30px"></img>`;
// 绘制
let r = '32px';
if(plus.os.name == "iOS"){
r = '5px';
}
_this.nview.drawRichText(richtext, {top:'0',right:r,width:'30px',height:'wrap_content'}, {onClick:function(e){
// _this.$router.push(`outerPage?links=${_this.ggLink}&title=${_this.ggTxt}`);
plus.runtime.openURL(_this.ggLink)
}});
_this.nview.show();
},
1 个回复
1***@qq.com
楼主您好, 请问这个问题您解决了吗。。