@@ -697,7 +697,9 @@
password: this.password.trim(),
type: 'APP'
};
- data = this.encryptByEnAES(JSON.stringify(data));
+ data = {
+ k: this.encryptByEnAES(JSON.stringify(data))
+ };
post("/auth/login", data).then((res) => {
uni.hideLoading();
if (res.status == 200) {