odc.xiaohui
2023-11-15 4de5f40a1a7df4a252b0f44869e7599a066c06b2
src/views/login.vue
@@ -205,6 +205,7 @@
  });
};
const setAddUser = async (val: any | number | (string | number)[]) => {
  console.log(val);
  const res = await createUser(val)
@@ -215,8 +216,17 @@
  }
}
import FingerprintJS from '@fingerprintjs/fingerprintjs'
onMounted(async () => {
  FingerprintJS.load().then(fp => {
    fp.get().then(result => {
      const visitorId = result.visitorId;
      console.log(visitorId,'浏览器指纹识别码');
    });
  });
  try {
    // 使用fetch API获取当前IP地址
    await fetch('https://api.ipify.org/?format=json')
@@ -234,9 +244,7 @@
    console.log(error);
  }
  router.push('index')
  // getCode();
  // initTenantList();
  // getLoginData();
});
</script>