homePage.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script setup>
  6. // 添加路由拦截
  7. import '@/interceptor/routeInterceptor.js'
  8. import { encryptByEnAESLogin } from '@/utils/index.js'
  9. import { onLoad } from '@dcloudio/uni-app'
  10. import { defaultColor } from '@/static/js/theme.js'
  11. import { api_wechatLoginEncrypt, api_loginEncrypt, api_systemConfiguration, api_getDictionary} from "@/http/api.js"
  12. import { useWechatAuth } from '@/share/useWechatAuth.js'
  13. import { useLoginSuccess } from '@/share/useLoginSuccess.js'
  14. import { useSetTitle } from '@/share/useSetTitle.js'
  15. useSetTitle()
  16. const { wechatAuth } = useWechatAuth()
  17. const { loginSuccess } = useLoginSuccess()
  18. /**
  19. * 微信登录
  20. */
  21. function wechatLoginEncrypt() {
  22. const url = window.location.href.split("?");
  23. let wenhaohoumian = window.location.href.split("?code="); //截取问号地址数组
  24. let codeStr = wenhaohoumian[1]; //地址数组赋值
  25. if (!url[1]) {
  26. wechatAuth();
  27. } else {
  28. codeStr = codeStr.split("&");
  29. codeStr = codeStr[0];
  30. uni.showLoading({
  31. title: "登录中",
  32. mask: true,
  33. });
  34. api_wechatLoginEncrypt({
  35. code:codeStr
  36. }).then(res => {
  37. uni.hideLoading();
  38. if (res.status == 200) {
  39. loginSuccess(res.user);
  40. getConfig();
  41. changeGroup();
  42. } else if (res.status == 501) {
  43. uni.showModal({
  44. title: '提示',
  45. content: '您的账号被删除,请联系管理员',
  46. showCancel: false,
  47. confirmColor: defaultColor,
  48. confirmText: '取消',
  49. });
  50. } else if (res.status == 555) {
  51. uni.reLaunch({
  52. url: `/pages/initBind/initBind?wechat=${res.wechat}`
  53. })
  54. } else {
  55. uni.showToast({
  56. icon: 'none',
  57. title: res.remarks || '请求数据失败!'
  58. });
  59. }
  60. });
  61. }
  62. }
  63. /**
  64. * 账号密码登录
  65. */
  66. function loginEncrypt(username, password) {
  67. uni.showLoading({
  68. title: "登录中",
  69. mask: true,
  70. });
  71. let postData = {
  72. k: encryptByEnAESLogin(JSON.stringify({username, password}))
  73. };
  74. api_loginEncrypt(postData).then(res => {
  75. uni.hideLoading();
  76. getConfig();
  77. changeGroup();
  78. if (res.state == 200) {
  79. loginSuccess(res.data);
  80. } else {
  81. uni.showToast({
  82. icon: 'none',
  83. title: res.remarks || '请求数据失败!'
  84. });
  85. }
  86. });
  87. }
  88. // 获取配置项
  89. function getConfig(){
  90. api_systemConfiguration({
  91. idx: 0,
  92. sum: 9999,
  93. }).then(res=>{
  94. uni.setStorageSync('sysData',JSON.stringify(res.list))
  95. })
  96. }
  97. // 获取工作组
  98. function changeGroup(){
  99. let postData = {
  100. "key": 'usertype',
  101. "type": "list",
  102. };
  103. api_getDictionary(postData).then((data) => {
  104. uni.setStorageSync('groupData',JSON.stringify(data))
  105. });
  106. }
  107. onLoad((option) => {
  108. uni.clearStorageSync();
  109. // 获取当前页面的实例
  110. const pages = getCurrentPages();
  111. const currentPage = pages[pages.length - 1];
  112. // 获取URL参数
  113. const options = currentPage.options;
  114. if (process.env.NODE_ENV === 'development' && options.username && options.password) {
  115. // http://localhost:8081/user/#/?username=liaomingming&password=Dstech@123
  116. // 本地开发调试用
  117. loginEncrypt(options.username, options.password)
  118. } else {
  119. wechatLoginEncrypt();
  120. }
  121. })
  122. </script>