bluetoothUnlockAuth.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view>
  3. <!-- <AndroidUnlockAuth v-model="show" v-if="platform === 'android'" />
  4. <IosUnlockAuth v-model="show" v-else-if="platform === 'ios'" /> -->
  5. </view>
  6. </template>
  7. <script>
  8. // import AndroidUnlockAuth from './components/AndroidUnlockAuth.vue'
  9. // import IosUnlockAuth from './components/IosUnlockAuth.vue'
  10. var bluetooth = require('@/common/bluetooth.js');
  11. export default {
  12. components: {
  13. // AndroidUnlockAuth,
  14. // IosUnlockAuth
  15. },
  16. data() {
  17. return {
  18. platform: 'android',
  19. show: false
  20. }
  21. },
  22. onLoad() {
  23. this._initPlatform();
  24. },
  25. onshow(){
  26. const systemInfo = uni.getSystemInfoSync();
  27. console.log(systemInfo.platform,'systemInfo.platform');
  28. this.platform = systemInfo.platform;
  29. },
  30. methods: {
  31. open() {
  32. this.show = true;
  33. },
  34. _initPlatform() {
  35. const systemInfo = uni.getSystemInfoSync();
  36. console.log(systemInfo.platform,'systemInfo.platform');
  37. this.platform = systemInfo.platform;
  38. },
  39. }
  40. }
  41. </script>