App.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <template>
  2. <el-config-provider :locale="currentLocale">
  3. <router-view />
  4. </el-config-provider>
  5. </template>
  6. <script lang="ts">
  7. import { defineComponent } from "vue";
  8. import { ElConfigProvider } from "element-plus";
  9. import zhCn from "element-plus/lib/locale/lang/zh-cn";
  10. export default defineComponent({
  11. name: "app",
  12. components: {
  13. [ElConfigProvider.name]: ElConfigProvider
  14. },
  15. computed: {
  16. currentLocale() {
  17. return zhCn;
  18. }
  19. }
  20. });
  21. </script>
  22. <script lang="ts" setup>
  23. import { ref, onMounted } from "vue";
  24. import { loadEnv } from "@build/index";
  25. import * as dd from "dingtalk-jsapi";
  26. const { VITE_CORP_ID } = loadEnv();
  27. import { JudgeEnvironment } from "/@/utils/validate";
  28. import { useUserStoreHook } from "/@/store/modules/user";
  29. import { storageSession } from "@pureadmin/utils";
  30. // import { getToken, removeToken } from "/@/utils/auth";
  31. // if (getToken() ?? "") {
  32. // removeToken();
  33. // router.replace({ path: "/login" });
  34. // }
  35. const code = ref("");
  36. function testing() {
  37. dd?.ready(() => {
  38. //使用SDK 获取免登授权码
  39. dd?.runtime?.permission?.requestAuthCode({
  40. corpId: VITE_CORP_ID,
  41. onSuccess: info => {
  42. // alert(JSON.stringify(info));
  43. code.value = info?.code ?? "";
  44. // 根据钉钉提供的api 获得code后,再次调用这个callback方法
  45. // 由于是钉钉获取code是异步操作,不知道什么时候执行完毕
  46. // callback 函数会等他执行完毕后在自己调用自己
  47. // alert(code.value);
  48. setcode(code.value);
  49. },
  50. onFail: err => {
  51. alert("fail");
  52. alert(JSON.stringify(err));
  53. }
  54. });
  55. });
  56. }
  57. function setcode(code) {
  58. const model = { code };
  59. useUserStoreHook()
  60. .dingUserInfor(model)
  61. .then(res => {
  62. if (res !== "error") {
  63. const { data } = res;
  64. // alert(JSON.stringify(data));
  65. const { nickname, token } = data ?? {};
  66. // alert(JSON.stringify(token));
  67. storageSession.setItem("info", {
  68. username: nickname ?? "",
  69. accessToken: token ?? ""
  70. });
  71. }
  72. console.log(res);
  73. })
  74. .catch(() => {});
  75. }
  76. onMounted(() => {
  77. if (JudgeEnvironment() === "isDingDing") {
  78. testing();
  79. }
  80. });
  81. </script>