DESKTOP-2S67K1S\31396 2 years ago
parent
commit
b22a38eaea
1 changed files with 17 additions and 1 deletions
  1. 17 1
      src/mixin/index.js

+ 17 - 1
src/mixin/index.js

@@ -545,6 +545,21 @@ const channelMixin = {
   }
 }
 
+// 手机系统
+const systemMixin = {
+  data() {
+    return {
+      systemOptions: [{
+        value: 'Android',
+        label: 'Android'
+      }, {
+        value: 'iOS',
+        label: 'iOS'
+      }]
+    }
+  }
+}
+
 export {
   devMixin,
   devTypeMixin,
@@ -566,5 +581,6 @@ export {
   classifyMixin,
   currentMixin,
   coverMixin,
-  channelMixin
+  channelMixin,
+  systemMixin
 }