From 167abc7ab7c70542def539f623ce1790fc64bc24 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期六, 08 十一月 2025 14:22:00 +0800
Subject: [PATCH] fix: bug
---
src/store/modules/user.ts | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts
index 02bc2ca..7ca50bd 100644
--- a/src/store/modules/user.ts
+++ b/src/store/modules/user.ts
@@ -62,9 +62,11 @@
let res = await authServices.passwordLogin(
{
...params,
- password: md5Encrypt(params.password),
+ password: params.password,
+ // password: md5Encrypt(params.password),
type: AppLocalConfig.userType,
clientType: AppLocalConfig.clientType,
+ // enterpriseType: AppLocalConfig.enterpriseType,
},
{
showLoading: false,
--
Gitblit v1.9.1