index.vue 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. }
  10. },
  11. onLoad() {
  12. // if (plus.os.name == "Android") { //安卓
  13. // if (plus.runtime.isApplicationExist({ //查看安卓系统手机有没有下载这款app
  14. // pname: 'com.baijia.live', //B款app云打包的包名
  15. // })) { //安装了app
  16. // plus.runtime.openURL('bjhlliveapp://room.join?joinCode=' + params.joinCode + '&userName=' + params
  17. // .userName + '&userType=' + params.userType + '&classType=' + params.classType +
  18. // '&privateDomain=e87766440',
  19. // function(res) {
  20. // console.log(res);
  21. // });
  22. // } else { //未安装app
  23. // uni.showModal({
  24. // title: '提示',
  25. // content: '您还没有此APP,去下载',
  26. // success: function(res) {
  27. // if (res.confirm) {
  28. // plus.runtime.openURL(
  29. // 'https://a.app.qq.com/o/simple.jsp?pkgname=com.baijia.live',
  30. // function(res) { //打开应用宝 让应用宝下载app
  31. // //进入后台小哥哥给我的appStore下载app链接,,让你们后台给你
  32. // //这链接会判断你手机是ios还是Android,ios进入应用宝下载app
  33. // //跟上面的是一个链接
  34. // console.log(res);
  35. // });
  36. // } else if (res.cancel) {
  37. // console.log('用户点击取消');
  38. // }
  39. // }
  40. // });
  41. // }
  42. // } else if (plus.os.name == "iOS") { //苹果
  43. // //因为ios查不到B款app在ios系统手机里面,其实下载了,也是检测不到,所以就不检测了
  44. // //直接打开B款app,B款app没有的话,会进入回调报错,我们在回调去打开下载链接
  45. // plus.runtime.launchApplication({
  46. // action: 'bjhlliveapp://room.join?joinCode=' + params.joinCode + '&userName=' + params
  47. // .userName + '&userType=' + params.userType + '&classType=' + params.classType +
  48. // '&privateDomain=e87766440'
  49. // }, function(e) {
  50. // uni.showModal({
  51. // title: '提示',
  52. // content: '您还没有此APP,去下载',
  53. // success: function(res) {
  54. // if (res.confirm) {
  55. // plus.runtime.openURL(
  56. // 'https://a.app.qq.com/o/simple.jsp?pkgname=com.baijia.live',
  57. // function(res) { //打开应用宝 让应用宝下载app
  58. // //进入后台小哥哥给我的appStore下载app链接,,让你们后台给你
  59. // //这链接会判断你手机是ios还是Android,ios进入应用宝下载app
  60. // //跟上面的是一个链接
  61. // console.log(res);
  62. // });
  63. // } else if (res.cancel) {
  64. // console.log('用户点击取消');
  65. // }
  66. // }
  67. // });
  68. // });
  69. // }
  70. },
  71. methods: {
  72. }
  73. }
  74. </script>
  75. <style>
  76. </style>