DESKTOP-2S67K1S\31396 2 年之前
父节点
当前提交
c71d90d703
共有 1 个文件被更改,包括 23 次插入1 次删除
  1. 23 1
      src/mixin/index.js

+ 23 - 1
src/mixin/index.js

@@ -33,7 +33,28 @@ const devMixin = {
         })
       }
     })
-  },
+  }
+}
+
+// 设备模式
+const devTypeMixin = {
+  data() {
+    return {
+      typeOptions: [{
+        value: 1,
+        label: '蓝牙'
+      }, {
+        value: 2,
+        label: 'WIFI'
+      }, {
+        value: 3,
+        label: '传统蓝牙'
+      }, {
+        value: 4,
+        label: '4G'
+      }]
+    }
+  }
 }
 
 // 服务时长
@@ -523,6 +544,7 @@ const channelMixin = {
 
 export {
   devMixin,
+  devTypeMixin,
   serviceTimeMixin,
   serviceTypeMixin,
   isFreeMixin,