bluetoothUnlockAuth.vue 852 B

12345678910111213141516171819202122232425262728293031323334353637
  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. export default {
  11. components: {
  12. AndroidUnlockAuth,
  13. IosUnlockAuth
  14. },
  15. data() {
  16. return {
  17. platform: 'android',
  18. show: false
  19. }
  20. },
  21. onLoad() {
  22. this._initPlatform();
  23. },
  24. methods: {
  25. open() {
  26. this.show = true;
  27. console.log(111, this.platform)
  28. },
  29. _initPlatform() {
  30. const systemInfo = uni.getSystemInfoSync();
  31. this.platform = systemInfo.platform;
  32. }
  33. }
  34. }
  35. </script>