homePage.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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, transform } = 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. let loginType = url[1].split("#/")
  26. let str = loginType[0].split("=")
  27. if(str[0]=='loginType'){
  28. uni.setStorageSync('loginType',str[1])
  29. if (!url[2]) {
  30. wechatAuth();
  31. } else {
  32. codeStr = codeStr.split("&");
  33. codeStr = codeStr[0];
  34. uni.showLoading({
  35. title: "登录中",
  36. mask: true,
  37. });
  38. api_wechatLoginEncrypt({
  39. code:codeStr
  40. }).then(res => {
  41. uni.hideLoading();
  42. if (res.status == 200) {
  43. getConfig(res.user);
  44. changeGroup();
  45. } else if (res.status == 501) {
  46. uni.showModal({
  47. title: '提示',
  48. content: '您的账号被删除,请联系管理员',
  49. showCancel: false,
  50. confirmColor: defaultColor,
  51. confirmText: '取消',
  52. });
  53. } else if (res.status == 555) {
  54. uni.reLaunch({
  55. url: `/pages/initBind/initBind?wechat=${res.wechat}`
  56. })
  57. } else {
  58. uni.showToast({
  59. icon: 'none',
  60. title: res.remarks || '请求数据失败!'
  61. });
  62. }
  63. });
  64. }
  65. }else{
  66. // uni.setStorageSync('loginType','2')
  67. if (!url[1]) {
  68. wechatAuth();
  69. } else {
  70. codeStr = codeStr.split("&");
  71. codeStr = codeStr[0];
  72. uni.showLoading({
  73. title: "登录中",
  74. mask: true,
  75. });
  76. api_wechatLoginEncrypt({
  77. code:codeStr
  78. }).then(res => {
  79. uni.hideLoading();
  80. if (res.status == 200) {
  81. getConfig(res.user);
  82. changeGroup();
  83. } else if (res.status == 501) {
  84. uni.showModal({
  85. title: '提示',
  86. content: '您的账号被删除,请联系管理员',
  87. showCancel: false,
  88. confirmColor: defaultColor,
  89. confirmText: '取消',
  90. });
  91. } else if (res.status == 555) {
  92. uni.reLaunch({
  93. url: `/pages/initBind/initBind?wechat=${res.wechat}`
  94. })
  95. } else {
  96. uni.showToast({
  97. icon: 'none',
  98. title: res.remarks || '请求数据失败!'
  99. });
  100. }
  101. });
  102. }
  103. }
  104. }
  105. /**
  106. * 账号密码登录
  107. */
  108. function loginEncrypt(username, password) {
  109. uni.showLoading({
  110. title: "登录中",
  111. mask: true,
  112. });
  113. let postData = {
  114. k: encryptByEnAESLogin(JSON.stringify({username, password}))
  115. };
  116. api_loginEncrypt(postData).then(res => {
  117. uni.hideLoading();
  118. getConfig(res.data);
  119. changeGroup();
  120. if (res.state == 200) {
  121. loginSuccess(res.data);
  122. transform(res.data);
  123. } else {
  124. uni.showToast({
  125. icon: 'none',
  126. title: res.remarks || '请求数据失败!'
  127. });
  128. }
  129. });
  130. }
  131. // 获取配置项
  132. function getConfig(data){
  133. api_systemConfiguration({
  134. idx: 0,
  135. sum: 9999,
  136. }).then(res=>{
  137. uni.setStorageSync('sysData',JSON.stringify(res.list))
  138. setTimeout(_=>{
  139. loginSuccess(data);
  140. transform(data);
  141. },500)
  142. })
  143. }
  144. // 获取工作组
  145. function changeGroup(){
  146. let postData = {
  147. "key": 'usertype',
  148. "type": "list",
  149. };
  150. api_getDictionary(postData).then((data) => {
  151. uni.setStorageSync('groupData',JSON.stringify(data))
  152. });
  153. }
  154. onLoad((option) => {
  155. uni.removeStorageSync('sysData');
  156. uni.removeStorageSync('groupData');
  157. uni.removeStorageSync('loginUser');
  158. // 获取当前页面的实例
  159. const pages = getCurrentPages();
  160. const currentPage = pages[pages.length - 1];
  161. // 获取URL参数
  162. const options = currentPage.options;
  163. if (process.env.NODE_ENV === 'development' && options.username && options.password) {
  164. // http://localhost:8081/user/#/?username=liaomingming&password=Dstech@123
  165. // 本地开发调试用
  166. loginEncrypt(options.username, options.password)
  167. } else {
  168. wechatLoginEncrypt();
  169. }
  170. })
  171. </script>