123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <script>
- var http = require('./common/http.js');
- import SystemInfoUtil from './common/SystemInfoUtil.js';
- export default {
- data() {
- return {};
- },
- onLaunch: function () {
- SystemInfoUtil.init();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- },
- globalData: {
- userInfo: null,
- adapterStateChangeFunc: {},
- connectionStateChangeFunc: {},
- characteristicStateChangeFunc: {},
- connectionState: {},
- bluetoothConfig: {},
- deviceBTBMSBuf: {}
- }
- };
- </script>
- <style>
- @import './app.css';
- </style>
|