homePage.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 } 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. if (!url[1]) {
  24. wechatAuth();
  25. } else {
  26. const code = {
  27. code: url[1],
  28. type: 'user',
  29. };
  30. uni.showLoading({
  31. title: "登录中",
  32. mask: true,
  33. });
  34. api_wechatLoginEncrypt(code).then(res => {
  35. uni.hideLoading();
  36. if (res.state == 200) {
  37. loginSuccess(res.user);
  38. getConfig();
  39. } else if (res.state == 501) {
  40. uni.showModal({
  41. title: '提示',
  42. content: '您的账号被删除,请联系管理员',
  43. showCancel: false,
  44. confirmColor: defaultColor,
  45. confirmText: '取消',
  46. });
  47. } else if (res.state == 403) {
  48. uni.reLaunch({
  49. url: `/pages/initBind/initBind?wechat=${res.wechat}`
  50. })
  51. } else {
  52. uni.showToast({
  53. icon: 'none',
  54. title: res.remarks || '请求数据失败!'
  55. });
  56. }
  57. });
  58. }
  59. }
  60. /**
  61. * 账号密码登录
  62. */
  63. function loginEncrypt(username, password) {
  64. uni.showLoading({
  65. title: "登录中",
  66. mask: true,
  67. });
  68. let postData = {
  69. k: encryptByEnAESLogin(JSON.stringify({username, password}))
  70. };
  71. api_loginEncrypt(postData).then(res => {
  72. uni.hideLoading();
  73. getConfig();
  74. if (res.state == 200) {
  75. loginSuccess(res.data);
  76. } else {
  77. uni.showToast({
  78. icon: 'none',
  79. title: res.remarks || '请求数据失败!'
  80. });
  81. }
  82. });
  83. }
  84. // 获取配置项
  85. function getConfig(){
  86. api_systemConfiguration({
  87. idx: 0,
  88. sum: 9999,
  89. }).then(res=>{
  90. uni.setStorageSync('sysData',JSON.stringify(res.list))
  91. })
  92. }
  93. onLoad((option) => {
  94. uni.clearStorageSync();
  95. // 获取当前页面的实例
  96. const pages = getCurrentPages();
  97. const currentPage = pages[pages.length - 1];
  98. // 获取URL参数
  99. const options = currentPage.options;
  100. if (process.env.NODE_ENV === 'development' && options.username && options.password) {
  101. // http://localhost:8081/user/#/?username=liaomingming&password=Dstech@123
  102. // 本地开发调试用
  103. loginEncrypt(options.username, options.password)
  104. } else {
  105. wechatLoginEncrypt();
  106. }
  107. })
  108. </script>