upApp.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. import store from '../store/index.js'
  2. const baseurl = store.state.baseURL
  3. const getUpAppUrl = baseurl + '/api/index'
  4. const iosAppStroeUrl =
  5. 'https://apps.apple.com/cn/app/%E6%BB%A1%E5%9B%AD%E6%98%A5%E7%BA%BF%E4%B8%8A%E5%95%86%E5%9F%8E/id1524593346';
  6. // 获取app是否需要升级
  7. export function getUpApp() {
  8. // 获取当前运行系统
  9. let hj = uni.getSystemInfoSync().platform;
  10. // 获取仓库app数据对象
  11. let app = store.state.isShowIllegality;
  12. // 当前系统为安卓则显示数据
  13. if (hj === 'android') {
  14. // 设置默认显示数据
  15. app = true;
  16. // store.commit('changeState', {
  17. // name: 'app',
  18. // value: app
  19. // });
  20. }
  21. uni.request({
  22. url: getUpAppUrl,
  23. method: 'GET',
  24. data: {},
  25. success: res => {
  26. let r = res.data.data;
  27. console.log(r)
  28. plus.runtime.getProperty(plus.runtime.appid, function(wgtinfo) {
  29. // 保存线上版本号
  30. let version = r.apk;
  31. // 获取线上版本
  32. const arr = r.version_code.split('.');
  33. // 获取当前系统
  34. const arr1 = wgtinfo.version.split('.');
  35. for (let i = 0; i < arr.length; i++) {
  36. // 线上版本号
  37. const x = +arr[i];
  38. // 线下版本号
  39. const y = +arr1[i];
  40. console.log(x, y, '111')
  41. // 判断当前版本是否为小于等于线上版本
  42. if (x >= y) {
  43. // 只有ios才需要显示
  44. if (hj === 'ios') {
  45. // 设置显示数据
  46. app = true;
  47. store.commit('changeState', {
  48. name: 'app',
  49. value: app
  50. });
  51. }
  52. // 当版本较低时更新数据
  53. if (x > y) {
  54. uni.showModal({
  55. title: '提示',
  56. content: '请更新应用',
  57. showCancel: false,
  58. success(e) {
  59. if (hj === 'ios') {
  60. plus.runtime.openURL(
  61. iosAppStroeUrl
  62. );
  63. }
  64. if (hj === 'android') {
  65. // plus.runtime.openURL('http://lxscimg.liuniu946.com/lxscV' + version + '.apk');
  66. downApp(version);
  67. }
  68. }
  69. });
  70. return;
  71. }
  72. }
  73. }
  74. });
  75. },
  76. });
  77. }
  78. // 下载app
  79. export function downApp(version) {
  80. console.log(version,"版本号")
  81. console.log(baseurl,'123')
  82. plus.nativeUI.showWaiting('下载升级包...');
  83. plus.downloader
  84. .createDownload(baseurl + version, {}, (d, status) => {
  85. if (status == 200) {
  86. installApp(d.filename); // 安装app
  87. } else {
  88. plus.nativeUI.alert('下载升级包失败!');
  89. }
  90. plus.nativeUI.closeWaiting();
  91. })
  92. .start();
  93. }
  94. // 安装app
  95. export function installApp(path) {
  96. plus.nativeUI.showWaiting('安装升级包...');
  97. plus.runtime.install(
  98. path, {},
  99. function() {
  100. plus.nativeUI.closeWaiting();
  101. uni.showToast({
  102. icon: 'none',
  103. title: '升级完成,准备重新载入'
  104. });
  105. setTimeout(_ => {
  106. uni.hideToast();
  107. plus.runtime.restart();
  108. }, 1000);
  109. },
  110. function(e) {
  111. plus.nativeUI.closeWaiting();
  112. plus.nativeUI.alert('安装升级包失败[' + e.code + ']:' + e.message);
  113. }
  114. );
  115. }