|
onInit() {
const _this=this;
const currentDate = `${timetool.year}-${Number(timetool.month)}-${Number(timetool.day)}`;
this.currentDate = currentDate;
shortcut.hasInstalled({
success: function(res) {
console.log("是否添加到了桌面==="+res) 这里一直返回false 但是桌面已经有应用的桌面图标了
_this.showInstall=res
}
})
},
installApp(){
const _this=this;
shortcut.install({
success: function(res) {
console.log('handling success======'+res)
if(res=='success'){
prompt.showToast({
message: '已成功添加到桌面',
duration:0
})
_this.showInstall=true;
}
},
fail:function(res){
console.log("用户取消:"+res)
}
})
},
麻烦大佬给指点一下吧!!!!!!
|
|