本文主要包含hbuilder mui,hbuilder mui视频教程,hbuilder mui教程,hbuilder mui api,hbuilder mui app,hbuilder调用QQ等相关知识,教程希望在学习及工作中可以帮助到您
业务需求:app 页面挂个公司的客服Q号,用户点击Q号,唤起用户手机QQ的聊天窗口与客服对话。
- function KeFuQQ() {
- if (plus.os.name == "iOS") {
- plus.runtime.launchApplication({
- action: "mqq://im/chat?chat_type=wpa&uin=634381967&version=1&src_type=web"
- }, function(e) {
- plus.nativeUI.confirm("检查到您未安装qq,请先到appstore搜索下载?", function(i) {
- if (i.index == 0) {
- iosAppstore("itunes.apple.com/cn/app/mqq/");
- }
- });
- });
- }
- }