|
@@ -7,9 +7,10 @@
|
7
|
7
|
<script setup>
|
8
|
8
|
// 添加路由拦截
|
9
|
9
|
import '@/interceptor/routeInterceptor.js'
|
|
10
|
+ import { encryptByEnAESLogin } from '@/utils/index.js'
|
10
|
11
|
import { onLoad } from '@dcloudio/uni-app'
|
11
|
12
|
import { defaultColor } from '@/static/js/theme.js'
|
12
|
|
- import { api_wechatLoginEncrypt } from "@/http/api.js"
|
|
13
|
+ import { api_wechatLoginEncrypt, api_loginEncrypt } from "@/http/api.js"
|
13
|
14
|
import { useWechatAuth } from '@/share/useWechatAuth.js'
|
14
|
15
|
import { useLoginSuccess } from '@/share/useLoginSuccess.js'
|
15
|
16
|
import { useSetTitle } from '@/share/useSetTitle.js'
|
|
@@ -59,9 +60,45 @@
|
59
|
60
|
});
|
60
|
61
|
}
|
61
|
62
|
}
|
|
63
|
+
|
|
64
|
+ /**
|
|
65
|
+ * 账号密码登录
|
|
66
|
+ */
|
|
67
|
+ function loginEncrypt(username, password) {
|
|
68
|
+ uni.showLoading({
|
|
69
|
+ title: "登录中",
|
|
70
|
+ mask: true,
|
|
71
|
+ });
|
|
72
|
+ let postData = {
|
|
73
|
+ k: encryptByEnAESLogin(JSON.stringify({username, password}))
|
|
74
|
+ };
|
|
75
|
+ api_loginEncrypt(postData).then(res => {
|
|
76
|
+ uni.hideLoading();
|
|
77
|
+ if (res.state == 200) {
|
|
78
|
+ loginSuccess(res.data);
|
|
79
|
+ } else {
|
|
80
|
+ uni.showToast({
|
|
81
|
+ icon: 'none',
|
|
82
|
+ title: res.remarks || '请求数据失败!'
|
|
83
|
+ });
|
|
84
|
+ }
|
|
85
|
+ });
|
|
86
|
+ }
|
62
|
87
|
|
63
|
88
|
onLoad((option) => {
|
64
|
89
|
uni.clearStorageSync();
|
65
|
|
- wechatLoginEncrypt();
|
|
90
|
+ // 获取当前页面的实例
|
|
91
|
+ const pages = getCurrentPages();
|
|
92
|
+ const currentPage = pages[pages.length - 1];
|
|
93
|
+ // 获取URL参数
|
|
94
|
+ const options = currentPage.options;
|
|
95
|
+ if (process.env.NODE_ENV === 'development' && options.username && options.password) {
|
|
96
|
+ // http://localhost:8081/user/#/?username=liaomingming&password=Dstech@123
|
|
97
|
+ // 本地开发调试用
|
|
98
|
+ loginEncrypt(options.username, options.password)
|
|
99
|
+ } else {
|
|
100
|
+ wechatLoginEncrypt();
|
|
101
|
+ }
|
|
102
|
+
|
66
|
103
|
})
|
67
|
104
|
</script>
|