浏览代码

全局判断手机系统

DESKTOP-O04BTUJ\muzen 3 年之前
父节点
当前提交
19e795a79e
共有 1 个文件被更改,包括 11 次插入1 次删除
  1. 11 1
      src/main.js

+ 11 - 1
src/main.js

@@ -3,9 +3,19 @@ import App from './App'
 
 Vue.config.productionTip = false
 
+// 打开App
+Vue.prototype.openApp = function () {
+  const res = uni.getSystemInfoSync()
+  if (res.platform === 'ios') {
+    window.location.href = 'MKROhPlay://'
+  } else {
+    window.location.href = 'airsmart://com.muzen.radioplayer:8888/main'
+  }
+}
+
 App.mpType = 'app'
 
 const app = new Vue({
   ...App
 })
-app.$mount()
+app.$mount()