index.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="nfc-container">
  3. <view class="nfc-container-image">
  4. <image class="nfc-gif" src="@/static/images/common/nfc-flash.gif" mode="aspectFit" style="width: 230px"></image>
  5. </view>
  6. <view class="nfc-container-text">{{ proxy.$settingStore.nfcWaiting }}</view>
  7. </view>
  8. </template>
  9. <script setup>
  10. import config from "@/config";
  11. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  12. import { ref, reactive, computed, getCurrentInstance, toRefs, inject, watch } from "vue";
  13. const { proxy } = getCurrentInstance();
  14. onLoad((options) => {
  15. // 开启nfc初始化
  16. proxy.$nfc.initNFC();
  17. // 开启nfc监听
  18. proxy.$nfc.readNFC().then((event) => {
  19. setTimeout(() => {
  20. proxy.$tab.navigateBack(1); //返回上一级页面
  21. uni.$emit("NFC_readID", event); //将值存储监听器
  22. }, 1000);
  23. });
  24. });
  25. onShow(() => {
  26. //调用系统主题颜色
  27. proxy.$settingStore.systemThemeColor([1]);
  28. });
  29. onUnload(() => {
  30. proxy.$nfc.closeNFC();
  31. });
  32. onReady(() => {});
  33. </script>
  34. <style lang="scss" scoped>
  35. .nfc-container {
  36. &-image {
  37. display: flex;
  38. width: 100%;
  39. justify-content: center;
  40. margin: 55% auto 40px auto;
  41. }
  42. &-text {
  43. text-align: center;
  44. font-size: 16px;
  45. }
  46. }
  47. </style>